Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t, v4 0/2] tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe
@ 2024-07-31 14:30 nakshtra.goyal
  2024-07-31 14:30 ` [PATCH i-g-t, v4 1/2] " nakshtra.goyal
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: nakshtra.goyal @ 2024-07-31 14:30 UTC (permalink / raw)
  To: igt-dev, ramadevi.gandi; +Cc: janga.rahul.kumar, sai.gowtham.ch

From: Nakshtra Goyal <nakshtra.goyal@intel.com>

Using single exec, removing unnecessary headers,using variables of same
type in single line according to comments in v3

Adding test in fast_feedback to check it xe BAT in CI

Nakshtra Goyal (2):
  tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe
  HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_sysfs_preempt_timeout

 tests/intel-ci/fast-feedback.testlist  |   2 +
 tests/intel/xe_sysfs_preempt_timeout.c | 221 +++++++++++++++++++++++++
 tests/meson.build                      |   1 +
 3 files changed, 224 insertions(+)
 create mode 100644 tests/intel/xe_sysfs_preempt_timeout.c

-- 
2.34.1


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

* [PATCH i-g-t, v4 1/2] tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe
  2024-07-31 14:30 [PATCH i-g-t, v4 0/2] tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe nakshtra.goyal
@ 2024-07-31 14:30 ` nakshtra.goyal
  2024-08-01 14:10   ` Riana Tauro
  2024-07-31 14:30 ` [PATCH i-g-t, v4 2/2] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_sysfs_preempt_timeout nakshtra.goyal
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 8+ messages in thread
From: nakshtra.goyal @ 2024-07-31 14:30 UTC (permalink / raw)
  To: igt-dev, ramadevi.gandi; +Cc: janga.rahul.kumar, sai.gowtham.ch

From: Nakshtra Goyal <nakshtra.goyal@intel.com>

Using single exec, removing unnecessary headers,using variables of same
type in single line according to comments in v3

Signed-off-by: Nakshtra Goyal <nakshtra.goyal@intel.com>
---
 tests/intel/xe_sysfs_preempt_timeout.c | 221 +++++++++++++++++++++++++
 tests/meson.build                      |   1 +
 2 files changed, 222 insertions(+)
 create mode 100644 tests/intel/xe_sysfs_preempt_timeout.c

diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c
new file mode 100644
index 000000000..a77741fcf
--- /dev/null
+++ b/tests/intel/xe_sysfs_preempt_timeout.c
@@ -0,0 +1,221 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: sysfs preempt timeout
+ * Category: Core
+ * Mega feature: SysMan
+ * Sub-category: SysMan tests
+ * Functionality: sysfs preempt timeout
+ * Feature: SMI, context
+ * Test category: SysMan
+ *
+ * SUBTEST: %s-timeout
+ * Description: Test to measure the delay from requestion the preemption to its
+ *      completion. Send down some non-preemptable workloads and then
+ *      request a switch to a higher priority context. The HW will not
+ *      be able to respond, so the kernel will be forced to reset the hog.
+ * Test category: functionality test
+ *
+ * arg[1]:
+ *
+ * @preempt_timeout_us:		preempt timeout us
+ */
+
+#include "xe/xe_spin.h"
+#include "igt_syncobj.h"
+#include "xe/xe_ioctl.h"
+
+#include "igt.h"
+#include "igt_sysfs.h"
+
+#define ATTR "preempt_timeout_us"
+
+static void set_preempt_timeout(int engine, unsigned int value)
+{
+	unsigned int delay;
+
+	igt_assert_lte(0, igt_sysfs_printf(engine, ATTR, "%u", value));
+	igt_sysfs_scanf(engine, ATTR, "%u", &delay);
+	igt_assert_eq(delay, value);
+}
+
+static uint64_t __test_timeout(int xe, int engine, unsigned int timeout)
+{
+	struct drm_xe_sync sync = {
+		.handle = syncobj_create(xe, 0),
+		.type = DRM_XE_SYNC_TYPE_SYNCOBJ,
+		.flags = DRM_XE_SYNC_FLAG_SIGNAL,
+	};
+
+	struct drm_xe_exec exec = {
+		.num_batch_buffer = 1,
+		.num_syncs = 1,
+		.syncs = to_user_pointer(&sync),
+	};
+/* high priority property */
+	struct drm_xe_ext_set_property ext = {
+		.base.next_extension = 0,
+		.base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
+		.property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY,
+		.value = 2, /* High priority */
+	};
+	struct drm_xe_engine_class_instance *hwe;
+	uint64_t ahnd = 0;
+	uint32_t exec_queues[2];
+	uint32_t vm[2];
+	uint32_t bo[2];
+	size_t bo_size;
+	struct xe_spin *spin[2];
+	struct timespec ts = {};
+	double elapsed;
+	uint64_t addr1 = 0x1a0000, addr2 = 0x100000;
+	int i, n_engines;
+
+	n_engines = 0;
+	/* select an random engine */
+	i = rand() % xe_number_engines(xe);
+	xe_for_each_engine(xe, hwe) {
+		if (i == n_engines++)
+			break;
+	}
+
+	/* set preempt timeout*/
+	set_preempt_timeout(engine, timeout);
+	vm[0] = xe_vm_create(xe, 0, 0);
+	vm[1] = xe_vm_create(xe, 0, 0);
+	exec_queues[0] = xe_exec_queue_create(xe, vm[0], hwe, 0);
+	exec_queues[1] = xe_exec_queue_create(xe, vm[1], hwe, to_user_pointer(&ext));
+	ahnd = intel_allocator_open(xe, 0, INTEL_ALLOCATOR_RELOC);
+	bo_size = xe_bb_size(xe, sizeof(*spin));
+	bo[0] = xe_bo_create(xe, vm[0], bo_size, vram_if_possible(xe, 0), 0);
+	spin[0] = xe_bo_map(xe, bo[0], bo_size);
+	xe_vm_bind_async(xe, vm[0], 0, bo[0], 0, addr1, bo_size, &sync, 1);
+	xe_spin_init_opts(spin[0], .addr = addr1,
+				.preempt = false);
+	exec.address = addr1;
+	exec.exec_queue_id = exec_queues[0];
+	xe_exec(xe, &exec);
+	xe_spin_wait_started(spin[0]);
+
+	igt_nsec_elapsed(&ts);
+	bo[1] = xe_bo_create(xe, vm[1], bo_size, vram_if_possible(xe, 0), 0);
+	spin[1] = xe_bo_map(xe, bo[1], bo_size);
+	xe_vm_bind_sync(xe, vm[1], bo[1], 0, addr2, bo_size);
+	xe_spin_init_opts(spin[1], .addr = addr2);
+	exec.address = addr2;
+	exec.exec_queue_id = exec_queues[1];
+	xe_exec(xe, &exec);
+	xe_spin_wait_started(spin[1]);
+	elapsed = igt_nsec_elapsed(&ts);
+	xe_spin_end(spin[1]);
+
+	xe_vm_unbind_async(xe, vm[0], 0, 0, addr1, bo_size, &sync, 1);
+	igt_assert(syncobj_wait(xe, &sync.handle, 1, INT64_MAX, 0, NULL));
+
+	xe_spin_end(spin[0]);
+	xe_vm_unbind_sync(xe, vm[1], 0, addr2, bo_size);
+	syncobj_destroy(xe, sync.handle);
+
+	xe_exec_queue_destroy(xe, exec_queues[0]);
+	xe_vm_destroy(xe, vm[0]);
+	xe_exec_queue_destroy(xe, exec_queues[1]);
+	xe_vm_destroy(xe, vm[1]);
+
+	put_ahnd(ahnd);
+	return elapsed;
+}
+
+static void test_timeout(int xe, int engine, const char **property)
+{
+	int delays[] = { 1000, 50000, 100000, 500000 };
+	unsigned int saved;
+	uint64_t elapsed;
+	int epsilon;
+
+    /*
+     * Send down some non-preemptable workloads and then request a
+     * switch to a higher priority context. The HW will not be able to
+     * respond, so the kernel will be forced to reset the hog. This
+     * timeout should match our specification, and so we can measure
+     * the delay from requesting the preemption to its completion.
+     */
+
+	igt_assert(igt_sysfs_scanf(engine, ATTR, "%u", &saved) == 1);
+	igt_debug("Initial %s:%u\n", ATTR, saved);
+
+	elapsed = __test_timeout(xe, engine, 1000);
+	epsilon = 2 * elapsed / 1000;
+	if (epsilon < 50000)
+		epsilon = 50000;
+	igt_info("Minimum timeout measured as %.3fus; setting error threshold to %dus\n",
+		 elapsed * 1e-3, epsilon);
+	igt_require(epsilon < 10000000);
+
+	for (int i = 0; i < ARRAY_SIZE(delays); i++) {
+		elapsed = __test_timeout(xe, engine, delays[i]);
+		igt_info("%s:%d, elapsed=%.3fus\n",
+			ATTR, delays[i], elapsed * 1e-3);
+
+		/*
+		 * We need to give a couple of jiffies slack for the scheduler
+		 * timeouts and then a little more slack fr the overhead in
+		 * submitting and measuring.
+		 */
+		igt_assert_f(elapsed / 1000 / 1000 < delays[i] + epsilon,
+				 "Forced preemption timeout exceeded request!\n");
+	}
+
+	set_preempt_timeout(engine, saved);
+}
+
+igt_main
+{
+	static const struct {
+		const char *name;
+		void (*fn)(int, int, const char **);
+	} tests[] = {
+		{ "timeout", test_timeout },
+		{ }
+	};
+
+	const char *property[][3] = { {"preempt_timeout_us",
+								   "preempt_timeout_min",
+								   "preempt_timeout_max"}, };
+	int count = sizeof(property) / sizeof(property[0]);
+	int xe = -1, sys_fd, gt;
+
+	igt_fixture {
+		xe = drm_open_driver(DRIVER_XE);
+		xe_device_get(xe);
+
+		sys_fd = igt_sysfs_open(xe);
+		igt_require(sys_fd != -1);
+		close(sys_fd);
+	}
+	int engines_fd = -1, gt_fd = -1;
+
+	for (int i = 0; i < count; i++) {
+		for (typeof(*tests) *t = tests; t->name; t++) {
+			igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
+				xe_for_each_gt(xe, gt) {
+
+					gt_fd = xe_sysfs_gt_open(xe, gt);
+					igt_require(gt_fd != -1);
+					engines_fd = openat(gt_fd, "engines", O_RDONLY);
+					igt_require(engines_fd != -1);
+
+					igt_sysfs_engines(xe, engines_fd, property[i], t->fn);
+					close(engines_fd);
+					close(gt_fd);
+				}
+			}
+		}
+	}
+	igt_fixture {
+		xe_device_put(xe);
+		close(xe);
+	}
+}
diff --git a/tests/meson.build b/tests/meson.build
index e649466be..335c8b837 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -315,6 +315,7 @@ intel_xe_progs = [
 	'xe_spin_batch',
 	'xe_sysfs_defaults',
 	'xe_sysfs_scheduler',
+	'xe_sysfs_preempt_timeout',
 ]
 
 chamelium_progs = [
-- 
2.34.1


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

* [PATCH i-g-t, v4 2/2] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_sysfs_preempt_timeout
  2024-07-31 14:30 [PATCH i-g-t, v4 0/2] tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe nakshtra.goyal
  2024-07-31 14:30 ` [PATCH i-g-t, v4 1/2] " nakshtra.goyal
@ 2024-07-31 14:30 ` nakshtra.goyal
  2024-07-31 14:53 ` ✗ GitLab.Pipeline: warning for tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4) Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: nakshtra.goyal @ 2024-07-31 14:30 UTC (permalink / raw)
  To: igt-dev, ramadevi.gandi; +Cc: janga.rahul.kumar, sai.gowtham.ch

From: Nakshtra Goyal <nakshtra.goyal@intel.com>

Test solution which should allow igt runner to properly
classify xe_sysfs_preempt_timeout, so adding it into
xe BAT runs

Signed-off-by: Nakshtra Goyal <nakshtra.goyal@intel.com>
---
 tests/intel-ci/fast-feedback.testlist | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..6316cc99e 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -1,6 +1,8 @@
 # Try to load the driver if it's not available yet.
 igt@i915_module_load@load
 
+igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout
+
 # Keep alphabetically sorted by default
 igt@core_auth@basic-auth
 igt@debugfs_test@read_all_entries
-- 
2.34.1


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

* ✗ GitLab.Pipeline: warning for tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4)
  2024-07-31 14:30 [PATCH i-g-t, v4 0/2] tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe nakshtra.goyal
  2024-07-31 14:30 ` [PATCH i-g-t, v4 1/2] " nakshtra.goyal
  2024-07-31 14:30 ` [PATCH i-g-t, v4 2/2] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_sysfs_preempt_timeout nakshtra.goyal
@ 2024-07-31 14:53 ` Patchwork
  2024-07-31 15:05 ` ✓ CI.xeBAT: success " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-31 14:53 UTC (permalink / raw)
  To: nakshtra.goyal; +Cc: igt-dev

== Series Details ==

Series: tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4)
URL   : https://patchwork.freedesktop.org/series/136449/
State : warning

== Summary ==

Pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1237760 for the overview.

build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/61728996):
    int engines_fd = -1, gt_fd = -1;
    ^~~
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:19: error: implicit declaration of function ‘openat’; did you mean ‘popen’? [-Werror=implicit-function-declaration]
        engines_fd = openat(gt_fd, "engines", O_RDONLY);
                     ^~~~~~
                     popen
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:19: warning: nested extern declaration of ‘openat’ [-Wnested-externs]
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:44: error: ‘O_RDONLY’ undeclared (first use in this function); did you mean ‘STA_RONLY’?
        engines_fd = openat(gt_fd, "engines", O_RDONLY);
                                              ^~~~~~~~
                                              STA_RONLY
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:44: note: each undeclared identifier is reported only once for each function it appears in
  cc1: some warnings being treated as errors
  ninja: build stopped: subcommand failed.
  section_end:1722437232:step_script
  section_start:1722437232:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1722437232:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/61728995):
    int engines_fd = -1, gt_fd = -1;
    ^~~
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:19: error: implicit declaration of function ‘openat’; did you mean ‘popen’? [-Werror=implicit-function-declaration]
        engines_fd = openat(gt_fd, "engines", O_RDONLY);
                     ^~~~~~
                     popen
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:19: warning: nested extern declaration of ‘openat’ [-Wnested-externs]
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:44: error: ‘O_RDONLY’ undeclared (first use in this function); did you mean ‘STA_RONLY’?
        engines_fd = openat(gt_fd, "engines", O_RDONLY);
                                              ^~~~~~~~
                                              STA_RONLY
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:44: note: each undeclared identifier is reported only once for each function it appears in
  cc1: some warnings being treated as errors
  ninja: build stopped: subcommand failed.
  section_end:1722437260:step_script
  section_start:1722437260:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1722437262:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/61728997):
    int engines_fd = -1, gt_fd = -1;
    ^~~
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:19: error: implicit declaration of function ‘openat’; did you mean ‘popen’? [-Werror=implicit-function-declaration]
        engines_fd = openat(gt_fd, "engines", O_RDONLY);
                     ^~~~~~
                     popen
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:19: warning: nested extern declaration of ‘openat’ [-Wnested-externs]
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:44: error: ‘O_RDONLY’ undeclared (first use in this function); did you mean ‘STA_RONLY’?
        engines_fd = openat(gt_fd, "engines", O_RDONLY);
                                              ^~~~~~~~
                                              STA_RONLY
  ../tests/intel/xe_sysfs_preempt_timeout.c:207:44: note: each undeclared identifier is reported only once for each function it appears in
  cc1: some warnings being treated as errors
  ninja: build stopped: subcommand failed.
  section_end:1722437272:step_script
  section_start:1722437272:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1722437274:cleanup_file_variables
  ERROR: Job failed: exit code 1

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1237760

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

* ✓ CI.xeBAT: success for tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4)
  2024-07-31 14:30 [PATCH i-g-t, v4 0/2] tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe nakshtra.goyal
                   ` (2 preceding siblings ...)
  2024-07-31 14:53 ` ✗ GitLab.Pipeline: warning for tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4) Patchwork
@ 2024-07-31 15:05 ` Patchwork
  2024-07-31 15:19 ` ✗ Fi.CI.BAT: failure " Patchwork
  2024-07-31 17:12 ` ✗ CI.xeFULL: " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-31 15:05 UTC (permalink / raw)
  To: nakshtra.goyal; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4)
URL   : https://patchwork.freedesktop.org/series/136449/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_7946_BAT -> XEIGTPW_11507_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (7 -> 7)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_gt_freq@freq_fixed_idle:
    - bat-adlp-7:         [PASS][1] -> [FAIL][2] ([Intel XE#2262])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/bat-adlp-7/igt@xe_gt_freq@freq_fixed_idle.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/bat-adlp-7/igt@xe_gt_freq@freq_fixed_idle.html

  
  [Intel XE#2262]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2262


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

  * IGT: IGT_7946 -> IGTPW_11507

  IGTPW_11507: 11507
  IGT_7946: 7946
  xe-1696-2a74e6714291a2c9cf26c08f729d5feb203e8338: 2a74e6714291a2c9cf26c08f729d5feb203e8338

== Logs ==

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

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

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

* ✗ Fi.CI.BAT: failure for tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4)
  2024-07-31 14:30 [PATCH i-g-t, v4 0/2] tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe nakshtra.goyal
                   ` (3 preceding siblings ...)
  2024-07-31 15:05 ` ✓ CI.xeBAT: success " Patchwork
@ 2024-07-31 15:19 ` Patchwork
  2024-07-31 17:12 ` ✗ CI.xeFULL: " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-31 15:19 UTC (permalink / raw)
  To: nakshtra.goyal; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4)
URL   : https://patchwork.freedesktop.org/series/136449/
State : failure

== Summary ==

CI Bug Log - changes from IGT_7946 -> IGTPW_11507
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_11507 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_11507, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (38 -> 40)
------------------------------

  Additional (3): bat-arls-1 bat-mtlp-8 fi-bsw-n3050 
  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@runner@aborted:
    - fi-bsw-n3050:       NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/fi-bsw-n3050/igt@runner@aborted.html

  * {igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout} (NEW):
    - bat-mtlp-8:         NOTRUN -> [SKIP][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-adls-6:         NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-adls-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-jsl-1:          NOTRUN -> [SKIP][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-jsl-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-arls-5:         NOTRUN -> [SKIP][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-5/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-arlh-2:         NOTRUN -> [SKIP][6]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arlh-2/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - {bat-arlh-3}:       NOTRUN -> [SKIP][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arlh-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-dg1-7:          NOTRUN -> [SKIP][8]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-dg1-7/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-adlp-9:         NOTRUN -> [SKIP][9]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-adlp-9/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-rpls-4:         NOTRUN -> [SKIP][10]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-rpls-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-twl-1:          NOTRUN -> [SKIP][11]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-twl-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-rplp-1:         NOTRUN -> [SKIP][12]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-rplp-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-mtlp-6:         NOTRUN -> [SKIP][13]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-dg2-9:          NOTRUN -> [SKIP][14]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-dg2-9/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-adlp-11:        NOTRUN -> [SKIP][15]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-adlp-11/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-arls-2:         NOTRUN -> [SKIP][16]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-2/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-adlp-6:         NOTRUN -> [SKIP][17]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-adlp-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-twl-2:          NOTRUN -> [SKIP][18]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-twl-2/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-dg2-14:         NOTRUN -> [SKIP][19]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-dg2-14/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-dg2-8:          NOTRUN -> [SKIP][20]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-dg2-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-adlm-1:         NOTRUN -> [SKIP][21]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-adlm-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-arls-1:         NOTRUN -> [SKIP][22]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html

  
New tests
---------

  New tests have been introduced between IGT_7946 and IGTPW_11507:

### New IGT tests (1) ###

  * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
    - Statuses : 24 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@debugfs_test@basic-hwmon:
    - bat-arls-1:         NOTRUN -> [SKIP][23] ([i915#9318])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@debugfs_test@basic-hwmon.html
    - bat-mtlp-8:         NOTRUN -> [SKIP][24] ([i915#9318])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html

  * igt@gem_lmem_swapping@basic:
    - bat-arls-1:         NOTRUN -> [SKIP][25] ([i915#10213]) +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-mtlp-8:         NOTRUN -> [SKIP][26] ([i915#4613]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_mmap@basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][27] ([i915#4083])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@gem_mmap@basic.html
    - bat-arls-1:         NOTRUN -> [SKIP][28] ([i915#11343] / [i915#4083])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@gem_mmap@basic.html

  * igt@gem_render_tiled_blits@basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][29] ([i915#4079]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
    - bat-arls-1:         NOTRUN -> [SKIP][30] ([i915#10197] / [i915#10211] / [i915#4079])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@gem_render_tiled_blits@basic.html

  * igt@gem_tiled_blits@basic:
    - bat-arls-1:         NOTRUN -> [SKIP][31] ([i915#10196] / [i915#4077]) +2 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@gem_tiled_blits@basic.html

  * igt@gem_tiled_fence_blits@basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][32] ([i915#4077]) +2 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@gem_tiled_fence_blits@basic.html

  * igt@gem_tiled_pread_basic:
    - bat-arls-1:         NOTRUN -> [SKIP][33] ([i915#10206] / [i915#4079])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@gem_tiled_pread_basic.html

  * igt@i915_pm_rps@basic-api:
    - bat-mtlp-8:         NOTRUN -> [SKIP][34] ([i915#6621])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
    - bat-arls-1:         NOTRUN -> [SKIP][35] ([i915#10209])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@i915_pm_rps@basic-api.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-mtlp-8:         NOTRUN -> [SKIP][36] ([i915#5190])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - bat-mtlp-8:         NOTRUN -> [SKIP][37] ([i915#4212]) +8 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-arls-1:         NOTRUN -> [SKIP][38] ([i915#10200]) +9 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-mtlp-8:         NOTRUN -> [SKIP][39] ([i915#4213]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - bat-arls-1:         NOTRUN -> [SKIP][40] ([i915#10202] / [i915#11346]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][41] ([i915#3555] / [i915#3840] / [i915#9159])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
    - bat-arls-1:         NOTRUN -> [SKIP][42] ([i915#11346] / [i915#9886])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-mtlp-8:         NOTRUN -> [SKIP][43]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
    - bat-arls-1:         NOTRUN -> [SKIP][44] ([i915#10207] / [i915#11346])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - bat-mtlp-8:         NOTRUN -> [SKIP][45] ([i915#5274])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-arls-1:         NOTRUN -> [SKIP][46] ([i915#11346] / [i915#9812])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - bat-arls-1:         NOTRUN -> [SKIP][47] ([i915#11346] / [i915#9732]) +3 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@kms_psr@psr-primary-mmap-gtt.html

  * igt@kms_psr@psr-primary-mmap-gtt@edp-1:
    - bat-mtlp-8:         NOTRUN -> [SKIP][48] ([i915#4077] / [i915#9688])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-mtlp-8:         NOTRUN -> [SKIP][49] ([i915#3555] / [i915#8809])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
    - bat-arls-1:         NOTRUN -> [SKIP][50] ([i915#10208] / [i915#8809])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-read:
    - bat-mtlp-8:         NOTRUN -> [SKIP][51] ([i915#3708]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
    - bat-arls-1:         NOTRUN -> [SKIP][52] ([i915#10212] / [i915#3708])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@basic-gtt:
    - bat-mtlp-8:         NOTRUN -> [SKIP][53] ([i915#3708] / [i915#4077]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@prime_vgem@basic-gtt.html
    - bat-arls-1:         NOTRUN -> [SKIP][54] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@prime_vgem@basic-gtt.html

  * igt@prime_vgem@basic-read:
    - bat-arls-1:         NOTRUN -> [SKIP][55] ([i915#10214] / [i915#3708])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@prime_vgem@basic-read.html

  * igt@prime_vgem@basic-write:
    - bat-mtlp-8:         NOTRUN -> [SKIP][56] ([i915#10216] / [i915#3708])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-mtlp-8/igt@prime_vgem@basic-write.html
    - bat-arls-1:         NOTRUN -> [SKIP][57] ([i915#10216] / [i915#3708])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-arls-1/igt@prime_vgem@basic-write.html

  * {igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout} (NEW):
    - fi-rkl-11600:       NOTRUN -> [SKIP][58]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/fi-rkl-11600/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - bat-kbl-2:          NOTRUN -> [SKIP][59]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/bat-kbl-2/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
    - fi-cfl-8700k:       NOTRUN -> [SKIP][60]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11507/fi-cfl-8700k/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html

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

  [i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196
  [i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
  [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
  [i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202
  [i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
  [i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207
  [i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
  [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
  [i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
  [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
  [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
  [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
  [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
  [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
  [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
  [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7946 -> IGTPW_11507

  CI-20190529: 20190529
  CI_DRM_15161: 2a74e6714291a2c9cf26c08f729d5feb203e8338 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11507: 11507
  IGT_7946: 7946

== Logs ==

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

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

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

* ✗ CI.xeFULL: failure for tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4)
  2024-07-31 14:30 [PATCH i-g-t, v4 0/2] tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe nakshtra.goyal
                   ` (4 preceding siblings ...)
  2024-07-31 15:19 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-07-31 17:12 ` Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-31 17:12 UTC (permalink / raw)
  To: nakshtra.goyal; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4)
URL   : https://patchwork.freedesktop.org/series/136449/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_7946_full -> XEIGTPW_11507_full
====================================================

Summary
-------

  **FAILURE**

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_async_flips@async-flip-with-page-flip-events:
    - shard-dg2-set2:     [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][3] +1 other test skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2-set2:     [PASS][4] -> [SKIP][5] +1 other test skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-lnl:          [PASS][6] -> [SKIP][7] +2 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-8/igt@kms_pm_rpm@system-suspend-modeset.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
    - shard-lnl:          [PASS][8] -> [FAIL][9] +6 other tests fail
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html

  * igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit:
    - shard-dg2-set2:     [PASS][10] -> [FAIL][11] +3 other tests fail
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit.html

  
#### Warnings ####

  * igt@core_hotunplug@hotrebind:
    - shard-dg2-set2:     [ABORT][12] ([Intel XE#2421]) -> [SKIP][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@core_hotunplug@hotrebind.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@core_hotunplug@hotrebind.html
    - shard-lnl:          [ABORT][14] ([Intel XE#2421]) -> [SKIP][15]
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-8/igt@core_hotunplug@hotrebind.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-3/igt@core_hotunplug@hotrebind.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][16] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][17]
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-dg2-set2:     [SKIP][18] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][19] +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][20] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][21] +2 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw:
    - shard-dg2-set2:     [SKIP][22] ([Intel XE#651]) -> [SKIP][23]
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][24] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][25] +2 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][26] ([Intel XE#1201]) -> [SKIP][27]
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
    - shard-dg2-set2:     [SKIP][28] ([Intel XE#653]) -> [SKIP][29]
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][30] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][31] +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_psr@psr-primary-render:
    - shard-dg2-set2:     [SKIP][32] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][33]
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_psr@psr-primary-render.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_psr@psr-primary-render.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-dg2-set2:     [SKIP][34] ([Intel XE#1201] / [Intel XE#2229]) -> [FAIL][35]
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
    - shard-lnl:          [SKIP][36] ([Intel XE#2229]) -> [FAIL][37]
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-6/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  
New tests
---------

  New tests have been introduced between XEIGT_7946_full and XEIGTPW_11507_full:

### New IGT tests (6) ###

  * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
    - Statuses : 2 pass(s)
    - Exec time: [12.99, 13.96] s

  * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout@bcs:
    - Statuses : 2 pass(s)
    - Exec time: [2.00, 2.57] s

  * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout@ccs:
    - Statuses : 2 pass(s)
    - Exec time: [2.60, 3.21] s

  * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout@rcs:
    - Statuses : 2 pass(s)
    - Exec time: [3.07, 3.23] s

  * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout@vcs:
    - Statuses : 2 pass(s)
    - Exec time: [1.89, 2.59] s

  * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout@vecs:
    - Statuses : 2 pass(s)
    - Exec time: [2.59, 3.21] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@hotreplug:
    - shard-dg2-set2:     [PASS][38] -> [SKIP][39] ([Intel XE#1201] / [Intel XE#1885])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@core_hotunplug@hotreplug.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@core_hotunplug@hotreplug.html
    - shard-lnl:          [PASS][40] -> [SKIP][41] ([Intel XE#1885])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@core_hotunplug@hotreplug.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@core_hotunplug@hotreplug.html

  * igt@kms_addfb_basic@unused-pitches:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) +7 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_addfb_basic@unused-pitches.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
    - shard-lnl:          NOTRUN -> [FAIL][43] ([Intel XE#911]) +3 other tests fail
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html

  * igt@kms_atomic@crtc-invalid-params:
    - shard-lnl:          [PASS][44] -> [SKIP][45] ([Intel XE#2423]) +38 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-7/igt@kms_atomic@crtc-invalid-params.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_atomic@crtc-invalid-params.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][46] -> [FAIL][47] ([Intel XE#1426]) +1 other test fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
    - shard-lnl:          [PASS][48] -> [FAIL][49] ([Intel XE#1426]) +1 other test fail
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#316])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#1407])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][52] ([Intel XE#1124] / [Intel XE#1201]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#1124]) +5 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#1124])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#1512])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#367])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#2351])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#1399]) +6 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#1252])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#787]) +48 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#787]) +13 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][62] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +10 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#306])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_chamelium_color@ctm-red-to-blue.html
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#306])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#373]) +5 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][67] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-storm.html

  * igt@kms_color@ctm-0-75:
    - shard-dg2-set2:     [PASS][68] -> [SKIP][69] ([Intel XE#1201] / [i915#2575]) +17 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_color@ctm-0-75.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_color@ctm-0-75.html

  * igt@kms_content_protection@mei-interface:
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#1468])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_content_protection@mei-interface.html

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-dg2-set2:     [PASS][71] -> [SKIP][72] ([i915#2575]) +9 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-128x42.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#1201] / [Intel XE#308])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1413])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#1424]) +2 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#309]) +2 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#2423]) +13 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-lnl:          [PASS][78] -> [FAIL][79] ([Intel XE#2028]) +4 other tests fail
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_fbcon_fbt@psr-suspend.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#1201] / [Intel XE#701])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_feature_discovery@chamelium.html
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#701])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@kms_feature_discovery@chamelium.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#1421]) +3 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][83] ([Intel XE#2019]) +1 other test dmesg-warn
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html

  * igt@kms_flip@absolute-wf_vblank:
    - shard-dg2-set2:     NOTRUN -> [SKIP][84] ([i915#2575]) +4 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_flip@absolute-wf_vblank.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#1397]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#1401])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@basic:
    - shard-dg2-set2:     [PASS][88] -> [SKIP][89] ([Intel XE#2231])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_frontbuffer_tracking@basic.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#651]) +10 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-dg2-set2:     [PASS][91] -> [SKIP][92] ([Intel XE#1201] / [Intel XE#2351]) +1 other test skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [PASS][93] -> [SKIP][94] ([Intel XE#2351]) +3 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [PASS][95] -> [SKIP][96] ([Intel XE#1201]) +19 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][97] ([Intel XE#651]) +6 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#1201] / [Intel XE#651]) +13 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#656]) +20 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     NOTRUN -> [SKIP][100] ([Intel XE#1158] / [Intel XE#1201])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt:
    - shard-lnl:          [PASS][101] -> [SKIP][102] ([Intel XE#2351]) +34 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][103] ([Intel XE#1201] / [Intel XE#653]) +13 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#2351]) +16 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][105] ([Intel XE#653]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][106] ([Intel XE#1201] / [Intel XE#605])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][107] ([Intel XE#616]) +2 other tests fail
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-433/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6.html

  * igt@kms_lease@lease-invalid-crtc:
    - shard-dg2-set2:     [PASS][108] -> [SKIP][109] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) +21 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_lease@lease-invalid-crtc.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_lease@lease-invalid-crtc.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#356])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@plane-position-hole@pipe-a-plane-3:
    - shard-lnl:          [PASS][111] -> [DMESG-FAIL][112] ([Intel XE#324]) +1 other test dmesg-fail
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html

  * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#599]) +5 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#498]) +3 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#2318]) +5 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-edp-1.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][116] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][117] ([Intel XE#1201] / [Intel XE#2318]) +5 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html

  * igt@kms_pm_backlight@fade:
    - shard-dg2-set2:     NOTRUN -> [SKIP][118] ([Intel XE#1201] / [Intel XE#870])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#1439])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][120] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][121] ([Intel XE#1489])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-lnl:          NOTRUN -> [SKIP][122] ([Intel XE#1128])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-pr-cursor-plane-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][123] ([Intel XE#1201]) +11 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_psr@fbc-pr-cursor-plane-move.html

  * igt@kms_psr@fbc-psr-cursor-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][124] ([Intel XE#1201] / [Intel XE#929]) +3 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_psr@fbc-psr-cursor-render.html

  * igt@kms_psr@fbc-psr2-sprite-blt:
    - shard-lnl:          [PASS][125] -> [FAIL][126] ([Intel XE#1649]) +1 other test fail
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_psr@fbc-psr2-sprite-blt.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-blt.html

  * igt@kms_psr@pr-cursor-blt:
    - shard-lnl:          NOTRUN -> [SKIP][127] ([Intel XE#1406])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_psr@pr-cursor-blt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-dg2-set2:     NOTRUN -> [SKIP][128] ([Intel XE#1149] / [Intel XE#1201])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][129] ([Intel XE#1201] / [Intel XE#327])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-270.html
    - shard-lnl:          NOTRUN -> [SKIP][130] ([Intel XE#1437])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][131] ([Intel XE#1435])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-7/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2-set2:     NOTRUN -> [SKIP][132] ([Intel XE#1500])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-lnl:          [PASS][133] -> [FAIL][134] ([Intel XE#899]) +1 other test fail
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][135] ([Intel XE#1201] / [Intel XE#455]) +6 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-lnl:          NOTRUN -> [SKIP][136] ([Intel XE#1499] / [Intel XE#599])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     NOTRUN -> [SKIP][137] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_evict@evict-cm-threads-large:
    - shard-dg2-set2:     [PASS][138] -> [TIMEOUT][139] ([Intel XE#1473] / [Intel XE#392])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@xe_evict@evict-cm-threads-large.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@xe_evict@evict-cm-threads-large.html

  * igt@xe_evict@evict-large:
    - shard-lnl:          NOTRUN -> [SKIP][140] ([Intel XE#688]) +5 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@xe_evict@evict-large.html

  * igt@xe_evict@evict-large-multi-vm-cm:
    - shard-dg2-set2:     NOTRUN -> [FAIL][141] ([Intel XE#1600])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@xe_evict@evict-large-multi-vm-cm.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][142] ([Intel XE#1195] / [Intel XE#1473])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][143] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate:
    - shard-dg2-set2:     NOTRUN -> [SKIP][144] ([Intel XE#1130]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][145] ([Intel XE#1392]) +2 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html

  * igt@xe_exec_basic@once-userptr-invalidate-race:
    - shard-dg2-set2:     [PASS][146] -> [SKIP][147] ([Intel XE#1130] / [Intel XE#1201]) +62 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@xe_exec_basic@once-userptr-invalidate-race.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@xe_exec_basic@once-userptr-invalidate-race.html

  * igt@xe_exec_compute_mode@twice-userptr-rebind:
    - shard-dg2-set2:     [PASS][148] -> [SKIP][149] ([Intel XE#1130]) +21 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@xe_exec_compute_mode@twice-userptr-rebind.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_exec_compute_mode@twice-userptr-rebind.html

  * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][150] ([Intel XE#288]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html

  * igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][151] ([Intel XE#1130] / [Intel XE#1201]) +11 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     NOTRUN -> [SKIP][152] ([Intel XE#1201] / [Intel XE#288]) +7 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_gt_freq@freq_range_exec:
    - shard-dg2-set2:     [PASS][153] -> [FAIL][154] ([Intel XE#2203])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@xe_gt_freq@freq_range_exec.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_gt_freq@freq_range_exec.html

  * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
    - shard-dg2-set2:     NOTRUN -> [FAIL][155] ([Intel XE#1999]) +1 other test fail
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html

  * igt@xe_module_load@reload-no-display:
    - shard-lnl:          NOTRUN -> [FAIL][156] ([Intel XE#2136])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-3/igt@xe_module_load@reload-no-display.html

  * igt@xe_oa@non-privileged-map-oa-buffer:
    - shard-dg2-set2:     NOTRUN -> [SKIP][157] ([Intel XE#1201] / [Intel XE#2419]) +1 other test skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@xe_oa@non-privileged-map-oa-buffer.html
    - shard-lnl:          NOTRUN -> [SKIP][158] ([Intel XE#2419]) +1 other test skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@xe_oa@non-privileged-map-oa-buffer.html

  * igt@xe_oa@privileged-forked-access-vaddr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][159] ([Intel XE#2419])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_oa@privileged-forked-access-vaddr.html

  * igt@xe_peer2peer@write:
    - shard-dg2-set2:     NOTRUN -> [FAIL][160] ([Intel XE#1173]) +1 other test fail
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@xe_peer2peer@write.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-dg2-set2:     NOTRUN -> [SKIP][161] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html
    - shard-lnl:          NOTRUN -> [SKIP][162] ([Intel XE#2284] / [Intel XE#366])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-7/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][163] ([Intel XE#1162])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@xe_pm@s3-vm-bind-unbind-all.html
    - shard-lnl:          NOTRUN -> [SKIP][164] ([Intel XE#584])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s4-basic-exec:
    - shard-dg2-set2:     [PASS][165] -> [DMESG-WARN][166] ([Intel XE#2019])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@xe_pm@s4-basic-exec.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-lnl:          [PASS][167] -> [FAIL][168] ([Intel XE#958])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-2/igt@xe_pm_residency@toggle-gt-c6.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html

  * igt@xe_prime_self_import@basic-llseek-bad:
    - shard-lnl:          [PASS][169] -> [SKIP][170] ([Intel XE#1130]) +87 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@xe_prime_self_import@basic-llseek-bad.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@xe_prime_self_import@basic-llseek-bad.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-dg2-set2:     NOTRUN -> [SKIP][171] ([Intel XE#1201] / [Intel XE#944])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@xe_query@multigpu-query-hwconfig.html
    - shard-lnl:          NOTRUN -> [SKIP][172] ([Intel XE#944])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@xe_query@multigpu-query-hwconfig.html

  * igt@xe_vm@large-userptr-misaligned-binds-16777216:
    - shard-lnl:          NOTRUN -> [SKIP][173] ([Intel XE#1130]) +15 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@xe_vm@large-userptr-misaligned-binds-16777216.html

  
#### Possible fixes ####

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#1201] / [i915#2575]) -> [PASS][175] +11 other tests pass
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
    - shard-lnl:          [FAIL][176] ([Intel XE#1426]) -> [PASS][177] +1 other test pass
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          [FAIL][178] ([Intel XE#1659]) -> [PASS][179]
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [DMESG-WARN][180] ([Intel XE#2019]) -> [PASS][181] +1 other test pass
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html

  * igt@kms_flip@busy-flip:
    - shard-dg2-set2:     [SKIP][182] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) -> [PASS][183] +14 other tests pass
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_flip@busy-flip.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_flip@busy-flip.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-edp-1-x-to-linear:
    - shard-lnl:          [FAIL][184] ([Intel XE#1491]) -> [PASS][185] +1 other test pass
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@kms_flip_tiling@flip-change-tiling@pipe-c-edp-1-x-to-linear.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-edp-1-x-to-linear.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [FAIL][186] ([Intel XE#718]) -> [PASS][187] +1 other test pass
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@i2c:
    - shard-dg2-set2:     [FAIL][188] ([Intel XE#2389]) -> [PASS][189]
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_pm_rpm@i2c.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-433/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg2-set2:     [SKIP][190] ([Intel XE#1201]) -> [PASS][191] +5 other tests pass
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
    - shard-lnl:          [SKIP][192] -> [PASS][193] +1 other test pass
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_psr@fbc-psr-suspend@edp-1:
    - shard-lnl:          [FAIL][194] ([Intel XE#2028]) -> [PASS][195] +2 other tests pass
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_psr@fbc-psr-suspend@edp-1.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-7/igt@kms_psr@fbc-psr-suspend@edp-1.html

  * igt@kms_psr@psr2-sprite-plane-onoff:
    - shard-lnl:          [SKIP][196] ([Intel XE#2351]) -> [PASS][197] +10 other tests pass
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@kms_psr@psr2-sprite-plane-onoff.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_psr@psr2-sprite-plane-onoff.html

  * igt@kms_universal_plane@cursor-fb-leak:
    - shard-dg2-set2:     [FAIL][198] ([Intel XE#771] / [Intel XE#899]) -> [PASS][199]
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4:
    - shard-dg2-set2:     [FAIL][200] ([Intel XE#899]) -> [PASS][201]
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html

  * igt@kms_vblank@query-forked:
    - shard-lnl:          [SKIP][202] ([Intel XE#2423]) -> [PASS][203] +16 other tests pass
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_vblank@query-forked.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-5/igt@kms_vblank@query-forked.html

  * igt@xe_evict@evict-beng-cm-threads-large:
    - shard-dg2-set2:     [TIMEOUT][204] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][205] +1 other test pass
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@xe_evict@evict-beng-cm-threads-large.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@xe_evict@evict-beng-cm-threads-large.html

  * igt@xe_exec_balancer@many-parallel-userptr-invalidate-race:
    - shard-lnl:          [SKIP][206] ([Intel XE#1130]) -> [PASS][207] +37 other tests pass
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html

  * igt@xe_pm@s4-exec-after:
    - shard-lnl:          [ABORT][208] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][209]
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-2/igt@xe_pm@s4-exec-after.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@xe_pm@s4-exec-after.html

  * igt@xe_vm@mixed-binds-3145728:
    - shard-dg2-set2:     [DMESG-WARN][210] -> [PASS][211]
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@xe_vm@mixed-binds-3145728.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@xe_vm@mixed-binds-3145728.html

  * igt@xe_vm@mmap-style-bind-either-side-partial:
    - shard-dg2-set2:     [SKIP][212] ([Intel XE#1130] / [Intel XE#1201]) -> [PASS][213] +40 other tests pass
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@xe_vm@mmap-style-bind-either-side-partial.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@xe_vm@mmap-style-bind-either-side-partial.html

  
#### Warnings ####

  * igt@core_hotunplug@unbind-rebind:
    - shard-dg2-set2:     [ABORT][214] ([Intel XE#2421]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#1885])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html
    - shard-lnl:          [ABORT][216] ([Intel XE#2421]) -> [SKIP][217] ([Intel XE#1885])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-7/igt@core_hotunplug@unbind-rebind.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@core_hotunplug@unbind-rebind.html

  * igt@intel_hwmon@hwmon-read:
    - shard-lnl:          [SKIP][218] ([Intel XE#2351]) -> [SKIP][219] ([Intel XE#1125])
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@intel_hwmon@hwmon-read.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@intel_hwmon@hwmon-read.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
    - shard-dg2-set2:     [SKIP][220] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][221] ([Intel XE#801]) +23 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2-set2:     [SKIP][222] ([Intel XE#1201] / [Intel XE#873]) -> [SKIP][223] ([Intel XE#873])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          [SKIP][224] ([Intel XE#2423]) -> [SKIP][225] ([Intel XE#664])
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_async_flips@test-cursor.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_async_flips@test-cursor.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-lnl:          [SKIP][226] ([Intel XE#2423]) -> [SKIP][227] ([Intel XE#599])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][228] ([Intel XE#1201]) -> [SKIP][229] ([Intel XE#1201] / [Intel XE#316])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
    - shard-lnl:          [SKIP][230] ([Intel XE#2351]) -> [SKIP][231] ([Intel XE#1407])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-lnl:          [SKIP][232] ([Intel XE#1407]) -> [SKIP][233] ([Intel XE#2351])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][234] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][235] ([Intel XE#316]) +1 other test skip
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][236] ([Intel XE#316]) -> [SKIP][237] ([Intel XE#1201] / [Intel XE#316]) +5 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][238] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][239] ([Intel XE#1201]) +3 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-dg2-set2:     [SKIP][240] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][241] ([Intel XE#619])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][242] ([Intel XE#1201] / [Intel XE#607]) -> [SKIP][243] ([Intel XE#1201] / [Intel XE#2351])
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
    - shard-lnl:          [SKIP][244] ([Intel XE#1477]) -> [SKIP][245] ([Intel XE#2351])
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][246] ([Intel XE#1201] / [Intel XE#610]) -> [SKIP][247] ([Intel XE#1201])
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
    - shard-lnl:          [SKIP][248] ([Intel XE#1428]) -> [SKIP][249] ([Intel XE#2351])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-lnl:          [SKIP][250] ([Intel XE#2351]) -> [SKIP][251] ([Intel XE#1124]) +1 other test skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][252] ([Intel XE#1201]) -> [SKIP][253] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-dg2-set2:     [SKIP][254] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][255] ([Intel XE#1124]) +5 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-lnl:          [SKIP][256] ([Intel XE#1124]) -> [SKIP][257] ([Intel XE#2351]) +6 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
    - shard-dg2-set2:     [SKIP][258] ([Intel XE#1124]) -> [SKIP][259] ([Intel XE#1201])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg2-set2:     [SKIP][260] ([Intel XE#1124]) -> [SKIP][261] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][262] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][263] ([Intel XE#1201] / [i915#2575])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][264] ([Intel XE#367]) -> [SKIP][265] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][266] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][267] ([Intel XE#2191])
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][268] ([Intel XE#2191]) -> [SKIP][269] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
    - shard-lnl:          [SKIP][270] ([Intel XE#1512]) -> [SKIP][271] ([Intel XE#2423])
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][272] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][273] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) +1 other test skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-lnl:          [SKIP][274] ([Intel XE#367]) -> [SKIP][275] ([Intel XE#2423])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][276] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][277] ([Intel XE#367])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][278] ([Intel XE#1201]) -> [SKIP][279] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +2 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][280] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][281] ([Intel XE#2351])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][282] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][283] ([Intel XE#1201]) +1 other test skip
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4:
    - shard-dg2-set2:     [SKIP][284] ([Intel XE#787]) -> [SKIP][285] ([Intel XE#1201] / [Intel XE#787]) +41 other tests skip
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][286] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][287] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][288] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][289] ([Intel XE#1201] / [Intel XE#2351]) +1 other test skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     [SKIP][290] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][291] ([Intel XE#787]) +41 other tests skip
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][292] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][293] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +11 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][294] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][295] ([Intel XE#1252])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
    - shard-lnl:          [SKIP][296] ([Intel XE#2351]) -> [SKIP][297] ([Intel XE#1399]) +2 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][298] ([Intel XE#1252]) -> [SKIP][299] ([Intel XE#1201] / [Intel XE#1252])
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
    - shard-dg2-set2:     [SKIP][300] ([Intel XE#1201]) -> [SKIP][301] ([Intel XE#455] / [Intel XE#787])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
    - shard-lnl:          [SKIP][302] ([Intel XE#1399]) -> [SKIP][303] ([Intel XE#2351]) +8 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-lnl:          [SKIP][304] ([Intel XE#314] / [Intel XE#599]) -> [SKIP][305] ([Intel XE#2351])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@kms_cdclk@mode-transition.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-dg2-set2:     [SKIP][306] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][307] ([Intel XE#306]) +1 other test skip
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_chamelium_color@ctm-green-to-red.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
    - shard-dg2-set2:     [SKIP][308] ([Intel XE#373]) -> [SKIP][309] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - shard-dg2-set2:     [SKIP][310] ([Intel XE#1201] / [i915#2575]) -> [SKIP][311] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) +1 other test skip
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_chamelium_edid@hdmi-edid-read.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-read.html

  * igt@kms_chamelium_frames@hdmi-frame-dump:
    - shard-dg2-set2:     [SKIP][312] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][313] ([i915#2575]) +1 other test skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_chamelium_frames@hdmi-frame-dump.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_chamelium_frames@hdmi-frame-dump.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-dg2-set2:     [SKIP][314] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) -> [SKIP][315] ([Intel XE#1201] / [Intel XE#373]) +2 other tests skip
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_chamelium_frames@vga-frame-dump.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@dp-hpd-fast:
    - shard-dg2-set2:     [SKIP][316] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][317] ([Intel XE#373]) +5 other tests skip
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_chamelium_hpd@dp-hpd-fast.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_chamelium_hpd@dp-hpd-fast.html

  * igt@kms_chamelium_hpd@hdmi-hpd:
    - shard-dg2-set2:     [SKIP][318] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][319] ([Intel XE#1201] / [i915#2575]) +1 other test skip
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html

  * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
    - shard-dg2-set2:     [SKIP][320] ([Intel XE#1201] / [i915#2575]) -> [SKIP][321] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][322] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][323] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) +1 other test skip
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
    - shard-lnl:          [SKIP][324] ([Intel XE#373]) -> [SKIP][325] ([Intel XE#2423]) +5 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
    - shard-lnl:          [SKIP][326] ([Intel XE#2423]) -> [SKIP][327] ([Intel XE#373]) +3 other tests skip
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html

  * igt@kms_content_protection@content-type-change:
    - shard-dg2-set2:     [SKIP][328] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][329] ([Intel XE#1201] / [i915#2575])
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_content_protection@content-type-change.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2-set2:     [SKIP][330] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][331] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) +1 other test skip
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-1.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-lnl:          [SKIP][332] ([Intel XE#307]) -> [SKIP][333] ([Intel XE#2423]) +1 other test skip
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-2/igt@kms_content_protection@dp-mst-type-1.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@type1:
    - shard-dg2-set2:     [SKIP][334] ([Intel XE#1201] / [i915#2575]) -> [SKIP][335] ([Intel XE#1201] / [Intel XE#455])
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_content_protection@type1.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-dg2-set2:     [SKIP][336] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][337] ([i915#2575])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     [SKIP][338] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) -> [SKIP][339] ([Intel XE#1201] / [Intel XE#308])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html
    - shard-lnl:          [SKIP][340] ([Intel XE#2423]) -> [SKIP][341] ([Intel XE#1413])
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-lnl:          [SKIP][342] ([Intel XE#1413]) -> [SKIP][343] ([Intel XE#2423]) +3 other tests skip
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-2/igt@kms_cursor_crc@cursor-random-512x170.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2-set2:     [SKIP][344] ([Intel XE#308]) -> [SKIP][345] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575])
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-dg2-set2:     [SKIP][346] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) -> [SKIP][347] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
    - shard-lnl:          [SKIP][348] ([Intel XE#2423]) -> [SKIP][349] ([Intel XE#1424])
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-dg2-set2:     [SKIP][350] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][351] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) +1 other test skip
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-64x21:
    - shard-lnl:          [SKIP][352] ([Intel XE#1424]) -> [SKIP][353] ([Intel XE#2423]) +1 other test skip
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-64x21.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html

  * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
    - shard-lnl:          [SKIP][354] ([Intel XE#2423]) -> [SKIP][355] ([Intel XE#309])
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-lnl:          [SKIP][356] ([Intel XE#323]) -> [SKIP][357] ([Intel XE#2423])
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
    - shard-dg2-set2:     [SKIP][358] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][359] ([Intel XE#1201] / [i915#2575])
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
    - shard-lnl:          [SKIP][360] ([Intel XE#309]) -> [SKIP][361] ([Intel XE#2423]) +1 other test skip
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2-set2:     [SKIP][362] ([Intel XE#323]) -> [SKIP][363] ([Intel XE#1201] / [Intel XE#323]) +1 other test skip
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-lnl:          [SKIP][364] ([Intel XE#1508] / [Intel XE#599]) -> [SKIP][365] ([Intel XE#2351])
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dsc@dsc-basic:
    - shard-dg2-set2:     [SKIP][366] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][367] ([Intel XE#1201] / [Intel XE#2231])
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_dsc@dsc-basic.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2-set2:     [SKIP][368] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][369] ([Intel XE#1201]) +1 other test skip
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_dsc@dsc-fractional-bpp.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-lnl:          [SKIP][370] ([Intel XE#599]) -> [SKIP][371] ([Intel XE#2351]) +2 other tests skip
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-5/igt@kms_dsc@dsc-fractional-bpp.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-dg2-set2:     [SKIP][372] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][373] ([Intel XE#2351])
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_feature_discovery@display-2x:
    - shard-lnl:          [SKIP][374] ([Intel XE#2423]) -> [SKIP][375] ([Intel XE#702])
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_feature_discovery@display-2x.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-3x:
    - shard-lnl:          [SKIP][376] ([Intel XE#2423]) -> [SKIP][377] ([Intel XE#703])
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_feature_discovery@display-3x.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_feature_discovery@display-3x.html
    - shard-dg2-set2:     [SKIP][378] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) -> [SKIP][379] ([Intel XE#1201] / [Intel XE#703])
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_feature_discovery@display-3x.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     [SKIP][380] ([Intel XE#1135]) -> [SKIP][381] ([Intel XE#1135] / [Intel XE#1201])
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_feature_discovery@psr2.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-dpms-vs-vblank-race:
    - shard-lnl:          [SKIP][382] ([Intel XE#1421]) -> [SKIP][383] ([Intel XE#2423]) +6 other tests skip
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-8/igt@kms_flip@2x-dpms-vs-vblank-race.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_flip@2x-dpms-vs-vblank-race.html

  * igt@kms_flip@2x-plain-flip-interruptible:
    - shard-lnl:          [SKIP][384] ([Intel XE#2423]) -> [SKIP][385] ([Intel XE#1421]) +1 other test skip
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_flip@2x-plain-flip-interruptible.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_flip@2x-plain-flip-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [DMESG-WARN][386] ([Intel XE#1551]) -> [SKIP][387] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575])
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-dg2-set2:     [SKIP][388] ([Intel XE#455]) -> [SKIP][389] ([Intel XE#1201] / [Intel XE#455]) +7 other tests skip
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
    - shard-lnl:          [SKIP][390] ([Intel XE#1397] / [Intel XE#1745]) -> [SKIP][391] ([Intel XE#2351]) +2 other tests skip
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
    - shard-dg2-set2:     [SKIP][392] ([Intel XE#1201]) -> [SKIP][393] ([Intel XE#1201] / [Intel XE#455])
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
    - shard-lnl:          [SKIP][394] ([Intel XE#2351]) -> [SKIP][395] ([Intel XE#1401] / [Intel XE#1745])
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][396] ([Intel XE#1201] / [Intel XE#2351]) -> [SKIP][397] ([Intel XE#1201] / [Intel XE#651])
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
    - shard-dg2-set2:     [SKIP][398] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][399] ([Intel XE#1201]) +7 other tests skip
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2-set2:     [SKIP][400] ([Intel XE#1201]) -> [SKIP][401] ([Intel XE#1201] / [Intel XE#651]) +5 other tests skip
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-rte:
    - shard-dg2-set2:     [SKIP][402] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][403] ([Intel XE#1201] / [Intel XE#2351]) +1 other test skip
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-rte.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-rte.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][404] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][405] ([Intel XE#651]) +13 other tests skip
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-slowdraw:
    - shard-dg2-set2:     [SKIP][406] ([Intel XE#1201] / [Intel XE#2351]) -> [SKIP][407] ([Intel XE#2351])
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-slowdraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
    - shard-lnl:          [SKIP][408] ([Intel XE#656]) -> [SKIP][409] ([Intel XE#2351]) +26 other tests skip
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][410] ([Intel XE#651]) -> [SKIP][411] ([Intel XE#1201]) +3 other tests skip
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
    - shard-lnl:          [SKIP][412] ([Intel XE#651]) -> [SKIP][413] ([Intel XE#2351]) +7 other tests skip
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2-set2:     [SKIP][414] ([Intel XE#1201]) -> [SKIP][415] ([Intel XE#651])
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
    - shard-dg2-set2:     [SKIP][416] ([Intel XE#651]) -> [SKIP][417] ([Intel XE#1201] / [Intel XE#651]) +9 other tests skip
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render:
    - shard-lnl:          [SKIP][418] ([Intel XE#2351]) -> [SKIP][419] ([Intel XE#651]) +3 other tests skip
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     [SKIP][420] ([Intel XE#658]) -> [SKIP][421] ([Intel XE#1201] / [Intel XE#658])
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-dg2-set2:     [SKIP][422] ([Intel XE#653]) -> [SKIP][423] ([Intel XE#1201])
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][424] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][425] ([Intel XE#1201] / [Intel XE#2351]) +3 other tests skip
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     [SKIP][426] ([Intel XE#653]) -> [SKIP][427] ([Intel XE#1201] / [Intel XE#2351]) +1 other test skip
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2-set2:     [SKIP][428] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][429] ([Intel XE#658])
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][430] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][431] ([Intel XE#2351])
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
    - shard-dg2-set2:     [SKIP][432] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][433] ([Intel XE#653]) +19 other tests skip
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
    - shard-dg2-set2:     [SKIP][434] ([Intel XE#1201]) -> [SKIP][435] ([Intel XE#1201] / [Intel XE#653]) +4 other tests skip
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
    - shard-lnl:          [SKIP][436] ([Intel XE#2351]) -> [SKIP][437] ([Intel XE#656]) +6 other tests skip
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][438] ([Intel XE#653]) -> [SKIP][439] ([Intel XE#1201] / [Intel XE#653]) +15 other tests skip
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move:
    - shard-dg2-set2:     [SKIP][440] ([Intel XE#1201] / [Intel XE#2351]) -> [SKIP][441] ([Intel XE#1201] / [Intel XE#653]) +1 other test skip
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     [SKIP][442] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][443] ([Intel XE#1201]) +9 other tests skip
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-lnl:          [SKIP][444] ([Intel XE#599]) -> [SKIP][445] ([Intel XE#2423]) +2 other tests skip
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-3/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
    - shard-dg2-set2:     [SKIP][446] ([Intel XE#1201] / [i915#2575]) -> [SKIP][447] ([i915#2575]) +3 other tests skip
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-dg2-set2:     [SKIP][448] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][449] ([Intel XE#455]) +13 other tests skip
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_plane_multiple@tiling-y.html
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-dg2-set2:     [SKIP][450] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][451] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][452] ([Intel XE#498]) -> [SKIP][453] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][454] ([Intel XE#2318]) -> [SKIP][455] ([Intel XE#1201] / [Intel XE#2318]) +2 other tests skip
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][456] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][457] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
    - shard-dg2-set2:     [SKIP][458] ([Intel XE#1201] / [i915#2575]) -> [SKIP][459] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
    - shard-lnl:          [SKIP][460] ([Intel XE#2423]) -> [SKIP][461] ([Intel XE#2318]) +1 other test skip
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
    - shard-lnl:          [SKIP][462] ([Intel XE#2318]) -> [SKIP][463] ([Intel XE#2423]) +2 other tests skip
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     [SKIP][464] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][465] ([Intel XE#870])
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-dg2-set2:     [SKIP][466] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][467] ([Intel XE#1201]) +1 other test skip
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_pm_backlight@fade-with-dpms.html
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2-set2:     [SKIP][468] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][469] ([Intel XE#1122])
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2-set2:     [SKIP][470] ([Intel XE#1201] / [Intel XE#908]) -> [SKIP][471] ([Intel XE#1201] / [Intel XE#2351])
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html
    - shard-lnl:          [FAIL][472] ([Intel XE#1430]) -> [SKIP][473] ([Intel XE#2351])
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     [SKIP][474] ([Intel XE#1129]) -> [SKIP][475] ([Intel XE#1129] / [Intel XE#1201])
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     [SKIP][476] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][477] ([Intel XE#1489]) +3 other tests skip
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     [SKIP][478] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][479] ([Intel XE#1201]) +1 other test skip
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf.html
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf:
    - shard-dg2-set2:     [SKIP][480] ([Intel XE#1489]) -> [SKIP][481] ([Intel XE#1201] / [Intel XE#1489])
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf.html
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][482] ([Intel XE#1201]) -> [SKIP][483] ([Intel XE#1201] / [Intel XE#1489]) +1 other test skip
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2-set2:     [SKIP][484] ([Intel XE#1201]) -> [SKIP][485] ([Intel XE#1122] / [Intel XE#1201])
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-pr-no-drrs:
    - shard-dg2-set2:     [SKIP][486] ([Intel XE#929]) -> [SKIP][487] ([Intel XE#1201] / [Intel XE#929]) +6 other tests skip
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_psr@fbc-pr-no-drrs.html
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_psr@fbc-pr-no-drrs.html

  * igt@kms_psr@fbc-pr-sprite-plane-onoff:
    - shard-dg2-set2:     [SKIP][488] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][489] ([Intel XE#1201]) +2 other tests skip
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
    - shard-lnl:          [SKIP][490] ([Intel XE#1406]) -> [SKIP][491] ([Intel XE#2351]) +1 other test skip
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_psr@fbc-pr-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-dg2-set2:     [SKIP][492] ([Intel XE#1201]) -> [SKIP][493] ([Intel XE#1201] / [Intel XE#929]) +3 other tests skip
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-dg2-set2:     [SKIP][494] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][495] ([Intel XE#929]) +9 other tests skip
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_psr@pr-suspend:
    - shard-dg2-set2:     [SKIP][496] ([Intel XE#1201]) -> [SKIP][497] ([Intel XE#929])
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@kms_psr@pr-suspend.html
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_psr@pr-suspend.html
    - shard-lnl:          [SKIP][498] ([Intel XE#2351]) -> [SKIP][499] ([Intel XE#1406])
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@kms_psr@pr-suspend.html
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@kms_psr@pr-suspend.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg2-set2:     [SKIP][500] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][501] ([Intel XE#1201])
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][502] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][503] ([Intel XE#1127])
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][504] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][505] ([Intel XE#1201] / [i915#2575])
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
    - shard-lnl:          [SKIP][506] ([Intel XE#1127]) -> [SKIP][507] ([Intel XE#2423])
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2-set2:     [SKIP][508] ([Intel XE#327]) -> [SKIP][509] ([Intel XE#1201] / [Intel XE#327])
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][510] ([Intel XE#1201] / [i915#2575]) -> [SKIP][511] ([Intel XE#1127] / [Intel XE#1201])
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
    - shard-lnl:          [SKIP][512] ([Intel XE#2423]) -> [SKIP][513] ([Intel XE#1127])
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-dg2-set2:     [SKIP][514] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][515] ([Intel XE#327])
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_writeback@writeback-check-output:
    - shard-dg2-set2:     [SKIP][516] ([Intel XE#756]) -> [SKIP][517] ([Intel XE#1201] / [Intel XE#756])
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_writeback@writeback-check-output.html
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@kms_writeback@writeback-check-output.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-dg2-set2:     [SKIP][518] ([Intel XE#1201] / [i915#2575]) -> [SKIP][519] ([Intel XE#1201] / [Intel XE#756])
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@kms_writeback@writeback-check-output-xrgb2101010.html
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html
    - shard-lnl:          [SKIP][520] ([Intel XE#2423]) -> [SKIP][521] ([Intel XE#756])
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-dg2-set2:     [SKIP][522] ([Intel XE#756]) -> [SKIP][523] ([Intel XE#1201] / [i915#2575])
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
    - shard-lnl:          [SKIP][524] ([Intel XE#756]) -> [SKIP][525] ([Intel XE#2423])
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2-set2:     [SKIP][526] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][527] ([Intel XE#1091])
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_copy_basic@mem-copy-linear-0x369:
    - shard-dg2-set2:     [SKIP][528] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][529] ([Intel XE#1130] / [Intel XE#1201])
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][530] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][531] ([Intel XE#1123])
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_copy_basic@mem-set-linear-0x369:
    - shard-dg2-set2:     [SKIP][532] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][533] ([Intel XE#1130])
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x369.html
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html

  * igt@xe_evict@evict-beng-cm-threads-small:
    - shard-lnl:          [SKIP][534] ([Intel XE#1130]) -> [SKIP][535] ([Intel XE#688]) +1 other test skip
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@xe_evict@evict-beng-cm-threads-small.html
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-2/igt@xe_evict@evict-beng-cm-threads-small.html

  * igt@xe_evict@evict-beng-threads-large:
    - shard-dg2-set2:     [TIMEOUT][536] ([Intel XE#1473]) -> [INCOMPLETE][537] ([Intel XE#1195] / [Intel XE#1473])
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@xe_evict@evict-beng-threads-large.html
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][538] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][539] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_evict@evict-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][540] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][541] ([Intel XE#1473] / [Intel XE#392])
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@xe_evict@evict-threads-large.html
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_evict@evict-threads-large.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
    - shard-lnl:          [SKIP][542] ([Intel XE#688]) -> [SKIP][543] ([Intel XE#1130]) +5 other tests skip
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic:
    - shard-lnl:          [SKIP][544] ([Intel XE#1392]) -> [SKIP][545] ([Intel XE#1130]) +5 other tests skip
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html

  * igt@xe_exec_basic@multigpu-once-userptr:
    - shard-lnl:          [SKIP][546] ([Intel XE#1130]) -> [SKIP][547] ([Intel XE#1392]) +2 other tests skip
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html
   [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-1/igt@xe_exec_basic@multigpu-once-userptr.html

  * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][548] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][549] ([Intel XE#1130] / [Intel XE#1201]) +7 other tests skip
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@many-execqueues-basic-prefetch:
    - shard-dg2-set2:     [SKIP][550] ([Intel XE#288]) -> [SKIP][551] ([Intel XE#1130] / [Intel XE#1201]) +2 other tests skip
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch:
    - shard-dg2-set2:     [SKIP][552] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][553] ([Intel XE#1130]) +2 other tests skip
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch.html
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm:
    - shard-dg2-set2:     [SKIP][554] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][555] ([Intel XE#288])
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm.html
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm.html

  * igt@xe_exec_fault_mode@once-basic:
    - shard-dg2-set2:     [SKIP][556] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][557] ([Intel XE#1201] / [Intel XE#288]) +6 other tests skip
   [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@xe_exec_fault_mode@once-basic.html
   [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@xe_exec_fault_mode@once-basic.html

  * igt@xe_exec_fault_mode@twice-userptr-prefetch:
    - shard-dg2-set2:     [SKIP][558] ([Intel XE#288]) -> [SKIP][559] ([Intel XE#1201] / [Intel XE#288]) +11 other tests skip
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-prefetch.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     [SKIP][560] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][561] ([Intel XE#288]) +15 other tests skip
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
    - shard-dg2-set2:     [SKIP][562] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][563] ([Intel XE#1201] / [Intel XE#2360])
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-dg2-set2:     [SKIP][564] ([Intel XE#1201] / [Intel XE#2360]) -> [SKIP][565] ([Intel XE#2360])
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_reset@spin:
    - shard-dg2-set2:     [SKIP][566] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][567] ([Intel XE#1130])
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@xe_exec_reset@spin.html
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_exec_reset@spin.html

  * igt@xe_live_ktest@xe_mocs:
    - shard-dg2-set2:     [SKIP][568] ([Intel XE#1192] / [Intel XE#1201]) -> [FAIL][569] ([Intel XE#1999])
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@xe_live_ktest@xe_mocs.html
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_live_ktest@xe_mocs.html

  * igt@xe_module_load@force-load:
    - shard-dg2-set2:     [SKIP][570] ([Intel XE#378]) -> [SKIP][571] ([Intel XE#1201] / [Intel XE#378])
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@xe_module_load@force-load.html
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-436/igt@xe_module_load@force-load.html

  * igt@xe_module_load@reload:
    - shard-dg2-set2:     [FAIL][572] -> [FAIL][573] ([Intel XE#2136]) +1 other test fail
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@xe_module_load@reload.html
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_module_load@reload.html

  * igt@xe_oa@map-oa-buffer:
    - shard-dg2-set2:     [SKIP][574] ([Intel XE#1201] / [Intel XE#2419]) -> [SKIP][575] ([Intel XE#2419]) +4 other tests skip
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-434/igt@xe_oa@map-oa-buffer.html
   [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_oa@map-oa-buffer.html

  * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
    - shard-dg2-set2:     [SKIP][576] ([Intel XE#2419]) -> [SKIP][577] ([Intel XE#1201] / [Intel XE#2419]) +1 other test skip
   [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
   [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-dg2-set2:     [SKIP][578] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][579] ([Intel XE#1130] / [Intel XE#1201])
   [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html
   [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html
    - shard-lnl:          [SKIP][580] ([Intel XE#1420]) -> [SKIP][581] ([Intel XE#1130])
   [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-1/igt@xe_pat@pat-index-xehpc.html
   [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_peer2peer@read:
    - shard-dg2-set2:     [FAIL][582] ([Intel XE#1173]) -> [SKIP][583] ([Intel XE#1061] / [Intel XE#1201])
   [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@xe_peer2peer@read.html
   [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-mocs:
    - shard-lnl:          [SKIP][584] ([Intel XE#2284]) -> [SKIP][585] ([Intel XE#1130])
   [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-4/igt@xe_pm@d3cold-mocs.html
   [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-8/igt@xe_pm@d3cold-mocs.html
    - shard-dg2-set2:     [SKIP][586] ([Intel XE#1201] / [Intel XE#2284]) -> [SKIP][587] ([Intel XE#1130] / [Intel XE#1201])
   [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-433/igt@xe_pm@d3cold-mocs.html
   [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-dg2-set2:     [SKIP][588] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][589] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366])
   [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@xe_pm@d3cold-multiple-execs.html
   [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@s3-mocs:
    - shard-lnl:          [SKIP][590] ([Intel XE#584]) -> [SKIP][591] ([Intel XE#1130])
   [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-lnl-2/igt@xe_pm@s3-mocs.html
   [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-lnl-6/igt@xe_pm@s3-mocs.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-dg2-set2:     [SKIP][592] ([Intel XE#944]) -> [SKIP][593] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
   [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-432/igt@xe_query@multigpu-query-gt-list.html
   [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-463/igt@xe_query@multigpu-query-gt-list.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-dg2-set2:     [SKIP][594] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][595] ([Intel XE#1130] / [Intel XE#1201])
   [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-436/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
   [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-434/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-dg2-set2:     [SKIP][596] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][597] ([Intel XE#944])
   [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7946/shard-dg2-466/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
   [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11507/shard-dg2-432/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  
  [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
  [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
  [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
  [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
  [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
  [Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
  [Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2203]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2203
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2389
  [Intel XE#2419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2419
  [Intel XE#2421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2421
  [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
  [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#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


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

  * IGT: IGT_7946 -> IGTPW_11507

  IGTPW_11507: 11507
  IGT_7946: 7946
  xe-1696-2a74e6714291a2c9cf26c08f729d5feb203e8338: 2a74e6714291a2c9cf26c08f729d5feb203e8338

== Logs ==

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

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

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

* Re: [PATCH i-g-t, v4 1/2] tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe
  2024-07-31 14:30 ` [PATCH i-g-t, v4 1/2] " nakshtra.goyal
@ 2024-08-01 14:10   ` Riana Tauro
  0 siblings, 0 replies; 8+ messages in thread
From: Riana Tauro @ 2024-08-01 14:10 UTC (permalink / raw)
  To: nakshtra.goyal, igt-dev, ramadevi.gandi; +Cc: janga.rahul.kumar, sai.gowtham.ch

Hi Nakshtra

On 7/31/2024 8:00 PM, nakshtra.goyal@intel.com wrote:
> From: Nakshtra Goyal <nakshtra.goyal@intel.com>
> 
> Using single exec, removing unnecessary headers,using variables of same
> type in single line according to comments in v3
Add a brief description of the test and version history separately
> 
> Signed-off-by: Nakshtra Goyal <nakshtra.goyal@intel.com>
> ---
>   tests/intel/xe_sysfs_preempt_timeout.c | 221 +++++++++++++++++++++++++
>   tests/meson.build                      |   1 +
>   2 files changed, 222 insertions(+)
>   create mode 100644 tests/intel/xe_sysfs_preempt_timeout.c
> 
> diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c
> new file mode 100644
> index 000000000..a77741fcf
> --- /dev/null
> +++ b/tests/intel/xe_sysfs_preempt_timeout.c
> @@ -0,0 +1,221 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: sysfs preempt timeout
> + * Category: Core
> + * Mega feature: SysMan
> + * Sub-category: SysMan tests
> + * Functionality: sysfs preempt timeout
> + * Feature: SMI, context
> + * Test category: SysMan
> + *
> + * SUBTEST: %s-timeout
> + * Description: Test to measure the delay from requestion the preemption to its
%s/requestion/request
Sentence seems wrong
> + *      completion. Send down some non-preemptable workloads and then > + *      request a switch to a higher priority context. The HW will not
> + *      be able to respond, so the kernel will be forced to reset the hog.
> + * Test category: functionality test
> + *
> + * arg[1]:
> + *
> + * @preempt_timeout_us:		preempt timeout us
> + */
> +
> +#include "xe/xe_spin.h"
> +#include "igt_syncobj.h"
> +#include "xe/xe_ioctl.h"
> +
> +#include "igt.h"
> +#include "igt_sysfs.h"
> +
order alphabetically
> +#define ATTR "preempt_timeout_us"
> +
> +static void set_preempt_timeout(int engine, unsigned int value)
> +{
> +	unsigned int delay;
> +
> +	igt_assert_lte(0, igt_sysfs_printf(engine, ATTR, "%u", value));
> +	igt_sysfs_scanf(engine, ATTR, "%u", &delay);
> +	igt_assert_eq(delay, value);
> +}
> +
> +static uint64_t __test_timeout(int xe, int engine, unsigned int timeout)
> +{
> +	struct drm_xe_sync sync = {
> +		.handle = syncobj_create(xe, 0),
> +		.type = DRM_XE_SYNC_TYPE_SYNCOBJ,
> +		.flags = DRM_XE_SYNC_FLAG_SIGNAL,
> +	};
> +
> +	struct drm_xe_exec exec = {
> +		.num_batch_buffer = 1,
> +		.num_syncs = 1,
> +		.syncs = to_user_pointer(&sync),
> +	};
> +/* high priority property */
indentation
> +	struct drm_xe_ext_set_property ext = {
> +		.base.next_extension = 0,
> +		.base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> +		.property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY,
> +		.value = 2, /* High priority */
> +	};
> +	struct drm_xe_engine_class_instance *hwe;
> +	uint64_t ahnd = 0;
> +	uint32_t exec_queues[2];
> +	uint32_t vm[2];
> +	uint32_t bo[2];
> +	size_t bo_size;
> +	struct xe_spin *spin[2];
> +	struct timespec ts = {};
> +	double elapsed;
> +	uint64_t addr1 = 0x1a0000, addr2 = 0x100000;
> +	int i, n_engines;
> +
> +	n_engines = 0;
> +	/* select an random engine */
> +	i = rand() % xe_number_engines(xe);
> +	xe_for_each_engine(xe, hwe) {
> +		if (i == n_engines++)
> +			break;
> +	}
> +
> +	/* set preempt timeout*/
> +	set_preempt_timeout(engine, timeout);
> +	vm[0] = xe_vm_create(xe, 0, 0);
> +	vm[1] = xe_vm_create(xe, 0, 0);
> +	exec_queues[0] = xe_exec_queue_create(xe, vm[0], hwe, 0);
> +	exec_queues[1] = xe_exec_queue_create(xe, vm[1], hwe, to_user_pointer(&ext));
> +	ahnd = intel_allocator_open(xe, 0, INTEL_ALLOCATOR_RELOC);
> +	bo_size = xe_bb_size(xe, sizeof(*spin));
> +	bo[0] = xe_bo_create(xe, vm[0], bo_size, vram_if_possible(xe, 0), 0);
> +	spin[0] = xe_bo_map(xe, bo[0], bo_size);
> +	xe_vm_bind_async(xe, vm[0], 0, bo[0], 0, addr1, bo_size, &sync, 1);
> +	xe_spin_init_opts(spin[0], .addr = addr1,
> +				.preempt = false);
> +	exec.address = addr1;
> +	exec.exec_queue_id = exec_queues[0];
> +	xe_exec(xe, &exec);
> +	xe_spin_wait_started(spin[0]);
> +
> +	igt_nsec_elapsed(&ts);
> +	bo[1] = xe_bo_create(xe, vm[1], bo_size, vram_if_possible(xe, 0), 0);
> +	spin[1] = xe_bo_map(xe, bo[1], bo_size);
> +	xe_vm_bind_sync(xe, vm[1], bo[1], 0, addr2, bo_size);
> +	xe_spin_init_opts(spin[1], .addr = addr2);
> +	exec.address = addr2;
> +	exec.exec_queue_id = exec_queues[1];
> +	xe_exec(xe, &exec);
> +	xe_spin_wait_started(spin[1]);
> +	elapsed = igt_nsec_elapsed(&ts);
> +	xe_spin_end(spin[1]);
> +
> +	xe_vm_unbind_async(xe, vm[0], 0, 0, addr1, bo_size, &sync, 1);
> +	igt_assert(syncobj_wait(xe, &sync.handle, 1, INT64_MAX, 0, NULL));
> +
> +	xe_spin_end(spin[0]);
> +	xe_vm_unbind_sync(xe, vm[1], 0, addr2, bo_size);
> +	syncobj_destroy(xe, sync.handle);
> +
> +	xe_exec_queue_destroy(xe, exec_queues[0]);
> +	xe_vm_destroy(xe, vm[0]);
> +	xe_exec_queue_destroy(xe, exec_queues[1]);
> +	xe_vm_destroy(xe, vm[1]);
> +
> +	put_ahnd(ahnd);
> +	return elapsed;
> +}
> +
> +static void test_timeout(int xe, int engine, const char **property)
> +{
> +	int delays[] = { 1000, 50000, 100000, 500000 };
> +	unsigned int saved;
> +	uint64_t elapsed;
> +	int epsilon;
> +
> +    /*
> +     * Send down some non-preemptable workloads and then request a
> +     * switch to a higher priority context. The HW will not be able to
> +     * respond, so the kernel will be forced to reset the hog. This
> +     * timeout should match our specification, and so we can measure
> +     * the delay from requesting the preemption to its completion.
> +     */
> +
> +	igt_assert(igt_sysfs_scanf(engine, ATTR, "%u", &saved) == 1);
> +	igt_debug("Initial %s:%u\n", ATTR, saved);
> +
> +	elapsed = __test_timeout(xe, engine, 1000);
> +	epsilon = 2 * elapsed / 1000;
> +	if (epsilon < 50000)
> +		epsilon = 50000;
> +	igt_info("Minimum timeout measured as %.3fus; setting error threshold to %dus\n",
> +		 elapsed * 1e-3, epsilon);
> +	igt_require(epsilon < 10000000);
> +
> +	for (int i = 0; i < ARRAY_SIZE(delays); i++) {
> +		elapsed = __test_timeout(xe, engine, delays[i]);
> +		igt_info("%s:%d, elapsed=%.3fus\n",
> +			ATTR, delays[i], elapsed * 1e-3);
> +
> +		/*
> +		 * We need to give a couple of jiffies slack for the scheduler
> +		 * timeouts and then a little more slack fr the overhead in
> +		 * submitting and measuring.
> +		 */
> +		igt_assert_f(elapsed / 1000 / 1000 < delays[i] + epsilon,
> +				 "Forced preemption timeout exceeded request!\n");
indentation
> +	}
> +
> +	set_preempt_timeout(engine, saved);
> +}
> +
> +igt_main
> +{
> +	static const struct {
> +		const char *name;
> +		void (*fn)(int, int, const char **);
> +	} tests[] = {
> +		{ "timeout", test_timeout },
> +		{ }
> +	};
There is only single test. Do we need the array?
> +
> +	const char *property[][3] = { {"preempt_timeout_us",
> +								   "preempt_timeout_min",
> +								   "preempt_timeout_max"}, };
indentation
> +	int count = sizeof(property) / sizeof(property[0]);
> +	int xe = -1, sys_fd, gt;
> +
> +	igt_fixture {
> +		xe = drm_open_driver(DRIVER_XE);
> +		xe_device_get(xe);
> +
> +		sys_fd = igt_sysfs_open(xe);
> +		igt_require(sys_fd != -1);
> +		close(sys_fd);
Is this required?
> +	}
> +	int engines_fd = -1, gt_fd = -1;
> +
> +	for (int i = 0; i < count; i++) {
> +		for (typeof(*tests) *t = tests; t->name; t++) {
> +			igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
> +				xe_for_each_gt(xe, gt) {
remove extra line
> +
> +					gt_fd = xe_sysfs_gt_open(xe, gt);
> +					igt_require(gt_fd != -1);
> +					engines_fd = openat(gt_fd, "engines", O_RDONLY);
> +					igt_require(engines_fd != -1);
> +
> +					igt_sysfs_engines(xe, engines_fd, property[i], t->fn);
> +					close(engines_fd);
> +					close(gt_fd);
> +				}
> +			}
> +		}
> +	}
> +	igt_fixture {
> +		xe_device_put(xe);
> +		close(xe);
> +	}
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index e649466be..335c8b837 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -315,6 +315,7 @@ intel_xe_progs = [
>   	'xe_spin_batch',
>   	'xe_sysfs_defaults',
>   	'xe_sysfs_scheduler',
> +	'xe_sysfs_preempt_timeout',
alphabetical

Thanks,
Riana
>   ]
>   
>   chamelium_progs = [

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

end of thread, other threads:[~2024-08-01 14:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-31 14:30 [PATCH i-g-t, v4 0/2] tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe nakshtra.goyal
2024-07-31 14:30 ` [PATCH i-g-t, v4 1/2] " nakshtra.goyal
2024-08-01 14:10   ` Riana Tauro
2024-07-31 14:30 ` [PATCH i-g-t, v4 2/2] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_sysfs_preempt_timeout nakshtra.goyal
2024-07-31 14:53 ` ✗ GitLab.Pipeline: warning for tests/intel/xe_sysfs_preempt_timeout: Porting sysfs preempt test in xe (rev4) Patchwork
2024-07-31 15:05 ` ✓ CI.xeBAT: success " Patchwork
2024-07-31 15:19 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-07-31 17:12 ` ✗ CI.xeFULL: " Patchwork

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