All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/2] Test new debug based configfs changes
@ 2026-08-21 19:23 Stuart Summers
  2026-08-21 19:23 ` [PATCH i-g-t 1/2] tests/intel/xe_configfs: Use the new debug configfs group Stuart Summers
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Stuart Summers @ 2026-08-21 19:23 UTC (permalink / raw)
  Cc: igt-dev, rodrigo.vivi, matthew.brost, umesh.nerlige.ramappa,
	Michal.Wajdeczko, matthew.d.roper, daniele.ceraolospurio,
	shuicheng.lin, Stuart Summers

This series is meant to test the changes coming in with [1]. There
is a new debug specific configfs group to allow easy addition of
debug-specific configfs entries without worrying about ABI for non-debug
configurations. There are also two new entries tested here,
guc_log_level and guc_log_target.

[1]: https://patchwork.freedesktop.org/series/165879/

Stuart Summers (2):
  tests/intel/xe_configfs: Use the new debug configfs group
  tests/intel/xe_configfs: Add coverage for GuC log configfs entries

 tests/intel/xe_configfs.c | 312 ++++++++++++++++++++++++++++++++------
 1 file changed, 269 insertions(+), 43 deletions(-)

-- 
2.43.0


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

* [PATCH i-g-t 1/2] tests/intel/xe_configfs: Use the new debug configfs group
  2026-08-21 19:23 [PATCH i-g-t 0/2] Test new debug based configfs changes Stuart Summers
@ 2026-08-21 19:23 ` Stuart Summers
  2026-08-21 19:23 ` [PATCH i-g-t 2/2] tests/intel/xe_configfs: Add coverage for GuC log configfs entries Stuart Summers
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Stuart Summers @ 2026-08-21 19:23 UTC (permalink / raw)
  Cc: igt-dev, rodrigo.vivi, matthew.brost, umesh.nerlige.ramappa,
	Michal.Wajdeczko, matthew.d.roper, daniele.ceraolospurio,
	shuicheng.lin, Stuart Summers

The xe driver moved its debug oriented configfs attributes
(ctx_restore_*_bb, engines_allowed, gt_types_allowed and
survivability_mode) into a "debug" subgroup of the device group. Open
that subgroup and use it for those attributes.

The subgroup only exists when the driver is built with
CONFIG_DRM_XE_DEBUG, so skip the subtests when it is missing rather
than failing on every attribute access.

Signed-off-by: Stuart Summers <stuart.summers@intel.com>
Assisted-by: Copilot:claude-opus-5
---
 tests/intel/xe_configfs.c | 131 +++++++++++++++++++++++++-------------
 1 file changed, 88 insertions(+), 43 deletions(-)

diff --git a/tests/intel/xe_configfs.c b/tests/intel/xe_configfs.c
index 450c0a119..c537e5d69 100644
--- a/tests/intel/xe_configfs.c
+++ b/tests/intel/xe_configfs.c
@@ -68,11 +68,26 @@ static void restore(int sig)
 	igt_kmod_bind("xe", bus_addr);
 }
 
-static void set_survivability_mode(int configfs_device_fd, bool value)
+/*
+ * Debug oriented attributes live in the "debug" subgroup of the device
+ * group. The subgroup is only created when the driver is built with
+ * CONFIG_DRM_XE_DEBUG, so skip if it's not there.
+ */
+static int open_debug_group(int configfs_device_fd)
+{
+	int fd = openat(configfs_device_fd, "debug", O_RDONLY | O_DIRECTORY);
+
+	igt_require_f(fd >= 0,
+		      "configfs debug group not available, is CONFIG_DRM_XE_DEBUG enabled?\n");
+
+	return fd;
+}
+
+static void set_survivability_mode(int configfs_debug_fd, bool value)
 {
 	igt_audio_driver_unload(NULL);
 	igt_kmod_unbind("xe", bus_addr);
-	igt_sysfs_set_boolean(configfs_device_fd, "survivability_mode", value);
+	igt_sysfs_set_boolean(configfs_debug_fd, "survivability_mode", value);
 	igt_kmod_bind("xe", bus_addr);
 }
 
@@ -80,13 +95,13 @@ static void set_survivability_mode(int configfs_device_fd, bool value)
  * SUBTEST: survivability-mode
  * Description: Validate survivability mode by setting configfs
  */
-static void test_survivability_mode(int configfs_device_fd)
+static void test_survivability_mode(int configfs_debug_fd)
 {
 	char path[PATH_MAX];
 	int fd;
 
 	/* Enable survivability mode */
-	set_survivability_mode(configfs_device_fd, true);
+	set_survivability_mode(configfs_debug_fd, true);
 
 	/* check presence of survivability mode sysfs */
 	snprintf(path, PATH_MAX, "/sys/bus/pci/devices/%s/survivability_mode", bus_addr);
@@ -100,7 +115,7 @@ static void test_survivability_mode(int configfs_device_fd)
  * SUBTEST: engines-allowed-invalid
  * Description: Validate engines_allowed attribute for invalid values
  */
-static void test_engines_allowed_invalid(int configfs_device_fd)
+static void test_engines_allowed_invalid(int configfs_debug_fd)
 {
 	static const char *values[] = {
 		"xcs0",
@@ -122,7 +137,7 @@ static void test_engines_allowed_invalid(int configfs_device_fd)
 		const char *v = values[i];
 
 		igt_debug("Writing '%s' to engines_allowed\n", v);
-		igt_assert(!igt_sysfs_set(configfs_device_fd, "engines_allowed", v));
+		igt_assert(!igt_sysfs_set(configfs_debug_fd, "engines_allowed", v));
 	}
 }
 
@@ -130,7 +145,7 @@ static void test_engines_allowed_invalid(int configfs_device_fd)
  * SUBTEST: engines-allowed
  * Description: Validate engines_allowed attribute
  */
-static void test_engines_allowed(int configfs_device_fd)
+static void test_engines_allowed(int configfs_debug_fd)
 {
 	static const char *values[] = {
 		"rcs0", "rcs*", "rcs0,bcs0", "bcs0,rcs0",
@@ -149,7 +164,7 @@ static void test_engines_allowed(int configfs_device_fd)
 		const char *v = values[i];
 
 		igt_debug("Writing '%s' to engines_allowed\n", v);
-		igt_assert(igt_sysfs_set(configfs_device_fd, "engines_allowed", v));
+		igt_assert(igt_sysfs_set(configfs_debug_fd, "engines_allowed", v));
 	}
 }
 
@@ -157,7 +172,7 @@ static void test_engines_allowed(int configfs_device_fd)
  * SUBTEST: gt-types-allowed
  * Description: Validate gt_types_allowed attribute
  */
-static void test_gt_types_allowed(int configfs_device_fd)
+static void test_gt_types_allowed(int configfs_debug_fd)
 {
 	static const char *values[] = {
 		"primary,media", "primary", "media", "",
@@ -180,14 +195,14 @@ static void test_gt_types_allowed(int configfs_device_fd)
 		const char *v = values[i];
 
 		igt_debug("Writing '%s' to gt_types_allowed\n", v);
-		igt_assert(igt_sysfs_set(configfs_device_fd, "gt_types_allowed", v));
+		igt_assert(igt_sysfs_set(configfs_debug_fd, "gt_types_allowed", v));
 	}
 
 	for (size_t i = 0; i < ARRAY_SIZE(invalid_values); i++) {
 		const char *v = invalid_values[i];
 
 		igt_debug("Writing '%s' to gt_types_allowed\n", v);
-		igt_assert(!igt_sysfs_set(configfs_device_fd, "gt_types_allowed", v));
+		igt_assert(!igt_sysfs_set(configfs_debug_fd, "gt_types_allowed", v));
 	}
 }
 
@@ -198,7 +213,7 @@ static void test_gt_types_allowed(int configfs_device_fd)
  * SUBTEST: ctx-restore-mid-bb-invalid
  * Description: Validate ctx_restore_mid_bb attribute for invalid values
  */
-static void test_ctx_restore_invalid(int configfs_device_fd, const char *type)
+static void test_ctx_restore_invalid(int configfs_debug_fd, const char *type)
 {
 	static const struct value {
 		const char *test;
@@ -234,7 +249,7 @@ static void test_ctx_restore_invalid(int configfs_device_fd, const char *type)
 	char file[64] = { };
 
 	snprintf(file, sizeof(file), "ctx_restore_%s_bb", type);
-	igt_sysfs_set(configfs_device_fd, file, "");
+	igt_sysfs_set(configfs_debug_fd, file, "");
 
 	/*
 	 * These only test if command parsing is correct,
@@ -248,8 +263,8 @@ static void test_ctx_restore_invalid(int configfs_device_fd, const char *type)
 
 		igt_info("Test %s\n", v->test);
 		igt_debug("bb '%s'\n", v->in);
-		igt_assert(!igt_sysfs_set(configfs_device_fd, file, v->in));
-		igt_assert(igt_sysfs_read(configfs_device_fd, file, buf,
+		igt_assert(!igt_sysfs_set(configfs_debug_fd, file, v->in));
+		igt_assert(igt_sysfs_read(configfs_debug_fd, file, buf,
 					  sizeof(buf) - 1));
 		if (strcmp(buf, "")) {
 			igt_debug("Expecting empty bb, but found '%s'\n", buf);
@@ -265,7 +280,7 @@ static void test_ctx_restore_invalid(int configfs_device_fd, const char *type)
  * SUBTEST: ctx-restore-mid-bb
  * Description: Validate ctx_restore_mid_bb attribute
  */
-static void test_ctx_restore(int configfs_device_fd, const char *type,
+static void test_ctx_restore(int configfs_debug_fd, const char *type,
 			     const char *engine)
 {
 	static const struct value {
@@ -336,9 +351,9 @@ static void test_ctx_restore(int configfs_device_fd, const char *type,
 
 		igt_info("Test %s\n", v->test);
 		igt_debug("bb '%s'\n", in);
-		igt_assert(igt_sysfs_set(configfs_device_fd, file, in));
+		igt_assert(igt_sysfs_set(configfs_debug_fd, file, in));
 
-		igt_assert(igt_sysfs_read(configfs_device_fd, file, buf,
+		igt_assert(igt_sysfs_read(configfs_debug_fd, file, buf,
 					  sizeof(buf) - 1));
 		if (strcmp(out, buf)) {
 			igt_debug("Expecting '%s' but found '%s'\n", out, buf);
@@ -368,15 +383,29 @@ static int create_device_configfs_group(int configfs_fd)
 	return configfs_device_fd;
 }
 
+static void create_debug_configfs_group(int configfs_fd, int *configfs_device_fd,
+					int *configfs_debug_fd)
+{
+	*configfs_device_fd = create_device_configfs_group(configfs_fd);
+	*configfs_debug_fd = open_debug_group(*configfs_device_fd);
+}
+
 static void close_configfs_group(int configfs_fd, int configfs_device_fd)
 {
 	close(configfs_device_fd);
 	igt_fs_remove_dir(configfs_fd, bus_addr);
 }
 
+static void close_debug_configfs_group(int configfs_fd, int configfs_device_fd,
+				       int configfs_debug_fd)
+{
+	close(configfs_debug_fd);
+	close_configfs_group(configfs_fd, configfs_device_fd);
+}
+
 int igt_main()
 {
-	int fd, configfs_fd, configfs_device_fd;
+	int fd, configfs_fd, configfs_device_fd, configfs_debug_fd;
 	bool is_vf_device;
 	bool has_survivability;
 	const char *engine = NULL;
@@ -412,62 +441,78 @@ int igt_main()
 	igt_subtest("survivability-mode") {
 		igt_require(has_survivability);
 		igt_require_f(!is_vf_device, "survivability mode not supported in VF\n");
-		configfs_device_fd = create_device_configfs_group(configfs_fd);
-		test_survivability_mode(configfs_device_fd);
-		close_configfs_group(configfs_fd, configfs_device_fd);
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_survivability_mode(configfs_debug_fd);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
 	}
 
 	igt_describe("Validate engines_allowed with invalid options");
 	igt_subtest("engines-allowed-invalid") {
-		configfs_device_fd = create_device_configfs_group(configfs_fd);
-		test_engines_allowed_invalid(configfs_device_fd);
-		close_configfs_group(configfs_fd, configfs_device_fd);
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_engines_allowed_invalid(configfs_debug_fd);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
 	}
 
 	igt_describe("Validate engines_allowed");
 	igt_subtest("engines-allowed") {
-		configfs_device_fd = create_device_configfs_group(configfs_fd);
-		test_engines_allowed(configfs_device_fd);
-		close_configfs_group(configfs_fd, configfs_device_fd);
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_engines_allowed(configfs_debug_fd);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
 	}
 
 	igt_describe("Validate gt_types_allowed");
 	igt_subtest("gt-types-allowed") {
-		configfs_device_fd = create_device_configfs_group(configfs_fd);
-		test_gt_types_allowed(configfs_device_fd);
-		close_configfs_group(configfs_fd, configfs_device_fd);
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_gt_types_allowed(configfs_debug_fd);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
 	}
 
 	igt_describe("Validate ctx_restore_post_bb with invalid options");
 	igt_subtest("ctx-restore-post-bb-invalid") {
 		igt_skip_on_f(is_vf_device, "MMIO register readback not possible on VF\n");
-		configfs_device_fd = create_device_configfs_group(configfs_fd);
-		test_ctx_restore_invalid(configfs_device_fd, "post");
-		close_configfs_group(configfs_fd, configfs_device_fd);
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_ctx_restore_invalid(configfs_debug_fd, "post");
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
 	}
 
 	igt_describe("Validate ctx_restore_post_bb");
 	igt_subtest("ctx-restore-post-bb") {
 		igt_skip_on_f(is_vf_device, "MMIO register readback not possible on VF\n");
-		configfs_device_fd = create_device_configfs_group(configfs_fd);
-		test_ctx_restore(configfs_device_fd, "post", engine);
-		close_configfs_group(configfs_fd, configfs_device_fd);
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_ctx_restore(configfs_debug_fd, "post", engine);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
 	}
 
 	igt_describe("Validate ctx_restore_mid_bb with invalid options");
 	igt_subtest("ctx-restore-mid-bb-invalid") {
 		igt_skip_on_f(is_vf_device, "MMIO register readback not possible on VF\n");
-		configfs_device_fd = create_device_configfs_group(configfs_fd);
-		test_ctx_restore_invalid(configfs_device_fd, "mid");
-		close_configfs_group(configfs_fd, configfs_device_fd);
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_ctx_restore_invalid(configfs_debug_fd, "mid");
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
 	}
 
 	igt_describe("Validate ctx_restore_mid_bb");
 	igt_subtest("ctx-restore-mid-bb") {
 		igt_skip_on_f(is_vf_device, "MMIO register readback not possible on VF\n");
-		configfs_device_fd = create_device_configfs_group(configfs_fd);
-		test_ctx_restore(configfs_device_fd, "mid", engine);
-		close_configfs_group(configfs_fd, configfs_device_fd);
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_ctx_restore(configfs_debug_fd, "mid", engine);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
 	}
 
 	igt_fixture() {
-- 
2.43.0


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

* [PATCH i-g-t 2/2] tests/intel/xe_configfs: Add coverage for GuC log configfs entries
  2026-08-21 19:23 [PATCH i-g-t 0/2] Test new debug based configfs changes Stuart Summers
  2026-08-21 19:23 ` [PATCH i-g-t 1/2] tests/intel/xe_configfs: Use the new debug configfs group Stuart Summers
@ 2026-08-21 19:23 ` Stuart Summers
  2026-08-21 21:11 ` ✓ Xe.CI.BAT: success for Test new debug based configfs changes Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Stuart Summers @ 2026-08-21 19:23 UTC (permalink / raw)
  Cc: igt-dev, rodrigo.vivi, matthew.brost, umesh.nerlige.ramappa,
	Michal.Wajdeczko, matthew.d.roper, daniele.ceraolospurio,
	shuicheng.lin, Stuart Summers

Cover the new guc_log_level and guc_log_target debug configfs
attributes: default values, the full range of accepted values, values
that must be rejected, and rejection with -EBUSY while the device is
bound.

Signed-off-by: Stuart Summers <stuart.summers@intel.com>
Assisted-by: Copilot:claude-opus-5
---
 tests/intel/xe_configfs.c | 181 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 181 insertions(+)

diff --git a/tests/intel/xe_configfs.c b/tests/intel/xe_configfs.c
index c537e5d69..c036a805e 100644
--- a/tests/intel/xe_configfs.c
+++ b/tests/intel/xe_configfs.c
@@ -365,6 +365,142 @@ static void test_ctx_restore(int configfs_debug_fd, const char *type,
 	}
 }
 
+/* Values accepted by the guc_log_level attribute: -1 (unset) and 0..5 */
+#define XE_GUC_LOG_LEVEL_UNSET	-1
+#define GUC_LOG_LEVEL_MAX	5
+
+/* Values accepted by the guc_log_target attribute: memory, NPK and both */
+#define GUC_LOG_TARGET_MEM	0
+#define GUC_LOG_TARGET_MAX	2
+
+static void assert_attr_eq(int configfs_debug_fd, const char *attr, int expected)
+{
+	int value;
+
+	igt_assert_f(igt_sysfs_scanf(configfs_debug_fd, attr, "%d", &value) == 1,
+		     "Failed to read %s\n", attr);
+	igt_assert_f(value == expected, "Expecting %s=%d but found %d\n",
+		     attr, expected, value);
+}
+
+static void set_attr_and_verify(int configfs_debug_fd, const char *attr, int value)
+{
+	char buf[16];
+
+	snprintf(buf, sizeof(buf), "%d", value);
+
+	igt_debug("Writing '%s' to %s\n", buf, attr);
+	igt_assert_f(igt_sysfs_set(configfs_debug_fd, attr, buf),
+		     "Writing '%s' to %s failed\n", buf, attr);
+	assert_attr_eq(configfs_debug_fd, attr, value);
+}
+
+static void test_attr_invalid(int configfs_debug_fd, const char *attr,
+			      const char * const *values, size_t nvalues,
+			      int unchanged)
+{
+	for (size_t i = 0; i < nvalues; i++) {
+		const char *v = values[i];
+
+		igt_debug("Writing '%s' to %s\n", v, attr);
+		igt_assert_f(!igt_sysfs_set(configfs_debug_fd, attr, v),
+			     "Writing '%s' to %s should have failed\n", v, attr);
+		assert_attr_eq(configfs_debug_fd, attr, unchanged);
+	}
+}
+
+/**
+ * SUBTEST: guc-log-level
+ * Description: Validate guc_log_level attribute
+ */
+static void test_guc_log_level(int configfs_debug_fd)
+{
+	/*
+	 * The attribute can only be changed while the device is unbound, so
+	 * make sure there's no device bound.
+	 */
+	igt_audio_driver_unload(NULL);
+	igt_kmod_unbind("xe", bus_addr);
+
+	/* Default is 'unset': the guc_log_level modparam is used instead */
+	assert_attr_eq(configfs_debug_fd, "guc_log_level", XE_GUC_LOG_LEVEL_UNSET);
+
+	for (int level = XE_GUC_LOG_LEVEL_UNSET; level <= GUC_LOG_LEVEL_MAX; level++)
+		set_attr_and_verify(configfs_debug_fd, "guc_log_level", level);
+
+	/* Restore the default and make sure the driver still probes */
+	set_attr_and_verify(configfs_debug_fd, "guc_log_level", XE_GUC_LOG_LEVEL_UNSET);
+	igt_assert_eq(igt_kmod_bind("xe", bus_addr), 0);
+}
+
+/**
+ * SUBTEST: guc-log-level-invalid
+ * Description: Validate guc_log_level attribute for invalid values
+ */
+static void test_guc_log_level_invalid(int configfs_debug_fd)
+{
+	static const char * const values[] = {
+		"-2", "6", "100", "abc", "1a", "",
+	};
+
+	igt_audio_driver_unload(NULL);
+	igt_kmod_unbind("xe", bus_addr);
+
+	test_attr_invalid(configfs_debug_fd, "guc_log_level", values,
+			  ARRAY_SIZE(values), XE_GUC_LOG_LEVEL_UNSET);
+}
+
+/**
+ * SUBTEST: guc-log-target
+ * Description: Validate guc_log_target attribute
+ */
+static void test_guc_log_target(int configfs_debug_fd)
+{
+	igt_audio_driver_unload(NULL);
+	igt_kmod_unbind("xe", bus_addr);
+
+	/* Default is to log to memory only */
+	assert_attr_eq(configfs_debug_fd, "guc_log_target", GUC_LOG_TARGET_MEM);
+
+	for (int target = GUC_LOG_TARGET_MEM; target <= GUC_LOG_TARGET_MAX; target++)
+		set_attr_and_verify(configfs_debug_fd, "guc_log_target", target);
+
+	/* Restore the default and make sure the driver still probes */
+	set_attr_and_verify(configfs_debug_fd, "guc_log_target", GUC_LOG_TARGET_MEM);
+	igt_assert_eq(igt_kmod_bind("xe", bus_addr), 0);
+}
+
+/**
+ * SUBTEST: guc-log-target-invalid
+ * Description: Validate guc_log_target attribute for invalid values
+ */
+static void test_guc_log_target_invalid(int configfs_debug_fd)
+{
+	static const char * const values[] = {
+		"-1", "3", "256", "abc", "1a", "",
+	};
+
+	igt_audio_driver_unload(NULL);
+	igt_kmod_unbind("xe", bus_addr);
+
+	test_attr_invalid(configfs_debug_fd, "guc_log_target", values,
+			  ARRAY_SIZE(values), GUC_LOG_TARGET_MEM);
+}
+
+/**
+ * SUBTEST: guc-log-bound
+ * Description: Validate GuC log attributes are rejected while bound
+ */
+static void test_guc_log_bound(int configfs_debug_fd)
+{
+	igt_kmod_bind("xe", bus_addr);
+
+	igt_assert_f(!igt_sysfs_set(configfs_debug_fd, "guc_log_level", "1"),
+		     "Writing guc_log_level while bound should have failed\n");
+	igt_assert_f(!igt_sysfs_set(configfs_debug_fd, "guc_log_target", "1"),
+		     "Writing guc_log_target while bound should have failed\n");
+}
+
 static void set_bus_addr(int fd)
 {
 	pci_dev = igt_device_get_pci_device(fd);
@@ -475,6 +611,51 @@ int igt_main()
 					   configfs_debug_fd);
 	}
 
+	igt_describe("Validate guc_log_level");
+	igt_subtest("guc-log-level") {
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_guc_log_level(configfs_debug_fd);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
+	}
+
+	igt_describe("Validate guc_log_level with invalid options");
+	igt_subtest("guc-log-level-invalid") {
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_guc_log_level_invalid(configfs_debug_fd);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
+	}
+
+	igt_describe("Validate guc_log_target");
+	igt_subtest("guc-log-target") {
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_guc_log_target(configfs_debug_fd);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
+	}
+
+	igt_describe("Validate guc_log_target with invalid options");
+	igt_subtest("guc-log-target-invalid") {
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_guc_log_target_invalid(configfs_debug_fd);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
+	}
+
+	igt_describe("Validate GuC log attributes are rejected while bound");
+	igt_subtest("guc-log-bound") {
+		create_debug_configfs_group(configfs_fd, &configfs_device_fd,
+					    &configfs_debug_fd);
+		test_guc_log_bound(configfs_debug_fd);
+		close_debug_configfs_group(configfs_fd, configfs_device_fd,
+					   configfs_debug_fd);
+	}
+
 	igt_describe("Validate ctx_restore_post_bb with invalid options");
 	igt_subtest("ctx-restore-post-bb-invalid") {
 		igt_skip_on_f(is_vf_device, "MMIO register readback not possible on VF\n");
-- 
2.43.0


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

* ✓ Xe.CI.BAT: success for Test new debug based configfs changes
  2026-08-21 19:23 [PATCH i-g-t 0/2] Test new debug based configfs changes Stuart Summers
  2026-08-21 19:23 ` [PATCH i-g-t 1/2] tests/intel/xe_configfs: Use the new debug configfs group Stuart Summers
  2026-08-21 19:23 ` [PATCH i-g-t 2/2] tests/intel/xe_configfs: Add coverage for GuC log configfs entries Stuart Summers
@ 2026-08-21 21:11 ` Patchwork
  2026-08-21 21:26 ` ✓ i915.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-08-21 21:11 UTC (permalink / raw)
  To: Stuart Summers; +Cc: igt-dev

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

== Series Details ==

Series: Test new debug based configfs changes
URL   : https://patchwork.freedesktop.org/series/172602/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_9070_BAT -> XEIGTPW_15720_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_9070 -> IGTPW_15720
  * Linux: xe-5630-7ae51381a25c66d497ec65fda2f1c329cb6f618f -> xe-5631-58d59a40e2a041d3c159fab8bf5d5dc19d28da6c

  IGTPW_15720: 15720
  IGT_9070: 80b6e4c9b9cb853c63a9bcaa4784e0306d1f7fca @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5630-7ae51381a25c66d497ec65fda2f1c329cb6f618f: 7ae51381a25c66d497ec65fda2f1c329cb6f618f
  xe-5631-58d59a40e2a041d3c159fab8bf5d5dc19d28da6c: 58d59a40e2a041d3c159fab8bf5d5dc19d28da6c

== Logs ==

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

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

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

* ✓ i915.CI.BAT: success for Test new debug based configfs changes
  2026-08-21 19:23 [PATCH i-g-t 0/2] Test new debug based configfs changes Stuart Summers
                   ` (2 preceding siblings ...)
  2026-08-21 21:11 ` ✓ Xe.CI.BAT: success for Test new debug based configfs changes Patchwork
@ 2026-08-21 21:26 ` Patchwork
  2026-08-21 23:19 ` ✗ Xe.CI.FULL: failure " Patchwork
  2026-08-22  0:16 ` ✗ i915.CI.Full: " Patchwork
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-08-21 21:26 UTC (permalink / raw)
  To: Stuart Summers; +Cc: igt-dev

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

== Series Details ==

Series: Test new debug based configfs changes
URL   : https://patchwork.freedesktop.org/series/172602/
State : success

== Summary ==

CI Bug Log - changes from IGT_9070 -> IGTPW_15720
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (2): bat-dg2-13 fi-snb-2520m 


Changes
-------

  No changes found


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

  * CI: CI-20190529 -> None
  * IGT: IGT_9070 -> IGTPW_15720

  CI-20190529: 20190529
  CI_DRM_19030: 58d59a40e2a041d3c159fab8bf5d5dc19d28da6c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15720: 15720
  IGT_9070: 80b6e4c9b9cb853c63a9bcaa4784e0306d1f7fca @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for Test new debug based configfs changes
  2026-08-21 19:23 [PATCH i-g-t 0/2] Test new debug based configfs changes Stuart Summers
                   ` (3 preceding siblings ...)
  2026-08-21 21:26 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-08-21 23:19 ` Patchwork
  2026-08-22  0:16 ` ✗ i915.CI.Full: " Patchwork
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-08-21 23:19 UTC (permalink / raw)
  To: Stuart Summers; +Cc: igt-dev

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

== Series Details ==

Series: Test new debug based configfs changes
URL   : https://patchwork.freedesktop.org/series/172602/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_9070_FULL -> XEIGTPW_15720_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@xe_configfs@ctx-restore-mid-bb:
    - shard-bmg:          [PASS][1] -> [SKIP][2] +4 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_configfs@ctx-restore-mid-bb.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-1/igt@xe_configfs@ctx-restore-mid-bb.html

  * igt@xe_configfs@ctx-restore-post-bb-invalid:
    - shard-lnl:          [PASS][3] -> [SKIP][4] +6 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-lnl-4/igt@xe_configfs@ctx-restore-post-bb-invalid.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-lnl-8/igt@xe_configfs@ctx-restore-post-bb-invalid.html

  * {igt@xe_configfs@guc-log-level-invalid} (NEW):
    - shard-lnl:          NOTRUN -> [SKIP][5] +4 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-lnl-7/igt@xe_configfs@guc-log-level-invalid.html
    - shard-bmg:          NOTRUN -> [SKIP][6] +3 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-9/igt@xe_configfs@guc-log-level-invalid.html

  
#### Warnings ####

  * igt@xe_configfs@ctx-restore-post-bb:
    - shard-bmg:          [SKIP][7] ([Intel XE#8589]) -> [SKIP][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_configfs@ctx-restore-post-bb.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-6/igt@xe_configfs@ctx-restore-post-bb.html

  
New tests
---------

  New tests have been introduced between XEIGT_9070_FULL and XEIGTPW_15720_FULL:

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

  * igt@xe_configfs@guc-log-bound:
    - Statuses : 2 skip(s)
    - Exec time: [0.02, 0.05] s

  * igt@xe_configfs@guc-log-level:
    - Statuses : 2 skip(s)
    - Exec time: [0.01, 0.04] s

  * igt@xe_configfs@guc-log-level-invalid:
    - Statuses : 2 skip(s)
    - Exec time: [0.02, 0.04] s

  * igt@xe_configfs@guc-log-target:
    - Statuses : 2 skip(s)
    - Exec time: [0.03, 0.04] s

  * igt@xe_configfs@guc-log-target-invalid:
    - Statuses : 1 skip(s)
    - Exec time: [0.01] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-bmg:          NOTRUN -> [FAIL][9] ([Intel XE#3718] / [Intel XE#6078])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][10] ([Intel XE#6078])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2327])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-9/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#1124]) +7 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#7679])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-target-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#367]) +2 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#3432])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2887]) +7 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2652]) +7 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#7358]) +2 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-4/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2252]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-10/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#6974])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2390] / [Intel XE#6974])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html

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

  * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][23] ([Intel XE#6707] / [Intel XE#7439])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2320]) +2 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html

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

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][26] -> [FAIL][27] ([Intel XE#7571])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_dsc@dsc-basic-bigjoiner:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#8265]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-6/igt@kms_dsc@dsc-basic-bigjoiner.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#8680])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-8/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#7178] / [Intel XE#7349])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

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

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2311]) +34 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#4141]) +5 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#7061]) +3 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2313]) +34 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#7308])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#6911] / [Intel XE#7466])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

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

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#7283]) +3 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#5020] / [Intel XE#7348])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-9/igt@kms_plane_multiple@tiling-y.html

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

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-8/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [PASS][45] -> [FAIL][46] ([Intel XE#8399])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html

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

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#1489]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

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

  * igt@kms_sharpness_filter@invalid-plane-with-filter:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#6503]) +2 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-8/igt@kms_sharpness_filter@invalid-plane-with-filter.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#1499])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-6/igt@kms_vrr@flip-basic-fastset.html

  * igt@xe_exec_basic@multigpu-no-exec-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#8374]) +7 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-basic:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#8364]) +14 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-4/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic.html

  * igt@xe_exec_reset@multi-queue-cat-error:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#8369]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-1/igt@xe_exec_reset@multi-queue-cat-error.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#8378]) +4 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html

  * igt@xe_fault_injection@exec-queue-create-fail-xe_hw_engine_group_add_exec_queue:
    - shard-bmg:          NOTRUN -> [ABORT][57] ([Intel XE#8007]) +1 other test abort
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-2/igt@xe_fault_injection@exec-queue-create-fail-xe_hw_engine_group_add_exec_queue.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2833])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-basic:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#6964]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-10/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html

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

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

  * igt@xe_pxp@pxp-stale-queue-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#4733] / [Intel XE#7417])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-8/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html

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

  
#### Possible fixes ####

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][64] ([Intel XE#301]) -> [PASS][65] +1 other test pass
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
    - shard-bmg:          [DMESG-FAIL][66] ([Intel XE#7774]) -> [PASS][67] +1 other test pass
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
    - shard-bmg:          [FAIL][68] -> [PASS][69] +1 other test pass
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [FAIL][70] ([Intel XE#8399]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-bmg:          [SKIP][72] -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [FAIL][74] ([Intel XE#7397]) -> [PASS][75] +1 other test pass
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  * igt@xe_exec_system_allocator@process-many-large-mmap-nomemset:
    - shard-bmg:          [SKIP][76] ([Intel XE#8589]) -> [PASS][77] +123 other tests pass
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-mmap-nomemset.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-3/igt@xe_exec_system_allocator@process-many-large-mmap-nomemset.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
    - shard-bmg:          [ABORT][78] ([Intel XE#8007]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html

  
#### Warnings ####

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-bmg:          [SKIP][80] ([Intel XE#8589]) -> [SKIP][81] ([Intel XE#2327]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-9/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][82] ([Intel XE#8589]) -> [SKIP][83] ([Intel XE#610] / [Intel XE#7387])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-bmg:          [SKIP][84] ([Intel XE#8589]) -> [SKIP][85] ([Intel XE#1124])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_bw@linear-tiling-4-displays-target-2160x1440p:
    - shard-bmg:          [SKIP][86] ([Intel XE#8589]) -> [SKIP][87] ([Intel XE#367])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-target-2160x1440p.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-target-2160x1440p.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][88] ([Intel XE#8589]) -> [SKIP][89] ([Intel XE#2887]) +1 other test skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][90] ([Intel XE#8589]) -> [SKIP][91] ([Intel XE#2652])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
    - shard-bmg:          [SKIP][92] ([Intel XE#8589]) -> [SKIP][93] ([Intel XE#7358])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-10/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html

  * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
    - shard-bmg:          [SKIP][94] ([Intel XE#8589]) -> [SKIP][95] ([Intel XE#2252])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-9/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-bmg:          [SKIP][96] ([Intel XE#8589]) -> [FAIL][97] ([Intel XE#6707] / [Intel XE#7439])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][98] ([Intel XE#8589]) -> [SKIP][99] ([Intel XE#1508])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dsc@dsc-with-output-formats-bigjoiner:
    - shard-bmg:          [SKIP][100] ([Intel XE#8589]) -> [SKIP][101] ([Intel XE#8265])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][102] ([Intel XE#8589]) -> [SKIP][103] ([Intel XE#2311]) +11 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][104] ([Intel XE#8589]) -> [SKIP][105] ([Intel XE#4141]) +3 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt:
    - shard-bmg:          [SKIP][106] ([Intel XE#8589]) -> [SKIP][107] ([Intel XE#7061] / [Intel XE#7356])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render:
    - shard-bmg:          [SKIP][108] ([Intel XE#8589]) -> [SKIP][109] ([Intel XE#7061]) +1 other test skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-6/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-bmg:          [SKIP][110] ([Intel XE#8589]) -> [SKIP][111] ([Intel XE#2313]) +12 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
    - shard-bmg:          [SKIP][112] ([Intel XE#8589]) -> [SKIP][113] ([Intel XE#7399])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
    - shard-bmg:          [SKIP][114] ([Intel XE#8589]) -> [SKIP][115] ([Intel XE#7283])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html

  * igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
    - shard-bmg:          [SKIP][116] ([Intel XE#8589]) -> [SKIP][117] ([Intel XE#1489])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-7/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          [SKIP][118] ([Intel XE#8589]) -> [SKIP][119] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@kms_psr@psr-primary-page-flip.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][120] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][121] ([Intel XE#2426] / [Intel XE#5848])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
    - shard-bmg:          [SKIP][122] ([Intel XE#8589]) -> [SKIP][123] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm:
    - shard-bmg:          [SKIP][124] ([Intel XE#8589]) -> [SKIP][125] ([Intel XE#8374])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-1/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-priority:
    - shard-bmg:          [SKIP][126] ([Intel XE#8589]) -> [SKIP][127] ([Intel XE#8364]) +8 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-priority.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-1/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-priority.html

  * igt@xe_exec_reset@multi-queue-cat-error-on-secondary:
    - shard-bmg:          [SKIP][128] ([Intel XE#8589]) -> [SKIP][129] ([Intel XE#8369])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_exec_reset@multi-queue-cat-error-on-secondary.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-8/igt@xe_exec_reset@multi-queue-cat-error-on-secondary.html

  * igt@xe_pat@pat-sw-hw-compare:
    - shard-bmg:          [SKIP][130] ([Intel XE#8589]) -> [FAIL][131] ([Intel XE#7695])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_pat@pat-sw-hw-compare.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-7/igt@xe_pat@pat-sw-hw-compare.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-bmg:          [SKIP][132] ([Intel XE#8589]) -> [SKIP][133] ([Intel XE#2284] / [Intel XE#7370])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_pm@s3-d3cold-basic-exec.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-8/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pxp@pxp-optout:
    - shard-bmg:          [SKIP][134] ([Intel XE#8589]) -> [SKIP][135] ([Intel XE#4733] / [Intel XE#7417])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_pxp@pxp-optout.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@xe_pxp@pxp-optout.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-bmg:          [SKIP][136] ([Intel XE#8589]) -> [SKIP][137] ([Intel XE#944])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9070/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15720/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
  [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
  [Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
  [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
  [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
  [Intel XE#8589]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8589
  [Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_9070 -> IGTPW_15720
  * Linux: xe-5630-7ae51381a25c66d497ec65fda2f1c329cb6f618f -> xe-5631-58d59a40e2a041d3c159fab8bf5d5dc19d28da6c

  IGTPW_15720: 15720
  IGT_9070: 80b6e4c9b9cb853c63a9bcaa4784e0306d1f7fca @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5630-7ae51381a25c66d497ec65fda2f1c329cb6f618f: 7ae51381a25c66d497ec65fda2f1c329cb6f618f
  xe-5631-58d59a40e2a041d3c159fab8bf5d5dc19d28da6c: 58d59a40e2a041d3c159fab8bf5d5dc19d28da6c

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for Test new debug based configfs changes
  2026-08-21 19:23 [PATCH i-g-t 0/2] Test new debug based configfs changes Stuart Summers
                   ` (4 preceding siblings ...)
  2026-08-21 23:19 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-08-22  0:16 ` Patchwork
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-08-22  0:16 UTC (permalink / raw)
  To: Stuart Summers; +Cc: igt-dev

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

== Series Details ==

Series: Test new debug based configfs changes
URL   : https://patchwork.freedesktop.org/series/172602/
State : failure

== Summary ==

CI Bug Log - changes from IGT_9070_full -> IGTPW_15720_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-rkl:          NOTRUN -> [ABORT][1] +1 other test abort
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_flip@modeset-vs-vblank-race-interruptible@b-hdmi-a1:
    - shard-tglu-1:       NOTRUN -> [ABORT][2] +1 other test abort
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_flip@modeset-vs-vblank-race-interruptible@b-hdmi-a1.html

  * igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a1:
    - shard-tglu-1:       NOTRUN -> [DMESG-WARN][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@device_reset@cold-reset-bound:
    - shard-dg1:          NOTRUN -> [SKIP][4] ([i915#11078])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-16/igt@device_reset@cold-reset-bound.html
    - shard-tglu:         NOTRUN -> [SKIP][5] ([i915#11078])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-2/igt@device_reset@cold-reset-bound.html
    - shard-mtlp:         NOTRUN -> [SKIP][6] ([i915#11078])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-2/igt@device_reset@cold-reset-bound.html
    - shard-dg2:          NOTRUN -> [SKIP][7] ([i915#11078])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-8/igt@device_reset@cold-reset-bound.html
    - shard-rkl:          NOTRUN -> [SKIP][8] ([i915#11078])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@device_reset@cold-reset-bound.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-dg1:          NOTRUN -> [SKIP][9] ([i915#9323])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-19/igt@gem_ccs@block-multicopy-compressed.html
    - shard-tglu:         NOTRUN -> [SKIP][10] ([i915#9323])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html
    - shard-mtlp:         NOTRUN -> [SKIP][11] ([i915#9323])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-3/igt@gem_ccs@block-multicopy-compressed.html

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

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-tglu:         NOTRUN -> [SKIP][16] ([i915#13008])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@gem_ccs@large-ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          [PASS][17] -> [INCOMPLETE][18] ([i915#13356] / [i915#16348]) +1 other test incomplete
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg2-8/igt@gem_ccs@suspend-resume.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-4/igt@gem_ccs@suspend-resume.html
    - shard-rkl:          NOTRUN -> [SKIP][19] ([i915#9323]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@gem_ccs@suspend-resume.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-tglu:         NOTRUN -> [SKIP][20] ([i915#7697]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-10/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_ctx_persistence@engines-hostile:
    - shard-snb:          NOTRUN -> [SKIP][21] ([i915#1099]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-snb1/igt@gem_ctx_persistence@engines-hostile.html

  * igt@gem_eio@kms:
    - shard-dg1:          [PASS][22] -> [ABORT][23] ([i915#16837])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-13/igt@gem_eio@kms.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@gem_eio@kms.html

  * igt@gem_exec_balancer@noheartbeat:
    - shard-dg2:          NOTRUN -> [SKIP][24] ([i915#8555])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@gem_exec_balancer@noheartbeat.html
    - shard-dg1:          NOTRUN -> [SKIP][25] ([i915#8555])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-17/igt@gem_exec_balancer@noheartbeat.html
    - shard-mtlp:         NOTRUN -> [SKIP][26] ([i915#8555])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-5/igt@gem_exec_balancer@noheartbeat.html

  * igt@gem_exec_balancer@parallel:
    - shard-tglu:         NOTRUN -> [SKIP][27] ([i915#4525]) +3 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-2/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-rkl:          NOTRUN -> [SKIP][28] ([i915#4525])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_big@single:
    - shard-tglu:         [PASS][29] -> [FAIL][30] ([i915#15816])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-tglu-9/igt@gem_exec_big@single.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-2/igt@gem_exec_big@single.html

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

  * igt@gem_exec_fence@submit67:
    - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#4812])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-8/igt@gem_exec_fence@submit67.html
    - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#4812])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-16/igt@gem_exec_fence@submit67.html
    - shard-mtlp:         NOTRUN -> [SKIP][34] ([i915#4812])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-2/igt@gem_exec_fence@submit67.html

  * igt@gem_exec_flush@basic-wb-pro-default:
    - shard-dg2:          NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
    - shard-dg1:          NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-15/igt@gem_exec_flush@basic-wb-pro-default.html

  * igt@gem_exec_reloc@basic-cpu-noreloc:
    - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-noreloc.html
    - shard-rkl:          NOTRUN -> [SKIP][38] ([i915#3281]) +9 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-noreloc.html
    - shard-dg1:          NOTRUN -> [SKIP][39] ([i915#3281]) +3 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-wc-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][40] ([i915#3281]) +4 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-3/igt@gem_exec_reloc@basic-wc-noreloc.html

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

  * igt@gem_exec_suspend@basic-s0:
    - shard-rkl:          [PASS][42] -> [INCOMPLETE][43] ([i915#13356]) +1 other test incomplete
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-2/igt@gem_exec_suspend@basic-s0.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_fenced_exec_thrash@2-spare-fences:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#4860])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@gem_fenced_exec_thrash@2-spare-fences.html
    - shard-dg1:          NOTRUN -> [SKIP][45] ([i915#4860])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-19/igt@gem_fenced_exec_thrash@2-spare-fences.html
    - shard-mtlp:         NOTRUN -> [SKIP][46] ([i915#4860])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@gem_fenced_exec_thrash@2-spare-fences.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglu:         NOTRUN -> [SKIP][47] ([i915#2190])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-5/igt@gem_huc_copy@huc-copy.html
    - shard-glk:          NOTRUN -> [SKIP][48] ([i915#2190])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk5/igt@gem_huc_copy@huc-copy.html

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

  * igt@gem_lmem_swapping@heavy-random:
    - shard-glk:          NOTRUN -> [SKIP][50] ([i915#4613]) +4 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk9/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#12193])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][53] ([i915#4613]) +3 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][54] ([i915#4613])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

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

  * igt@gem_mmap@bad-size:
    - shard-mtlp:         NOTRUN -> [SKIP][56] ([i915#4083]) +2 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-7/igt@gem_mmap@bad-size.html

  * igt@gem_mmap_gtt@cpuset-big-copy-odd:
    - shard-dg2:          NOTRUN -> [SKIP][57] ([i915#4077]) +4 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
    - shard-dg1:          NOTRUN -> [SKIP][58] ([i915#4077]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#4077]) +3 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html

  * igt@gem_mmap_wc@bad-size:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#4083]) +2 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-7/igt@gem_mmap_wc@bad-size.html

  * igt@gem_mmap_wc@read:
    - shard-dg1:          NOTRUN -> [SKIP][61] ([i915#4083]) +3 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-13/igt@gem_mmap_wc@read.html

  * igt@gem_partial_pwrite_pread@write-display:
    - shard-dg2:          NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@gem_partial_pwrite_pread@write-display.html

  * igt@gem_partial_pwrite_pread@writes-after-reads:
    - shard-rkl:          NOTRUN -> [SKIP][63] ([i915#3282]) +6 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html
    - shard-dg1:          NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk10:        NOTRUN -> [WARN][65] ([i915#14702] / [i915#2658])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk10/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-tglu-1:       NOTRUN -> [SKIP][66] ([i915#13398])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_pxp@reject-modify-context-protection-off-3:
    - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#4270])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-3.html
    - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#4270])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-15/igt@gem_pxp@reject-modify-context-protection-off-3.html

  * igt@gem_readwrite@read-bad-handle:
    - shard-mtlp:         NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-2/igt@gem_readwrite@read-bad-handle.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-glk:          NOTRUN -> [SKIP][70] +530 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
    - shard-mtlp:         NOTRUN -> [SKIP][72] ([i915#8428])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-rkl:          NOTRUN -> [SKIP][73] ([i915#8411])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][74] ([i915#3297]) +3 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-dg2:          NOTRUN -> [SKIP][75] ([i915#3297])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@gem_userptr_blits@unsync-overlap.html
    - shard-dg1:          NOTRUN -> [SKIP][76] ([i915#3297])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@gem_userptr_blits@unsync-overlap.html
    - shard-tglu:         NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-7/igt@gem_userptr_blits@unsync-overlap.html
    - shard-mtlp:         NOTRUN -> [SKIP][78] ([i915#3297])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@gem_userptr_blits@unsync-overlap.html

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

  * igt@gem_workarounds@suspend-resume-context:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][80] ([i915#13356])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk10/igt@gem_workarounds@suspend-resume-context.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-rkl:          NOTRUN -> [SKIP][81] ([i915#2527]) +2 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-dg2:          NOTRUN -> [SKIP][82] ([i915#2856])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@gen9_exec_parse@batch-invalid-length.html
    - shard-mtlp:         NOTRUN -> [SKIP][83] ([i915#2856])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-5/igt@gen9_exec_parse@batch-invalid-length.html

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

  * igt@i915_drm_fdinfo@virtual-busy-all:
    - shard-mtlp:         NOTRUN -> [SKIP][85] ([i915#14118])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-2/igt@i915_drm_fdinfo@virtual-busy-all.html
    - shard-dg2:          NOTRUN -> [SKIP][86] ([i915#14118])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-6/igt@i915_drm_fdinfo@virtual-busy-all.html
    - shard-dg1:          NOTRUN -> [SKIP][87] ([i915#14118])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-all.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          NOTRUN -> [SKIP][88] ([i915#6412])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-tglu:         NOTRUN -> [SKIP][89] ([i915#8399])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-6/igt@i915_pm_freq_api@freq-reset.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-tglu:         NOTRUN -> [SKIP][90] ([i915#16080] / [i915#16166])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-tglu:         NOTRUN -> [WARN][91] ([i915#13790] / [i915#2681]) +1 other test warn
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-tglu-1:       NOTRUN -> [SKIP][92] ([i915#14498])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][93] ([i915#13356])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk1/igt@i915_pm_rpm@system-suspend.html

  * igt@i915_pm_sseu@full-enable:
    - shard-tglu:         NOTRUN -> [SKIP][94] ([i915#4387])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-8/igt@i915_pm_sseu@full-enable.html

  * igt@i915_query@test-query-geometry-subslices:
    - shard-tglu-1:       NOTRUN -> [SKIP][95] ([i915#5723])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
    - shard-dg1:          NOTRUN -> [SKIP][96] ([i915#5723])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-13/igt@i915_query@test-query-geometry-subslices.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-rkl:          [PASS][97] -> [INCOMPLETE][98] ([i915#4817])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-5/igt@i915_suspend@fence-restore-tiled2untiled.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@i915_suspend@sysfs-reader:
    - shard-glk:          NOTRUN -> [INCOMPLETE][99] ([i915#16182] / [i915#4817])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk8/igt@i915_suspend@sysfs-reader.html

  * igt@intel_hwmon@hwmon-read:
    - shard-tglu:         NOTRUN -> [SKIP][100] ([i915#7707])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-2/igt@intel_hwmon@hwmon-read.html

  * igt@intel_hwmon@hwmon-write:
    - shard-rkl:          NOTRUN -> [SKIP][101] ([i915#7707])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-rkl:          NOTRUN -> [SKIP][102] ([i915#12454] / [i915#12712])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-glk:          NOTRUN -> [FAIL][103] ([i915#14888]) +1 other test fail
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-mtlp:         NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-glk:          NOTRUN -> [SKIP][105] ([i915#1769])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-rkl:          NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [ABORT][107] ([i915#16837] / [i915#16844]) +1 other test abort
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html

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

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][109] -> [FAIL][110] ([i915#15662]) +1 other test fail
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-mtlp:         [PASS][111] -> [FAIL][112] ([i915#15733] / [i915#5138])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][114] ([i915#5286]) +3 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
    - shard-dg1:          NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5286]) +1 other test skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-tglu-1:       NOTRUN -> [SKIP][116] ([i915#5286]) +3 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-tglu:         NOTRUN -> [SKIP][117] ([i915#3828])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-10/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][118] ([i915#3828])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +3 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
    - shard-rkl:          NOTRUN -> [SKIP][120] ([i915#3638]) +2 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
    - shard-dg1:          NOTRUN -> [SKIP][121] ([i915#3638])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-19/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][122] ([i915#4538]) +1 other test skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
    - shard-mtlp:         NOTRUN -> [SKIP][123] +4 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][125] ([i915#14098] / [i915#6095]) +46 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][126] ([i915#6095]) +34 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc:
    - shard-mtlp:         NOTRUN -> [SKIP][127] ([i915#6095]) +19 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][128] ([i915#10307] / [i915#6095]) +52 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][129] ([i915#12313]) +2 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

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

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][131] ([i915#14098] / [i915#14544] / [i915#6095])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
    - shard-dg1:          NOTRUN -> [SKIP][132] ([i915#6095]) +200 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][133] ([i915#6095]) +3 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
    - shard-glk11:        NOTRUN -> [SKIP][134] +212 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][135] ([i915#6095]) +79 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][136] ([i915#12313])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][137] ([i915#12313])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][138] ([i915#12313])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][139] ([i915#6095]) +69 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][140] ([i915#13781]) +4 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html

  * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#13781]) +4 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html

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

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-dg2:          NOTRUN -> [SKIP][143]
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-6/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d:
    - shard-rkl:          NOTRUN -> [SKIP][144] ([i915#16471]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut1d.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4:
    - shard-mtlp:         NOTRUN -> [SKIP][145] ([i915#16464] / [i915#16471])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-3/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html
    - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#16471])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-5/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html
    - shard-dg1:          NOTRUN -> [SKIP][147] ([i915#16471])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-14/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4:
    - shard-tglu:         NOTRUN -> [SKIP][148] ([i915#16471]) +3 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-2/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-tglu-1:       NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +3 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_edid@vga-edid-read:
    - shard-dg2:          NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-5/igt@kms_chamelium_edid@vga-edid-read.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-rkl:          NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +8 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
    - shard-dg1:          NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +1 other test skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-fast.html
    - shard-tglu:         NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +7 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-fast.html
    - shard-mtlp:         NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +1 other test skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-tglu:         NOTRUN -> [SKIP][155] ([i915#15330] / [i915#3116] / [i915#3299])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][156] ([i915#15330]) +1 other test skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-dg1:          NOTRUN -> [SKIP][157] ([i915#15330])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-mtlp:         NOTRUN -> [SKIP][158] ([i915#15330])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-dg2:          NOTRUN -> [SKIP][159] ([i915#15330])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

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

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-rkl:          NOTRUN -> [SKIP][161] ([i915#15330] / [i915#3116])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
    - shard-tglu-1:       NOTRUN -> [SKIP][162] ([i915#15330])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html

  * igt@kms_content_protection@dp-mst-type-1-suspend-resume:
    - shard-tglu:         NOTRUN -> [SKIP][163] ([i915#15330]) +1 other test skip
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html

  * igt@kms_content_protection@srm:
    - shard-tglu:         NOTRUN -> [SKIP][164] ([i915#15865]) +1 other test skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@uevent:
    - shard-tglu-1:       NOTRUN -> [SKIP][165] ([i915#15865])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_content_protection@uevent.html

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

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-rkl:          NOTRUN -> [SKIP][167] ([i915#3555]) +2 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_crc@cursor-random-128x42:
    - shard-mtlp:         NOTRUN -> [SKIP][168] ([i915#8814]) +2 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-128x42.html

  * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [FAIL][169] ([i915#13566]) +3 other tests fail
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [FAIL][170] ([i915#13566]) +1 other test fail
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][171] ([i915#13566]) +2 other tests fail
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          NOTRUN -> [SKIP][172] ([i915#13049]) +2 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-rkl:          NOTRUN -> [SKIP][173] ([i915#13049]) +3 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-dg1:          NOTRUN -> [SKIP][174] ([i915#13049]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-19/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-tglu:         NOTRUN -> [SKIP][175] ([i915#13049]) +1 other test skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-rkl:          [PASS][176] -> [FAIL][177] ([i915#13566]) +2 other tests fail
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
    - shard-tglu:         [PASS][178] -> [FAIL][179] ([i915#13566]) +1 other test fail
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-mtlp:         NOTRUN -> [SKIP][180] ([i915#13049]) +2 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-512x170.html

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

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

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#4103])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-rkl:          NOTRUN -> [SKIP][184] ([i915#4103])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-dg1:          NOTRUN -> [SKIP][185] ([i915#4103])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-tglu:         NOTRUN -> [SKIP][186] ([i915#4103]) +1 other test skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-mtlp:         NOTRUN -> [SKIP][187] ([i915#16119] / [i915#4213])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][188] +104 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-dg2:          NOTRUN -> [SKIP][189] ([i915#13046] / [i915#5354]) +1 other test skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
    - shard-mtlp:         NOTRUN -> [SKIP][190] ([i915#9809]) +1 other test skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@nonblocking-modeset-vs-cursor-atomic:
    - shard-dg1:          [PASS][191] -> [DMESG-WARN][192] ([i915#4423])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-19/igt@kms_cursor_legacy@nonblocking-modeset-vs-cursor-atomic.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@kms_cursor_legacy@nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-tglu-1:       NOTRUN -> [SKIP][193] ([i915#13691])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-tglu:         NOTRUN -> [SKIP][194] ([i915#1769] / [i915#3555] / [i915#3804])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][195] ([i915#3804])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html

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

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-rkl:          NOTRUN -> [SKIP][197] ([i915#13748])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-8/igt@kms_dp_link_training@uhbr-mst.html
    - shard-tglu:         NOTRUN -> [SKIP][198] ([i915#13748])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-3/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dsc@dsc-basic-ultrajoiner:
    - shard-rkl:          NOTRUN -> [SKIP][199] ([i915#16361]) +4 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_dsc@dsc-basic-ultrajoiner.html
    - shard-dg1:          NOTRUN -> [SKIP][200] ([i915#16361])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-13/igt@kms_dsc@dsc-basic-ultrajoiner.html
    - shard-tglu:         NOTRUN -> [SKIP][201] ([i915#16361]) +5 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-3/igt@kms_dsc@dsc-basic-ultrajoiner.html
    - shard-mtlp:         NOTRUN -> [SKIP][202] ([i915#16361])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@kms_dsc@dsc-basic-ultrajoiner.html
    - shard-dg2:          NOTRUN -> [SKIP][203] ([i915#16361])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-4/igt@kms_dsc@dsc-basic-ultrajoiner.html

  * igt@kms_dsc@dsc-with-formats-bigjoiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][204] ([i915#16361])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_dsc@dsc-with-formats-bigjoiner.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][205] ([i915#9878])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk10/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][206] ([i915#16680])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-rkl:          NOTRUN -> [SKIP][207] ([i915#16084])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-2x:
    - shard-tglu:         NOTRUN -> [SKIP][208] ([i915#16081])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-8/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-3x:
    - shard-tglu-1:       NOTRUN -> [SKIP][209] ([i915#16081])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][210] ([i915#9934])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-rkl:          NOTRUN -> [SKIP][211] ([i915#9934]) +3 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
    - shard-tglu:         NOTRUN -> [SKIP][212] ([i915#3637] / [i915#9934]) +1 other test skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@flip-vs-fences-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#8381])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-7/igt@kms_flip@flip-vs-fences-interruptible.html
    - shard-dg1:          NOTRUN -> [SKIP][214] ([i915#8381])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-15/igt@kms_flip@flip-vs-fences-interruptible.html
    - shard-mtlp:         NOTRUN -> [SKIP][215] ([i915#8381])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html

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

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

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

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][219] ([i915#15643]) +4 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][220] ([i915#15643]) +2 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][221] ([i915#15643])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][222] ([i915#15643]) +3 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][223] ([i915#15643])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][224] ([i915#15643])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][226] ([i915#1825]) +2 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-tglu-1:       NOTRUN -> [SKIP][227] ([i915#5439])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-render:
    - shard-mtlp:         NOTRUN -> [SKIP][228] ([i915#15989]) +13 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][229] ([i915#15989]) +17 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          [PASS][230] -> [SKIP][231] ([i915#15989]) +16 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-pgflip-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][232] ([i915#15991]) +11 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][233] ([i915#15989]) +6 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-stridechange:
    - shard-tglu-1:       NOTRUN -> [SKIP][234] ([i915#15989]) +9 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html

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

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

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

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-tglu:         NOTRUN -> [SKIP][238] ([i915#5439])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][239] ([i915#15102]) +11 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][240] ([i915#14544] / [i915#15102]) +3 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][241] ([i915#15991]) +10 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-tglu:         NOTRUN -> [SKIP][242] ([i915#15989]) +22 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-rkl:          NOTRUN -> [SKIP][243] ([i915#14544]) +3 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
    - shard-glk:          [PASS][244] -> [SKIP][245] +1 other test skip
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk3/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@hdr-modesetfrombusy:
    - shard-dg1:          NOTRUN -> [SKIP][246] ([i915#15989]) +6 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@hdr-suspend:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][247] ([i915#16056] / [i915#16593])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk11/igt@kms_frontbuffer_tracking@hdr-suspend.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-rkl:          NOTRUN -> [SKIP][248] ([i915#9766])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
    - shard-dg1:          NOTRUN -> [SKIP][249] ([i915#9766])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
    - shard-tglu:         NOTRUN -> [SKIP][250] ([i915#9766])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][251] ([i915#15990] / [i915#8708]) +1 other test skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
    - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#15990] / [i915#8708]) +1 other test skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
    - shard-dg1:          NOTRUN -> [SKIP][253] ([i915#15990] / [i915#8708]) +1 other test skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][254] ([i915#15991] / [i915#5354]) +8 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][255] ([i915#15991] / [i915#1825]) +10 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][256] +25 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-tglu-1:       NOTRUN -> [SKIP][257] ([i915#15102]) +16 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt:
    - shard-tglu:         NOTRUN -> [SKIP][258] ([i915#15102]) +53 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-3/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][259] ([i915#15990]) +2 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][260] ([i915#15990]) +2 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-12/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][261] +47 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][262] ([i915#15990]) +1 other test skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-5/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][263] ([i915#15102]) +11 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][264] ([i915#15436])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          NOTRUN -> [SKIP][265] ([i915#16518] / [i915#3555] / [i915#8228])
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-4/igt@kms_hdr@static-swap.html
    - shard-rkl:          NOTRUN -> [SKIP][266] ([i915#16644] / [i915#3555] / [i915#8228]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_hdr@static-swap.html
    - shard-dg1:          NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-13/igt@kms_hdr@static-swap.html
    - shard-mtlp:         NOTRUN -> [SKIP][268] ([i915#12713] / [i915#16490] / [i915#3555] / [i915#8228])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@kms_hdr@static-swap.html

  * igt@kms_hdr@static-toggle:
    - shard-rkl:          [PASS][269] -> [SKIP][270] ([i915#16644] / [i915#3555] / [i915#8228])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_hdr@static-toggle.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-8/igt@kms_hdr@static-toggle.html
    - shard-tglu:         NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8228]) +1 other test skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_hdr@static-toggle.html

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

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][273] ([i915#15459])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2:          NOTRUN -> [SKIP][274] ([i915#15815])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-tglu-1:       NOTRUN -> [SKIP][275] ([i915#15815])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-tglu:         NOTRUN -> [SKIP][276] ([i915#6301])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-5/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][277] ([i915#12756] / [i915#13409] / [i915#13476] / [i915#16789]) +1 other test incomplete
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_pipe_stress@stress-xrgb8888-4tiled:
    - shard-tglu:         NOTRUN -> [SKIP][278] ([i915#14712])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-7/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html

  * igt@kms_pipe_stress@stress-xrgb8888-xtiled:
    - shard-glk:          NOTRUN -> [DMESG-FAIL][279] ([i915#118])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk9/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
    - shard-rkl:          NOTRUN -> [SKIP][280] ([i915#15709]) +2 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
    - shard-dg1:          NOTRUN -> [SKIP][281] ([i915#15709]) +1 other test skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
    - shard-mtlp:         NOTRUN -> [SKIP][282] ([i915#15709])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
    - shard-tglu-1:       NOTRUN -> [SKIP][283] ([i915#15709]) +2 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html

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

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
    - shard-tglu:         NOTRUN -> [SKIP][285] ([i915#15709]) +6 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-10/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
    - shard-glk:          NOTRUN -> [INCOMPLETE][286] ([i915#13026]) +1 other test incomplete
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html

  * igt@kms_plane_alpha_blend@alpha-basic:
    - shard-glk:          NOTRUN -> [FAIL][287] ([i915#12178])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][288] ([i915#7862]) +1 other test fail
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-dg2:          NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8821])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-rkl:          NOTRUN -> [SKIP][290] ([i915#13958])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-none.html
    - shard-dg1:          NOTRUN -> [SKIP][291] ([i915#13958])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-13/igt@kms_plane_multiple@2x-tiling-none.html
    - shard-tglu:         NOTRUN -> [SKIP][292] ([i915#13958])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-none.html
    - shard-mtlp:         NOTRUN -> [SKIP][293] ([i915#13958])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-tglu-1:       NOTRUN -> [SKIP][294] ([i915#14259])
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-tglu:         NOTRUN -> [SKIP][295] ([i915#14259])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-10/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-mtlp:         NOTRUN -> [SKIP][296] ([i915#15887] / [i915#9809])
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
    - shard-dg2:          NOTRUN -> [SKIP][297] ([i915#13046] / [i915#5354] / [i915#9423])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-tglu-1:       NOTRUN -> [SKIP][298] ([i915#6953])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-mtlp:         NOTRUN -> [SKIP][299] ([i915#15329] / [i915#6953])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
    - shard-mtlp:         NOTRUN -> [SKIP][300] ([i915#15329]) +3 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-rkl:          NOTRUN -> [SKIP][301] ([i915#12343] / [i915#5354]) +1 other test skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_dc@dc5-pageflip-negative:
    - shard-rkl:          NOTRUN -> [SKIP][302] ([i915#14544] / [i915#9685])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_pm_dc@dc5-pageflip-negative.html
    - shard-tglu:         NOTRUN -> [SKIP][303] ([i915#9685])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-10/igt@kms_pm_dc@dc5-pageflip-negative.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          [PASS][304] -> [SKIP][305] ([i915#9340])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-dg1:          [PASS][306] -> [SKIP][307] ([i915#15073]) +2 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg2:          NOTRUN -> [SKIP][308] ([i915#15073])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
    - shard-dg1:          NOTRUN -> [SKIP][309] ([i915#15073])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-rkl:          [PASS][310] -> [SKIP][311] ([i915#15073]) +1 other test skip
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
    - shard-tglu-1:       NOTRUN -> [SKIP][312] ([i915#15073])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-dg2:          [PASS][313] -> [INCOMPLETE][314] ([i915#14419])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2:          NOTRUN -> [SKIP][315] ([i915#11520]) +1 other test skip
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-snb:          NOTRUN -> [SKIP][316] ([i915#11520]) +2 other tests skip
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-snb1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-dg1:          NOTRUN -> [SKIP][317] ([i915#11520]) +2 other tests skip
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-14/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

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

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][319] ([i915#11520]) +10 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk9/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-glk11:        NOTRUN -> [SKIP][320] ([i915#11520]) +5 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
    - shard-mtlp:         NOTRUN -> [SKIP][321] ([i915#12316]) +2 other tests skip
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-rkl:          NOTRUN -> [SKIP][322] ([i915#11520]) +11 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-tglu-1:       NOTRUN -> [SKIP][323] ([i915#11520]) +2 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-glk10:        NOTRUN -> [SKIP][324] ([i915#11520]) +2 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk10/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2:          NOTRUN -> [SKIP][325] ([i915#9683])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-6/igt@kms_psr2_su@page_flip-nv12.html
    - shard-tglu-1:       NOTRUN -> [SKIP][326] ([i915#9683])
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-rkl:          NOTRUN -> [SKIP][327] ([i915#9683])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html
    - shard-tglu:         NOTRUN -> [SKIP][328] ([i915#9683])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-primary-render:
    - shard-glk10:        NOTRUN -> [SKIP][329] +57 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk10/igt@kms_psr@fbc-pr-primary-render.html

  * igt@kms_psr@fbc-psr2-basic:
    - shard-dg1:          NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +6 other tests skip
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-13/igt@kms_psr@fbc-psr2-basic.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
    - shard-mtlp:         NOTRUN -> [SKIP][331] ([i915#9688]) +6 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html

  * igt@kms_psr@pr-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][332] ([i915#9732]) +20 other tests skip
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-2/igt@kms_psr@pr-dpms.html

  * igt@kms_psr@psr-primary-mmap-gtt@edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][333] ([i915#4077] / [i915#9688]) +1 other test skip
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html

  * igt@kms_psr@psr-sprite-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][334] ([i915#9732]) +7 other tests skip
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html

  * igt@kms_psr@psr2-basic:
    - shard-dg2:          NOTRUN -> [SKIP][335] ([i915#1072] / [i915#9732]) +5 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-8/igt@kms_psr@psr2-basic.html

  * igt@kms_psr@psr2-cursor-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][336] ([i915#1072] / [i915#9732]) +22 other tests skip
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-dg1:          NOTRUN -> [SKIP][337] ([i915#15949])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-15/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-tglu:         NOTRUN -> [SKIP][338] ([i915#15949])
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-dg2:          NOTRUN -> [SKIP][339] ([i915#15949])
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-snb:          NOTRUN -> [SKIP][340] +113 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-snb1/igt@kms_rotation_crc@bad-pixel-format.html
    - shard-mtlp:         NOTRUN -> [SKIP][341] ([i915#12755] / [i915#15867])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-3/igt@kms_rotation_crc@bad-pixel-format.html
    - shard-dg2:          NOTRUN -> [SKIP][342] ([i915#12755] / [i915#15867])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-5/igt@kms_rotation_crc@bad-pixel-format.html

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

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-rkl:          NOTRUN -> [SKIP][344] ([i915#5289])
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_selftest@drm_framebuffer:
    - shard-rkl:          NOTRUN -> [ABORT][345] ([i915#13179]) +1 other test abort
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@kms_selftest@drm_framebuffer.html
    - shard-tglu-1:       NOTRUN -> [ABORT][346] ([i915#13179]) +1 other test abort
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-tglu-1:       NOTRUN -> [SKIP][347] ([i915#3555]) +1 other test skip
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][348] ([i915#12276]) +3 other tests incomplete
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_vrr@flip-basic:
    - shard-tglu:         NOTRUN -> [SKIP][349] ([i915#3555]) +4 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-9/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flipline:
    - shard-mtlp:         NOTRUN -> [SKIP][350] ([i915#3555] / [i915#8808])
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-2/igt@kms_vrr@flipline.html
    - shard-dg2:          NOTRUN -> [SKIP][351] ([i915#15243] / [i915#3555])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-8/igt@kms_vrr@flipline.html
    - shard-rkl:          NOTRUN -> [SKIP][352] ([i915#15243] / [i915#3555])
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_vrr@flipline.html
    - shard-dg1:          NOTRUN -> [SKIP][353] ([i915#3555])
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-16/igt@kms_vrr@flipline.html

  * igt@kms_vrr@lobf:
    - shard-tglu:         NOTRUN -> [SKIP][354] ([i915#11920])
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-5/igt@kms_vrr@lobf.html

  * igt@kms_vrr@max-min:
    - shard-tglu:         NOTRUN -> [SKIP][355] ([i915#9906])
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_vrr@max-min.html

  * igt@kms_vrr@negative-basic:
    - shard-tglu-1:       NOTRUN -> [SKIP][356] ([i915#3555] / [i915#9906])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-1/igt@kms_vrr@negative-basic.html

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

  * igt@perf_pmu@module-unload:
    - shard-dg2:          NOTRUN -> [ABORT][358] ([i915#13029] / [i915#15778])
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-1/igt@perf_pmu@module-unload.html

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

  * igt@perf_pmu@render-node-busy-idle:
    - shard-mtlp:         [PASS][360] -> [FAIL][361] ([i915#4349]) +5 other tests fail
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-mtlp-2/igt@perf_pmu@render-node-busy-idle.html
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle.html

  * igt@perf_pmu@render-node-busy-idle@vcs1:
    - shard-dg1:          [PASS][362] -> [FAIL][363] ([i915#4349]) +3 other tests fail
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-15/igt@perf_pmu@render-node-busy-idle@vcs1.html
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vcs1.html

  * igt@prime_vgem@basic-fence-mmap:
    - shard-dg2:          NOTRUN -> [SKIP][364] ([i915#3708] / [i915#4077])
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@fence-read-hang:
    - shard-rkl:          NOTRUN -> [SKIP][365] ([i915#3708])
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@prime_vgem@fence-read-hang.html

  * igt@prime_vgem@fence-write-hang:
    - shard-mtlp:         NOTRUN -> [SKIP][366] ([i915#3708])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-7/igt@prime_vgem@fence-write-hang.html
    - shard-dg2:          NOTRUN -> [SKIP][367] ([i915#3708])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-7/igt@prime_vgem@fence-write-hang.html
    - shard-rkl:          NOTRUN -> [SKIP][368] ([i915#14544] / [i915#3708])
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@prime_vgem@fence-write-hang.html
    - shard-dg1:          NOTRUN -> [SKIP][369] ([i915#3708])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-17/igt@prime_vgem@fence-write-hang.html

  
#### Possible fixes ####

  * igt@gem_create@create-clear@smem0:
    - shard-mtlp:         [INCOMPLETE][370] -> [PASS][371] +1 other test pass
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-mtlp-2/igt@gem_create@create-clear@smem0.html
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-3/igt@gem_create@create-clear@smem0.html

  * igt@gem_eio@kms:
    - shard-rkl:          [ABORT][372] ([i915#13363] / [i915#16837]) -> [PASS][373]
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-5/igt@gem_eio@kms.html
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-1/igt@gem_eio@kms.html

  * igt@gem_workarounds@suspend-resume:
    - shard-glk:          [INCOMPLETE][374] ([i915#13356] / [i915#14586]) -> [PASS][375]
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-glk3/igt@gem_workarounds@suspend-resume.html
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk3/igt@gem_workarounds@suspend-resume.html

  * igt@i915_module_load@reload-no-display:
    - shard-dg1:          [DMESG-WARN][376] ([i915#13029] / [i915#14545]) -> [PASS][377]
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-17/igt@i915_module_load@reload-no-display.html
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-13/igt@i915_module_load@reload-no-display.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-tglu:         [FAIL][378] ([i915#16397]) -> [PASS][379] +1 other test pass
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-tglu-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-10/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1:
    - shard-tglu:         [ABORT][380] ([i915#16837] / [i915#16844]) -> [PASS][381] +1 other test pass
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-rkl:          [INCOMPLETE][382] ([i915#12358] / [i915#14152]) -> [PASS][383]
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend.html
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-8/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-dg1:          [DMESG-WARN][384] ([i915#4423]) -> [PASS][385] +3 other tests pass
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-12/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-19/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-rkl:          [INCOMPLETE][386] ([i915#16276] / [i915#6113]) -> [PASS][387] +1 other test pass
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][388] ([i915#15989]) -> [PASS][389] +8 other tests pass
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-onoff:
    - shard-glk:          [SKIP][390] -> [PASS][391] +2 other tests pass
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-glk9/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-onoff.html
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg2:          [SKIP][392] ([i915#15073]) -> [PASS][393]
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@fences-dpms:
    - shard-glk:          [DMESG-WARN][394] ([i915#118]) -> [PASS][395]
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-glk8/igt@kms_pm_rpm@fences-dpms.html
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk9/igt@kms_pm_rpm@fences-dpms.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-rkl:          [SKIP][396] ([i915#15073]) -> [PASS][397] +2 other tests pass
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@perf_pmu@all-busy-check-all:
    - shard-dg2:          [FAIL][398] ([i915#15453]) -> [PASS][399]
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg2-6/igt@perf_pmu@all-busy-check-all.html
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg2-8/igt@perf_pmu@all-busy-check-all.html
    - shard-dg1:          [FAIL][400] -> [PASS][401]
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-14/igt@perf_pmu@all-busy-check-all.html
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-15/igt@perf_pmu@all-busy-check-all.html
    - shard-mtlp:         [FAIL][402] ([i915#15453]) -> [PASS][403]
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-mtlp-2/igt@perf_pmu@all-busy-check-all.html
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-mtlp-3/igt@perf_pmu@all-busy-check-all.html

  
#### Warnings ####

  * igt@gem_bad_reloc@negative-reloc-lut:
    - shard-rkl:          [SKIP][404] ([i915#3281]) -> [SKIP][405] ([i915#14544] / [i915#3281]) +1 other test skip
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-1/igt@gem_bad_reloc@negative-reloc-lut.html
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-rkl:          [SKIP][406] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][407] ([i915#3555] / [i915#9323]) +1 other test skip
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-rkl:          [SKIP][408] ([i915#9323]) -> [SKIP][409] ([i915#14544] / [i915#9323])
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_eio@kms:
    - shard-tglu:         [ABORT][410] ([i915#13363] / [i915#16837]) -> [ABORT][411] ([i915#16837])
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-tglu-8/igt@gem_eio@kms.html
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-8/igt@gem_eio@kms.html

  * igt@gem_exec_balancer@parallel-contexts:
    - shard-rkl:          [SKIP][412] ([i915#4525]) -> [SKIP][413] ([i915#14544] / [i915#4525])
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html

  * igt@gem_exec_reloc@basic-wc:
    - shard-rkl:          [SKIP][414] ([i915#14544] / [i915#3281]) -> [SKIP][415] ([i915#3281]) +2 other tests skip
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@gem_exec_reloc@basic-wc.html

  * igt@gem_exec_suspend@basic-s3:
    - shard-rkl:          [INCOMPLETE][416] ([i915#13356]) -> [ABORT][417] ([i915#15131] / [i915#15542]) +1 other test abort
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-1/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_huc_copy@huc-copy:
    - shard-rkl:          [SKIP][418] ([i915#14544] / [i915#2190]) -> [SKIP][419] ([i915#2190])
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@heavy-random:
    - shard-rkl:          [SKIP][420] ([i915#14544] / [i915#4613]) -> [SKIP][421] ([i915#4613])
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-rkl:          [SKIP][422] ([i915#4613]) -> [SKIP][423] ([i915#14544] / [i915#4613])
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify.html
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_partial_pwrite_pread@reads:
    - shard-rkl:          [SKIP][424] ([i915#3282]) -> [SKIP][425] ([i915#14544] / [i915#3282])
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-7/igt@gem_partial_pwrite_pread@reads.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html

  * igt@gem_readwrite@new-obj:
    - shard-rkl:          [SKIP][426] ([i915#14544] / [i915#3282]) -> [SKIP][427] ([i915#3282]) +1 other test skip
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@gem_readwrite@new-obj.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@gem_readwrite@new-obj.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-rkl:          [SKIP][428] ([i915#3297]) -> [SKIP][429] ([i915#14544] / [i915#3297])
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-rkl:          [SKIP][430] ([i915#2527]) -> [SKIP][431] ([i915#14544] / [i915#2527])
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-4/igt@gen9_exec_parse@bb-start-out.html
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-rkl:          [SKIP][432] ([i915#14544] / [i915#2527]) -> [SKIP][433] ([i915#2527])
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-rkl:          [SKIP][434] ([i915#14498] / [i915#14544]) -> [SKIP][435] ([i915#14498])
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_power@sanity:
    - shard-rkl:          [SKIP][436] ([i915#14544] / [i915#7984]) -> [SKIP][437] ([i915#7984])
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@i915_power@sanity.html
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-1/igt@i915_power@sanity.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-dg1:          [SKIP][438] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][439] ([i915#4538] / [i915#5286])
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
    - shard-rkl:          [SKIP][440] ([i915#14544] / [i915#5286]) -> [SKIP][441] ([i915#5286]) +2 other tests skip
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-rkl:          [SKIP][442] ([i915#5286]) -> [SKIP][443] ([i915#14544] / [i915#5286]) +1 other test skip
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-rkl:          [SKIP][444] ([i915#14544] / [i915#3638]) -> [SKIP][445] ([i915#3638]) +1 other test skip
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][446] ([i915#14544] / [i915#6095]) -> [SKIP][447] ([i915#6095]) +3 other tests skip
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-glk:          [INCOMPLETE][448] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][449] ([i915#15582]) +1 other test incomplete
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
    - shard-dg1:          [SKIP][450] ([i915#4423] / [i915#6095]) -> [SKIP][451] ([i915#6095]) +1 other test skip
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][452] ([i915#12313] / [i915#14544]) -> [SKIP][453] ([i915#12313]) +1 other test skip
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
    - shard-rkl:          [SKIP][454] ([i915#14098] / [i915#6095]) -> [SKIP][455] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][456] ([i915#6095]) -> [SKIP][457] ([i915#14544] / [i915#6095]) +3 other tests skip
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][458] ([i915#12313]) -> [SKIP][459] ([i915#12313] / [i915#14544])
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
    - shard-rkl:          [SKIP][460] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][461] ([i915#14098] / [i915#6095]) +4 other tests skip
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-rkl:          [SKIP][462] ([i915#11151] / [i915#7828]) -> [SKIP][463] ([i915#11151] / [i915#14544] / [i915#7828])
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
    - shard-rkl:          [SKIP][464] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][465] ([i915#11151] / [i915#7828]) +1 other test skip
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html

  * igt@kms_content_protection@atomic:
    - shard-rkl:          [SKIP][466] ([i915#15865]) -> [SKIP][467] ([i915#14544] / [i915#15865]) +1 other test skip
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-8/igt@kms_content_protection@atomic.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_content_protection@atomic.html

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

  * igt@kms_content_protection@suspend-resume:
    - shard-rkl:          [SKIP][470] ([i915#14544] / [i915#15865]) -> [SKIP][471] ([i915#15865])
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-8/igt@kms_content_protection@suspend-resume.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-rkl:          [SKIP][472] ([i915#13049] / [i915#14544]) -> [SKIP][473] ([i915#13049])
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-rkl:          [SKIP][474] ([i915#14544] / [i915#3555]) -> [SKIP][475] ([i915#3555]) +1 other test skip
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_cursor_crc@cursor-random-max-size.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_cursor_crc@cursor-random-max-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-dg1:          [SKIP][476] ([i915#4423]) -> [SKIP][477] +2 other tests skip
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-12/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-13/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-rkl:          [SKIP][478] ([i915#14544] / [i915#3555] / [i915#3804]) -> [SKIP][479] ([i915#3555] / [i915#3804])
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][480] ([i915#14544] / [i915#3804]) -> [SKIP][481] ([i915#3804])
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-rkl:          [SKIP][482] ([i915#16867]) -> [SKIP][483] ([i915#14544] / [i915#16867])
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-rkl:          [SKIP][484] ([i915#13707] / [i915#14544]) -> [SKIP][485] ([i915#13707])
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
    - shard-rkl:          [SKIP][486] ([i915#16361]) -> [SKIP][487] ([i915#14544] / [i915#16361]) +1 other test skip
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html

  * igt@kms_feature_discovery@display-2x:
    - shard-rkl:          [SKIP][488] ([i915#14544] / [i915#16081]) -> [SKIP][489] ([i915#16081])
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@dsc:
    - shard-rkl:          [SKIP][490] ([i915#14544] / [i915#16600]) -> [SKIP][491] ([i915#16600])
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_feature_discovery@dsc.html
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_feature_discovery@dsc.html

  * igt@kms_feature_discovery@vrr:
    - shard-rkl:          [SKIP][492] ([i915#16600]) -> [SKIP][493] ([i915#14544] / [i915#16600])
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-7/igt@kms_feature_discovery@vrr.html
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_feature_discovery@vrr.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-rkl:          [SKIP][494] ([i915#14544] / [i915#9934]) -> [SKIP][495] ([i915#9934]) +3 other tests skip
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-modeset:
    - shard-dg1:          [SKIP][496] ([i915#4423] / [i915#9934]) -> [SKIP][497] ([i915#9934]) +1 other test skip
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-12/igt@kms_flip@2x-flip-vs-modeset.html
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@kms_flip@2x-flip-vs-modeset.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk:          [INCOMPLETE][498] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][499] ([i915#12745] / [i915#4839])
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-rkl:          [SKIP][500] ([i915#15643]) -> [SKIP][501] ([i915#14544] / [i915#15643])
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
    - shard-rkl:          [SKIP][502] ([i915#14544] / [i915#15643]) -> [SKIP][503] ([i915#15643])
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
    - shard-rkl:          [SKIP][504] -> [SKIP][505] ([i915#14544]) +20 other tests skip
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][506] ([i915#1825]) -> [SKIP][507] ([i915#14544] / [i915#1825]) +2 other tests skip
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
    - shard-dg1:          [SKIP][508] ([i915#15990] / [i915#4423] / [i915#8708]) -> [SKIP][509] ([i915#15990] / [i915#8708])
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt:
    - shard-rkl:          [SKIP][510] ([i915#14544]) -> [SKIP][511] +24 other tests skip
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
    - shard-rkl:          [SKIP][512] ([i915#14544] / [i915#5439]) -> [SKIP][513] ([i915#5439])
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange:
    - shard-dg1:          [SKIP][514] ([i915#15102]) -> [SKIP][515] ([i915#15102] / [i915#4423])
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange.html
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange.html

  * igt@kms_frontbuffer_tracking@hdr-suspend:
    - shard-rkl:          [ABORT][516] ([i915#15132]) -> [SKIP][517] ([i915#15989])
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-1/igt@kms_frontbuffer_tracking@hdr-suspend.html
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_frontbuffer_tracking@hdr-suspend.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
    - shard-rkl:          [SKIP][518] ([i915#14544] / [i915#15102]) -> [SKIP][519] ([i915#15102]) +17 other tests skip
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][520] ([i915#14544] / [i915#1825]) -> [SKIP][521] ([i915#1825]) +3 other tests skip
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
    - shard-rkl:          [SKIP][522] ([i915#15102]) -> [SKIP][523] ([i915#14544] / [i915#15102]) +7 other tests skip
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-dg1:          [SKIP][524] ([i915#15990] / [i915#4423]) -> [SKIP][525] ([i915#15990]) +1 other test skip
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-12/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-12/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-rkl:          [SKIP][526] ([i915#16644] / [i915#3555] / [i915#8228]) -> [INCOMPLETE][527] ([i915#15436])
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-8/igt@kms_hdr@bpc-switch-suspend.html
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-rkl:          [SKIP][528] ([i915#14544] / [i915#15458]) -> [SKIP][529] ([i915#15458])
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
    - shard-rkl:          [SKIP][530] ([i915#14544] / [i915#15709]) -> [SKIP][531] ([i915#15709]) +1 other test skip
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html

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

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-rkl:          [SKIP][534] ([i915#13958]) -> [SKIP][535] ([i915#13958] / [i915#14544])
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-y.html
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
    - shard-tglu:         [ABORT][536] -> [SKIP][537] ([i915#15329]) +1 other test skip
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-rkl:          [SKIP][538] ([i915#14544] / [i915#15329]) -> [SKIP][539] ([i915#15329]) +3 other tests skip
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][540] ([i915#3828]) -> [SKIP][541] ([i915#9340])
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-dg1:          [SKIP][542] ([i915#15073] / [i915#4423]) -> [SKIP][543] ([i915#15073])
   [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-dg1-12/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-dg1-16/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_prime@basic-modeset-hybrid:
    - shard-rkl:          [SKIP][544] ([i915#6524]) -> [SKIP][545] ([i915#14544] / [i915#6524])
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html

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

  * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
    - shard-rkl:          [SKIP][548] ([i915#11520]) -> [SKIP][549] ([i915#11520] / [i915#14544])
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-3/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-rkl:          [SKIP][550] ([i915#9683]) -> [SKIP][551] ([i915#14544] / [i915#9683])
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-psr-primary-blt:
    - shard-rkl:          [SKIP][552] ([i915#1072] / [i915#9732]) -> [SKIP][553] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-8/igt@kms_psr@fbc-psr-primary-blt.html
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@kms_psr@fbc-psr-primary-blt.html

  * igt@kms_psr@psr2-cursor-blt:
    - shard-rkl:          [SKIP][554] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][555] ([i915#1072] / [i915#9732]) +5 other tests skip
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-5/igt@kms_psr@psr2-cursor-blt.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-rkl:          [SKIP][556] ([i915#14544] / [i915#5289]) -> [SKIP][557] ([i915#5289])
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
   [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_vrr@lobf:
    - shard-rkl:          [SKIP][558] ([i915#11920] / [i915#14544]) -> [SKIP][559] ([i915#11920])
   [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-6/igt@kms_vrr@lobf.html
   [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-7/igt@kms_vrr@lobf.html

  * igt@perf@per-context-mode-unprivileged:
    - shard-rkl:          [SKIP][560] ([i915#2435]) -> [SKIP][561] ([i915#14544] / [i915#2435])
   [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9070/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html
   [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15720/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html

  
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
  [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
  [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
  [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
  [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
  [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
  [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
  [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
  [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
  [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
  [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
  [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
  [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
  [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
  [i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
  [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
  [i915#15887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15887
  [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
  [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
  [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
  [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
  [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
  [i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080
  [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
  [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
  [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119
  [i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166
  [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
  [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276
  [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
  [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
  [i915#16397]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16397
  [i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
  [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
  [i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490
  [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518
  [i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593
  [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600
  [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644
  [i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680
  [i915#16789]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16789
  [i915#16837]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16837
  [i915#16844]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16844
  [i915#16867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16867
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
  [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
  [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
  [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * CI: CI-20190529 -> None
  * IGT: IGT_9070 -> IGTPW_15720

  CI-20190529: 20190529
  CI_DRM_19030: 58d59a40e2a041d3c159fab8bf5d5dc19d28da6c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15720: 15720
  IGT_9070: 80b6e4c9b9cb853c63a9bcaa4784e0306d1f7fca @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

end of thread, other threads:[~2026-08-22  0:16 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-21 19:23 [PATCH i-g-t 0/2] Test new debug based configfs changes Stuart Summers
2026-08-21 19:23 ` [PATCH i-g-t 1/2] tests/intel/xe_configfs: Use the new debug configfs group Stuart Summers
2026-08-21 19:23 ` [PATCH i-g-t 2/2] tests/intel/xe_configfs: Add coverage for GuC log configfs entries Stuart Summers
2026-08-21 21:11 ` ✓ Xe.CI.BAT: success for Test new debug based configfs changes Patchwork
2026-08-21 21:26 ` ✓ i915.CI.BAT: " Patchwork
2026-08-21 23:19 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-08-22  0:16 ` ✗ i915.CI.Full: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.