public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/2] tests/kms_colorspace: Add Colorspace connector property test
@ 2026-04-27 10:55 Swati Sharma
  2026-04-27 10:55 ` [PATCH i-g-t 1/2] lib/igt_kms: Add Colorspace connector property support Swati Sharma
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Swati Sharma @ 2026-04-27 10:55 UTC (permalink / raw)
  To: igt-dev; +Cc: Swati Sharma

Add a new IGT test (kms_colorspace) for the DRM Colorspace connector
property. This is a basic sanity validation suite — it does NOT perform
pixel-level comparison or color-accuracy verification. Instead it
exercises the kernel interface to confirm that:

  - The Colorspace enum property is exposed with expected values.
  - Each colorspace value can be set and read back via atomic commit
    (16 parameterized subtests per connector type).
  - CRC sanity checks confirm the display output is not corrupted
    when each colorspace value is active (no pixel comparison, just
    ensuring the output remains valid).
  - Colorspace survives DPMS off/on and suspend/resume cycles.
  - Invalid enum values are correctly rejected with -EINVAL.
  - HDMI-only enums are absent on DP connectors and vice-versa.

Patch 1 adds the Colorspace property plumbing in lib/igt_kms.
Patch 2 adds the kms_colorspace test with all subtests above.

Swati Sharma (2):
  lib/igt_kms: Add Colorspace connector property support
  tests/kms_colorspace: Add Colorspace connector property test

 lib/igt_kms.c          |   6 +
 lib/igt_kms.h          |   1 +
 tests/kms_colorspace.c | 925 +++++++++++++++++++++++++++++++++++++++++
 tests/meson.build      |   3 +-
 4 files changed, 934 insertions(+), 1 deletion(-)
 create mode 100644 tests/kms_colorspace.c

-- 
2.25.1


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

* [PATCH i-g-t 1/2] lib/igt_kms: Add Colorspace connector property support
  2026-04-27 10:55 [PATCH i-g-t 0/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
@ 2026-04-27 10:55 ` Swati Sharma
  2026-04-27 10:55 ` [PATCH i-g-t 2/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Swati Sharma @ 2026-04-27 10:55 UTC (permalink / raw)
  To: igt-dev; +Cc: Swati Sharma

Add IGT_CONNECTOR_COLORSPACE enum and its property name mapping, so
that tests can get/set the Colorspace connector property via the
standard IGT property helpers.

Also reset Colorspace to "Default" in igt_output_reset(), preventing
state leaks between subtests when a test changes the colorspace.  The
reset is placed after HDR_OUTPUT_METADATA, consistent with the existing
property ordering.

Update the igt_display_reset() doc comment to list the new property.

Co-developed-by: Claude Opus 4.6 (Anthropic AI)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
 lib/igt_kms.c | 6 ++++++
 lib/igt_kms.h | 1 +
 2 files changed, 7 insertions(+)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 913116cd8..d92a10586 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -749,6 +749,7 @@ const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
 	[IGT_CONNECTOR_WRITEBACK_FB_ID] = "WRITEBACK_FB_ID",
 	[IGT_CONNECTOR_WRITEBACK_OUT_FENCE_PTR] = "WRITEBACK_OUT_FENCE_PTR",
 	[IGT_CONNECTOR_DITHERING_MODE] = "dithering mode",
+	[IGT_CONNECTOR_COLORSPACE] = "Colorspace",
 };
 
 const char * const igt_rotation_names[] = {
@@ -2761,6 +2762,10 @@ static void igt_output_reset(igt_output_t *output)
 		igt_output_set_prop_value(output,
 					  IGT_CONNECTOR_HDR_OUTPUT_METADATA, 0);
 
+	if (igt_output_has_prop(output, IGT_CONNECTOR_COLORSPACE))
+		igt_output_set_prop_enum(output, IGT_CONNECTOR_COLORSPACE,
+					 "Default");
+
 	if (igt_output_has_prop(output, IGT_CONNECTOR_WRITEBACK_FB_ID))
 		igt_output_set_prop_value(output, IGT_CONNECTOR_WRITEBACK_FB_ID, 0);
 	if (igt_output_has_prop(output, IGT_CONNECTOR_WRITEBACK_OUT_FENCE_PTR)) {
@@ -2784,6 +2789,7 @@ static void igt_output_reset(igt_output_t *output)
  * - %IGT_CONNECTOR_BROADCAST_RGB (if applicable)
  *   %IGT_CONNECTOR_CONTENT_PROTECTION (if applicable)
  *   %IGT_CONNECTOR_HDR_OUTPUT_METADATA (if applicable)
+ * - %IGT_CONNECTOR_COLORSPACE (if applicable)
  * - %IGT_CONNECTOR_DITHERING_MODE (if applicable)
  * - igt_output_override_mode() to default.
  *
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 5f9bdda45..3eda6fdc4 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -191,6 +191,7 @@ enum igt_atomic_connector_properties {
        IGT_CONNECTOR_WRITEBACK_FB_ID,
        IGT_CONNECTOR_WRITEBACK_OUT_FENCE_PTR,
        IGT_CONNECTOR_DITHERING_MODE,
+       IGT_CONNECTOR_COLORSPACE,
        IGT_NUM_CONNECTOR_PROPS
 };
 
-- 
2.25.1


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

* [PATCH i-g-t 2/2] tests/kms_colorspace: Add Colorspace connector property test
  2026-04-27 10:55 [PATCH i-g-t 0/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
  2026-04-27 10:55 ` [PATCH i-g-t 1/2] lib/igt_kms: Add Colorspace connector property support Swati Sharma
@ 2026-04-27 10:55 ` Swati Sharma
  2026-04-29  4:18   ` Bilal, Mohammed
  2026-04-27 19:23 ` ✓ i915.CI.BAT: success for " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 8+ messages in thread
From: Swati Sharma @ 2026-04-27 10:55 UTC (permalink / raw)
  To: igt-dev; +Cc: Swati Sharma

Add a dedicated IGT test for the DRM Colorspace connector property,
exercising both basic functionality and edge cases:

  - colorspace-enum-list: verify the property exists as an enum with
    at least the Default value.
  - colorspace-set-%s: set each supported colorspace value and verify
    readback via atomic commit (16 parameterized subtests).
  - colorspace-crc-%s: CRC sanity check confirming output is not
    corrupted when each colorspace value is active (16 subtests).
  - colorspace-dpms: verify colorspace survives DPMS off/on cycles.
  - colorspace-suspend: verify colorspace survives suspend/resume.
  - colorspace-invalid: reject out-of-range enum values (-EINVAL).
  - colorspace-connector-type: validate HDMI-only enums are absent
    on DP connectors and vice-versa.
  - colorspace-unsupported-value: force a valid but unsupported enum
    value via the numeric path and verify kernel rejection.

The test covers the full kernel drm_colorspace enum (16 values) and
uses a static name-to-value mapping table for the unsupported-value
subtest, eliminating the need for multiple connected outputs.

Co-developed-by: Claude Opus 4.6 (Anthropic AI)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
 tests/kms_colorspace.c | 925 +++++++++++++++++++++++++++++++++++++++++
 tests/meson.build      |   3 +-
 2 files changed, 927 insertions(+), 1 deletion(-)
 create mode 100644 tests/kms_colorspace.c

diff --git a/tests/kms_colorspace.c b/tests/kms_colorspace.c
new file mode 100644
index 000000000..8becab72f
--- /dev/null
+++ b/tests/kms_colorspace.c
@@ -0,0 +1,925 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+/**
+ * TEST: kms colorspace
+ * Category: Display
+ * Description: Test the Colorspace connector property
+ * Driver requirement: any
+ * Mega feature: Color Management
+ */
+
+#include "igt.h"
+#include <fcntl.h>
+#include <inttypes.h>
+#include <xf86drmMode.h>
+
+/**
+ * SUBTEST: colorspace-enum-list
+ * Description: Verify that the Colorspace property is an enum and lists
+ *              at least the Default value.
+ *
+ * SUBTEST: colorspace-set-%s
+ * Description: Set the Colorspace connector property to %arg[1] and
+ *              verify atomic commit succeeds.
+ *
+ * arg[1]:
+ *
+ * @Default:				Default colorspace
+ * @RGB_Wide_Gamut_Fixed_Point:		RGB Wide Gamut Fixed Point
+ * @RGB_Wide_Gamut_Floating_Point:	RGB Wide Gamut Floating Point
+ * @opRGB:				opRGB colorspace
+ * @DCI-P3_RGB_D65:			DCI-P3 RGB D65 colorspace
+ * @DCI-P3_RGB_Theater:		DCI-P3 RGB Theater colorspace
+ * @BT2020_RGB:			BT.2020 RGB colorspace
+ * @BT709_YCC:				BT.709 YCC colorspace
+ * @XVYCC_601:				xvYCC 601 colorspace
+ * @XVYCC_709:				xvYCC 709 colorspace
+ * @SYCC_601:				sYCC 601 colorspace
+ * @opYCC_601:				opYCC 601 colorspace
+ * @BT2020_YCC:			BT.2020 YCC colorspace
+ * @BT2020_CYCC:			BT.2020 constant-luminance YCC
+ * @BT601_YCC:				BT.601 YCC colorspace (DP)
+ * @SMPTE_170M_YCC:			SMPTE 170M YCC colorspace
+ *
+ * SUBTEST: colorspace-crc-%s
+ * Description: Verify that setting Colorspace to %arg[1] does not corrupt
+ *              the display output (CRC sanity check).
+ *
+ * arg[1]:
+ *
+ * @Default:				Default colorspace
+ * @RGB_Wide_Gamut_Fixed_Point:		RGB Wide Gamut Fixed Point
+ * @RGB_Wide_Gamut_Floating_Point:	RGB Wide Gamut Floating Point
+ * @opRGB:				opRGB colorspace
+ * @DCI-P3_RGB_D65:			DCI-P3 RGB D65 colorspace
+ * @DCI-P3_RGB_Theater:		DCI-P3 RGB Theater colorspace
+ * @BT2020_RGB:			BT.2020 RGB colorspace
+ * @BT709_YCC:				BT.709 YCC colorspace
+ * @XVYCC_601:				xvYCC 601 colorspace
+ * @XVYCC_709:				xvYCC 709 colorspace
+ * @SYCC_601:				sYCC 601 colorspace
+ * @opYCC_601:				opYCC 601 colorspace
+ * @BT2020_YCC:			BT.2020 YCC colorspace
+ * @BT2020_CYCC:			BT.2020 constant-luminance YCC
+ * @BT601_YCC:				BT.601 YCC colorspace (DP)
+ * @SMPTE_170M_YCC:			SMPTE 170M YCC colorspace
+ *
+ * SUBTEST: colorspace-dpms
+ * Description: Set a non-default Colorspace, cycle DPMS off/on, and verify
+ *              the property value is preserved.
+ *
+ * SUBTEST: colorspace-suspend
+ * Description: Set a non-default Colorspace, suspend/resume, and verify
+ *              the property value is preserved.
+ *
+ * SUBTEST: colorspace-invalid
+ * Description: Verify that the kernel rejects invalid Colorspace values.
+ *
+ * SUBTEST: colorspace-connector-type
+ * Description: Validate that connector-type-specific Colorspace values are
+ *              advertised only on the appropriate connector types.
+ *
+ * SUBTEST: colorspace-unsupported-value
+ * Description: Verify that the kernel rejects a Colorspace enum value
+ *              that is not supported by the connector.
+ */
+
+IGT_TEST_DESCRIPTION("Test DRM Colorspace connector property");
+
+/* Colorspace enum values reported by the kernel.
+ * Not all connectors support all values; HDMI and DP have different subsets.
+ * The string names must match the kernel's drm_get_colorspace_name() output.
+ */
+static const char * const colorspace_names[] = {
+	"Default",
+	"RGB_Wide_Gamut_Fixed_Point",
+	"RGB_Wide_Gamut_Floating_Point",
+	"opRGB",		/* kernel-defined name per drm_get_colorspace_name() */
+	"DCI-P3_RGB_D65",
+	"DCI-P3_RGB_Theater",
+	"BT2020_RGB",
+	"BT709_YCC",
+	"XVYCC_601",
+	"XVYCC_709",
+	"SYCC_601",
+	"opYCC_601",
+	"BT2020_YCC",
+	"BT2020_CYCC",
+	"BT601_YCC",
+	"SMPTE_170M_YCC",
+};
+
+typedef struct data {
+	igt_display_t display;
+	int drm_fd;
+} data_t;
+
+static drmModePropertyPtr
+get_colorspace_prop(igt_output_t *output)
+{
+	igt_display_t *display = output->display;
+
+	if (!igt_output_has_prop(output, IGT_CONNECTOR_COLORSPACE))
+		return NULL;
+
+	return drmModeGetProperty(display->drm_fd,
+				  output->props[IGT_CONNECTOR_COLORSPACE]);
+}
+
+/* Check whether @prop contains an enum entry named @name. */
+static bool
+prop_has_enum(drmModePropertyPtr prop, const char *name)
+{
+	for (int i = 0; i < prop->count_enums; i++)
+		if (strcmp(prop->enums[i].name, name) == 0)
+			return true;
+	return false;
+}
+
+static bool
+output_supports_colorspace(igt_output_t *output, const char *cs)
+{
+	drmModePropertyPtr prop;
+	bool found;
+
+	prop = get_colorspace_prop(output);
+	if (!prop)
+		return false;
+
+	found = prop_has_enum(prop, cs);
+	drmModeFreeProperty(prop);
+	return found;
+}
+
+/*
+ * Read back the current Colorspace enum name from the kernel into @buf.
+ * Returns true if the value was found in the property's enum list.
+ */
+static bool
+readback_colorspace(igt_output_t *output, char *buf, size_t len)
+{
+	drmModePropertyPtr prop;
+	uint64_t val;
+	bool found = false;
+
+	val = igt_output_get_prop(output, IGT_CONNECTOR_COLORSPACE);
+	prop = get_colorspace_prop(output);
+	igt_assert(prop);
+
+	for (int i = 0; i < prop->count_enums; i++) {
+		if ((uint64_t)prop->enums[i].value == val) {
+			snprintf(buf, len, "%s", prop->enums[i].name);
+			found = true;
+			break;
+		}
+	}
+
+	drmModeFreeProperty(prop);
+	return found;
+}
+
+static void
+assert_colorspace_eq(igt_output_t *output, const char *expected)
+{
+	char buf[64];
+
+	igt_assert_f(readback_colorspace(output, buf, sizeof(buf)) &&
+		     strcmp(buf, expected) == 0,
+		     "Connector %s: expected '%s', got '%s'\n",
+		     igt_output_name(output), expected, buf);
+}
+
+/*
+ * Find the first non-default Colorspace value supported by @output.
+ * Returns NULL if no non-default value is available.
+ * Starts at index 1 to skip "Default" (always at index 0).
+ */
+static const char *
+find_non_default_colorspace(igt_output_t *output)
+{
+	drmModePropertyPtr prop;
+	const char *result = NULL;
+
+	prop = get_colorspace_prop(output);
+	if (!prop)
+		return NULL;
+
+	/* Skip index 0 (Default) */
+	for (int i = 1; i < ARRAY_SIZE(colorspace_names); i++) {
+		if (prop_has_enum(prop, colorspace_names[i])) {
+			result = colorspace_names[i];
+			break;
+		}
+	}
+
+	drmModeFreeProperty(prop);
+	return result;
+}
+
+static bool
+crc_is_nonzero(const igt_crc_t *crc)
+{
+	for (int i = 0; i < crc->n_words; i++)
+		if (crc->crc[i])
+			return true;
+	return false;
+}
+
+static void
+prepare_output(data_t *data, igt_output_t *output, igt_crtc_t **crtc_out,
+	       struct igt_fb *fb_out)
+{
+	igt_display_t *display = &data->display;
+	drmModeModeInfo *mode;
+	igt_crtc_t *crtc;
+	igt_plane_t *primary;
+
+	for_each_crtc(display, crtc) {
+		igt_output_set_crtc(output, crtc);
+		if (!intel_pipe_output_combo_valid(display)) {
+			igt_output_set_crtc(output, NULL);
+			continue;
+		}
+
+		/* FB is created only after a valid CRTC is found. */
+		mode = igt_output_get_mode(output);
+		primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+
+		igt_create_pattern_fb(data->drm_fd,
+				     mode->hdisplay, mode->vdisplay,
+				     DRM_FORMAT_XRGB8888,
+				     DRM_FORMAT_MOD_LINEAR, fb_out);
+		igt_plane_set_fb(primary, fb_out);
+
+		igt_display_commit_atomic(display,
+					  DRM_MODE_ATOMIC_ALLOW_MODESET,
+					  NULL);
+
+		*crtc_out = crtc;
+		return;
+	}
+
+	igt_skip("No valid CRTC found for output %s\n", igt_output_name(output));
+}
+
+static void
+cleanup_output(data_t *data, igt_output_t *output, struct igt_fb *fb)
+{
+	igt_display_reset(&data->display);
+	igt_display_commit_atomic(&data->display,
+				  DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+	igt_remove_fb(data->drm_fd, fb);
+}
+
+/*
+ * Subtest: colorspace-enum-list
+ *
+ * Verify the Colorspace property exists and is an enum with at least
+ * "Default" among its values.
+ */
+static void
+test_colorspace_enum_list(data_t *data)
+{
+	igt_display_t *display = &data->display;
+	igt_output_t *output;
+	bool tested = false;
+
+	for_each_connected_output(display, output) {
+		if (!igt_output_has_prop(output, IGT_CONNECTOR_COLORSPACE))
+			continue;
+
+		igt_assert_f(output_supports_colorspace(output, "Default"),
+			     "Connector %s: Colorspace property missing 'Default' value\n",
+			     igt_output_name(output));
+
+		igt_info("Connector %s: Colorspace property present, 'Default' supported\n",
+			 igt_output_name(output));
+		tested = true;
+	}
+
+	igt_require_f(tested, "No connector with Colorspace property found\n");
+}
+
+/*
+ * Subtest: colorspace-set-<name>
+ *
+ * For each connected output that supports the requested colorspace,
+ * set it, commit, and verify the property value readback.
+ */
+static void
+test_colorspace_set(data_t *data, const char *cs)
+{
+	igt_display_t *display = &data->display;
+	igt_output_t *output;
+	bool tested = false;
+
+	for_each_connected_output(display, output) {
+		igt_crtc_t *crtc = NULL;
+		drmModePropertyPtr prop;
+		struct igt_fb fb;
+		int ret;
+
+		prop = get_colorspace_prop(output);
+		if (!prop)
+			continue;
+
+		if (!prop_has_enum(prop, cs)) {
+			drmModeFreeProperty(prop);
+			igt_info("Connector %s: skipping, Colorspace '%s' not supported\n",
+				 igt_output_name(output), cs);
+			continue;
+		}
+		drmModeFreeProperty(prop);
+
+		prepare_output(data, output, &crtc, &fb);
+
+		igt_output_set_prop_enum(output, IGT_CONNECTOR_COLORSPACE, cs);
+		ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+		igt_assert_f(ret == 0,
+			     "Connector %s: Failed to commit Colorspace '%s' (ret=%d)\n",
+			     igt_output_name(output), cs, ret);
+
+		/* Apply state fully so subsequent readback reflects HW */
+		igt_display_commit_atomic(display,
+					  DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+
+		/* Verify the property value was persisted by the kernel */
+		assert_colorspace_eq(output, cs);
+
+		igt_info("Connector %s: Successfully set Colorspace to '%s'\n",
+			 igt_output_name(output), cs);
+
+		cleanup_output(data, output, &fb);
+		tested = true;
+	}
+
+	igt_require_f(tested, "No connector supports Colorspace '%s'\n", cs);
+}
+
+/*
+ * Subtest: colorspace-crc-<name>
+ *
+ * This is a pipeline sanity check, not a functional CSC validation.
+ * Set the colorspace, display a pattern framebuffer, collect the CRC, and
+ * verify it is non-zero (confirming the display pipeline produced output
+ * and was not blanked or corrupted).  CRC comparison between Default and
+ * the requested colorspace is logged for diagnostics only, since with RGB
+ * framebuffers (XRGB8888) the colorspace change typically does not affect
+ * the pipe CRC (conversion happens after the CRC tap point on most HW).
+ */
+static void
+test_colorspace_crc(data_t *data, const char *cs)
+{
+	igt_display_t *display = &data->display;
+	igt_output_t *output;
+	bool tested = false;
+
+	for_each_connected_output(display, output) {
+		igt_crtc_t *crtc = NULL;
+		igt_pipe_crc_t *pipe_crc;
+		igt_crc_t crc_default, crc_cs;
+		drmModePropertyPtr prop;
+		struct igt_fb fb;
+
+		prop = get_colorspace_prop(output);
+		if (!prop)
+			continue;
+
+		if (!prop_has_enum(prop, cs) ||
+		    !prop_has_enum(prop, "Default")) {
+			drmModeFreeProperty(prop);
+			igt_info("Connector %s: skipping CRC, Colorspace '%s' or 'Default' not supported\n",
+				 igt_output_name(output), cs);
+			continue;
+		}
+		drmModeFreeProperty(prop);
+
+		prepare_output(data, output, &crtc, &fb);
+
+		igt_require_pipe_crc(data->drm_fd);
+
+		pipe_crc = igt_pipe_crc_new(data->drm_fd,
+					    crtc->pipe,
+					    IGT_PIPE_CRC_SOURCE_AUTO);
+
+		/* Collect CRC with Default colorspace */
+		igt_output_set_prop_enum(output, IGT_CONNECTOR_COLORSPACE,
+					"Default");
+		igt_display_commit_atomic(display,
+					 DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+		igt_wait_for_vblank(crtc);
+		igt_pipe_crc_collect_crc(pipe_crc, &crc_default);
+
+		/* Sanity: CRC from Default must be non-zero */
+		igt_assert_f(crc_is_nonzero(&crc_default),
+			     "Connector %s: CRC with Default colorspace is all zeros\n",
+			     igt_output_name(output));
+
+		/* Collect CRC with requested colorspace */
+		igt_output_set_prop_enum(output, IGT_CONNECTOR_COLORSPACE, cs);
+		igt_display_commit_atomic(display,
+					 DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+		igt_wait_for_vblank(crtc);
+		igt_pipe_crc_collect_crc(pipe_crc, &crc_cs);
+
+		/* CRC with the requested colorspace must also be non-zero */
+		igt_assert_f(crc_is_nonzero(&crc_cs),
+			     "Connector %s: CRC with Colorspace '%s' is all zeros\n",
+			     igt_output_name(output), cs);
+
+		/*
+		 * This is a pipeline sanity check only — it verifies
+		 * that the display output is alive and non-zero, not
+		 * that the colorspace is functionally applied.
+		 * With RGB framebuffers (XRGB8888), colorspace changes
+		 * typically do not affect pipe CRC since the conversion
+		 * may happen after the CRC tap point.
+		 * For functional CSC validation, use YCbCr framebuffer
+		 * formats or test at the sink side.
+		 * Log the result for diagnostic purposes only.
+		 */
+		if (strcmp(cs, "Default") != 0 &&
+		    !igt_check_crc_equal(&crc_default, &crc_cs))
+			igt_info("Connector %s: CRC changed with Colorspace '%s' "
+				 "(HW applies output CSC)\n",
+				 igt_output_name(output), cs);
+		else
+			igt_info("Connector %s: CRC unchanged with Colorspace '%s' "
+				 "(expected for RGB output)\n",
+				 igt_output_name(output), cs);
+
+		igt_pipe_crc_free(pipe_crc);
+		cleanup_output(data, output, &fb);
+		tested = true;
+	}
+
+	igt_require_f(tested, "No connector supports Colorspace '%s'\n", cs);
+}
+
+/*
+ * Subtest: colorspace-dpms
+ *
+ * Set a non-default Colorspace, cycle DPMS off/on, and verify the property
+ * value is preserved and output remains valid.
+ */
+static void
+test_colorspace_dpms(data_t *data)
+{
+	igt_display_t *display = &data->display;
+	igt_output_t *output;
+	bool tested = false;
+
+	for_each_connected_output(display, output) {
+		igt_crtc_t *crtc = NULL;
+		igt_pipe_crc_t *pipe_crc;
+		igt_crc_t crc_after;
+		struct igt_fb fb;
+		const char *cs;
+
+		if (!igt_output_has_prop(output, IGT_CONNECTOR_COLORSPACE))
+			continue;
+
+		cs = find_non_default_colorspace(output);
+		if (!cs)
+			continue;
+
+		prepare_output(data, output, &crtc, &fb);
+
+		pipe_crc = igt_pipe_crc_new(data->drm_fd,
+					    crtc->pipe,
+					    IGT_PIPE_CRC_SOURCE_AUTO);
+
+		/* Set non-default colorspace and commit */
+		igt_output_set_prop_enum(output, IGT_CONNECTOR_COLORSPACE, cs);
+		igt_display_commit_atomic(display,
+					 DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+
+		/* Collect CRC before DPMS cycle */
+		igt_wait_for_vblank(crtc);
+		{
+			igt_crc_t crc_before;
+
+			igt_pipe_crc_collect_crc(pipe_crc, &crc_before);
+
+			/* DPMS off/on cycle */
+			kmstest_set_connector_dpms(data->drm_fd,
+						   output->config.connector,
+						   DRM_MODE_DPMS_OFF);
+			kmstest_set_connector_dpms(data->drm_fd,
+						   output->config.connector,
+						   DRM_MODE_DPMS_ON);
+
+			/*
+			 * Force a modeset commit so the driver materialises any
+			 * lazily rebuilt state before we read the property back.
+			 */
+			igt_assert_eq(igt_display_try_commit_atomic(display,
+								    DRM_MODE_ATOMIC_ALLOW_MODESET,
+								    NULL), 0);
+
+			/* Verify the property value survived the DPMS cycle */
+			assert_colorspace_eq(output, cs);
+
+			/* CRC after DPMS should match before */
+			igt_wait_for_vblank(crtc);
+			igt_pipe_crc_collect_crc(pipe_crc, &crc_after);
+			igt_assert_f(crc_is_nonzero(&crc_after),
+				     "Connector %s: CRC is all zeros after DPMS on\n",
+				     igt_output_name(output));
+			igt_assert_crc_equal(&crc_before, &crc_after);
+		}
+
+		igt_info("Connector %s: Colorspace '%s' preserved across DPMS cycle\n",
+			 igt_output_name(output), cs);
+
+		igt_pipe_crc_free(pipe_crc);
+		cleanup_output(data, output, &fb);
+		tested = true;
+	}
+
+	igt_require_f(tested, "No connector with non-default Colorspace found\n");
+}
+
+/*
+ * Subtest: colorspace-suspend
+ *
+ * Set a non-default Colorspace, suspend/resume, and verify the property
+ * value is preserved and output remains valid.
+ */
+static void
+test_colorspace_suspend(data_t *data)
+{
+	igt_display_t *display = &data->display;
+	igt_output_t *output;
+	bool tested = false;
+
+	for_each_connected_output(display, output) {
+		igt_crtc_t *crtc = NULL;
+		igt_pipe_crc_t *pipe_crc;
+		igt_crc_t crc_after;
+		struct igt_fb fb;
+		const char *cs;
+
+		if (!igt_output_has_prop(output, IGT_CONNECTOR_COLORSPACE))
+			continue;
+
+		cs = find_non_default_colorspace(output);
+		if (!cs)
+			continue;
+
+		prepare_output(data, output, &crtc, &fb);
+
+		pipe_crc = igt_pipe_crc_new(data->drm_fd,
+					    crtc->pipe,
+					    IGT_PIPE_CRC_SOURCE_AUTO);
+
+		igt_output_set_prop_enum(output, IGT_CONNECTOR_COLORSPACE, cs);
+		igt_display_commit_atomic(display,
+					 DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+
+		/* Suspend/resume */
+		igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
+					      SUSPEND_TEST_NONE);
+
+		/*
+		 * Re-probe display state after resume to pick up any
+		 * connector/CRTC changes, then force a modeset commit
+		 * so the driver materialises rebuilt state.
+		 */
+		igt_display_reset(display);
+		igt_output_set_crtc(output, crtc);
+		igt_plane_set_fb(igt_output_get_plane_type(output,
+				 DRM_PLANE_TYPE_PRIMARY), &fb);
+		igt_assert_eq(igt_display_try_commit_atomic(display,
+							    DRM_MODE_ATOMIC_ALLOW_MODESET,
+							    NULL), 0);
+
+		/* Verify the property value survived suspend/resume */
+		assert_colorspace_eq(output, cs);
+
+		/* CRC sanity: display output must be non-zero after resume */
+		igt_wait_for_vblank(crtc);
+		igt_pipe_crc_collect_crc(pipe_crc, &crc_after);
+		igt_assert_f(crc_is_nonzero(&crc_after),
+			     "Connector %s: CRC is all zeros after resume\n",
+			     igt_output_name(output));
+
+		igt_info("Connector %s: Colorspace '%s' preserved across suspend/resume\n",
+			 igt_output_name(output), cs);
+
+		igt_pipe_crc_free(pipe_crc);
+		cleanup_output(data, output, &fb);
+		tested = true;
+	}
+
+	igt_require_f(tested, "No connector with non-default Colorspace found\n");
+}
+
+/*
+ * Subtest: colorspace-invalid
+ *
+ * Verify the kernel rejects out-of-range Colorspace enum values.
+ */
+static void
+test_colorspace_invalid(data_t *data)
+{
+	igt_display_t *display = &data->display;
+	igt_output_t *output;
+	bool tested = false;
+
+	for_each_connected_output(display, output) {
+		igt_crtc_t *crtc = NULL;
+		drmModePropertyPtr prop;
+		struct igt_fb fb;
+		uint64_t invalid;
+		int ret;
+
+		if (!igt_output_has_prop(output, IGT_CONNECTOR_COLORSPACE))
+			continue;
+
+		/*
+		 * Derive an invalid value well past the last defined enum.
+		 * Adding 100 avoids any risk of hitting a valid but sparse
+		 * enum value.
+		 */
+		prop = get_colorspace_prop(output);
+		igt_assert(prop && prop->count_enums > 0);
+		invalid = prop->enums[prop->count_enums - 1].value + 100;
+		drmModeFreeProperty(prop);
+
+		prepare_output(data, output, &crtc, &fb);
+
+		igt_output_set_prop_value(output, IGT_CONNECTOR_COLORSPACE,
+					  invalid);
+		ret = igt_display_try_commit_atomic(display,
+						    DRM_MODE_ATOMIC_ALLOW_MODESET,
+						    NULL);
+		igt_assert_f(ret == -EINVAL,
+			     "Connector %s: Expected -EINVAL for invalid Colorspace %" PRIu64 ", got %d\n",
+			     igt_output_name(output), invalid, ret);
+
+		igt_info("Connector %s: Invalid Colorspace %" PRIu64 " correctly rejected\n",
+			 igt_output_name(output), invalid);
+
+		cleanup_output(data, output, &fb);
+		tested = true;
+	}
+
+	igt_require_f(tested, "No connector with Colorspace property found\n");
+}
+
+/*
+ * Subtest: colorspace-connector-type
+ *
+ * Validate connector-type-specific Colorspace enum expectations.
+ * HDMI connectors should not advertise DP-only values like BT601_YCC.
+ */
+static bool
+is_dp_connector(igt_output_t *output)
+{
+	uint32_t type = output->config.connector->connector_type;
+
+	return type == DRM_MODE_CONNECTOR_DisplayPort ||
+	       type == DRM_MODE_CONNECTOR_eDP;
+}
+
+static bool
+is_hdmi_connector(igt_output_t *output)
+{
+	uint32_t type = output->config.connector->connector_type;
+
+	return type == DRM_MODE_CONNECTOR_HDMIA ||
+	       type == DRM_MODE_CONNECTOR_HDMIB;
+}
+
+static void
+test_colorspace_connector_type(data_t *data)
+{
+	igt_display_t *display = &data->display;
+	igt_output_t *output;
+	bool tested = false;
+
+	for_each_connected_output(display, output) {
+		if (!igt_output_has_prop(output, IGT_CONNECTOR_COLORSPACE))
+			continue;
+
+		/*
+		 * BT601_YCC is defined only in the DP colorspace enum list
+		 * in the kernel.  HDMI connectors must not expose it.
+		 */
+		if (is_hdmi_connector(output)) {
+			igt_assert_f(!output_supports_colorspace(output, "BT601_YCC"),
+				     "HDMI connector %s should not advertise BT601_YCC\n",
+				     igt_output_name(output));
+			igt_info("HDMI connector %s: correctly omits BT601_YCC\n",
+				 igt_output_name(output));
+		}
+
+		/*
+		 * DP connectors with a Colorspace property are expected to
+		 * support BT601_YCC per the DP 1.4a VSC SDP spec, but some
+		 * platforms may not expose the full enum set.  Warn rather
+		 * than assert to avoid false failures on such platforms.
+		 */
+		if (is_dp_connector(output)) {
+			if (!output_supports_colorspace(output, "BT601_YCC"))
+				igt_warn("DP connector %s: BT601_YCC not advertised "
+					 "(commonly expected for DP connectors)\n",
+					 igt_output_name(output));
+			else
+				igt_info("DP connector %s: BT601_YCC correctly advertised\n",
+					 igt_output_name(output));
+		}
+
+		tested = true;
+	}
+
+	igt_require_f(tested, "No connector with Colorspace property found\n");
+}
+
+/*
+ * Subtest: colorspace-unsupported-value
+ *
+ * For each connector, find a colorspace enum value that exists in the
+ * kernel's global drm_colorspace enum but is NOT advertised by this
+ * connector, then force it via the numeric path and verify the kernel
+ * rejects the commit with -EINVAL.
+ */
+
+/*
+ * Kernel drm_colorspace enum values — must match the kernel's
+ * enum drm_colorspace definition in include/drm/drm_connector.h.
+ * If the kernel adds or renumbers values, this table must be updated.
+ * HDMI and DP connectors each expose a different subset of these.
+ */
+static int64_t
+colorspace_kernel_value(const char *name)
+{
+	static const struct {
+		const char *name;
+		uint64_t value;
+	} map[] = {
+		{ "Default",				0 },
+		{ "SMPTE_170M_YCC",			1 },
+		{ "BT709_YCC",				2 },
+		{ "XVYCC_601",				3 },
+		{ "XVYCC_709",				4 },
+		{ "SYCC_601",				5 },
+		{ "opYCC_601",				6 },
+		{ "opRGB",				7 },
+		{ "BT2020_CYCC",			8 },
+		{ "BT2020_RGB",				9 },
+		{ "BT2020_YCC",			10 },
+		{ "DCI-P3_RGB_D65",			11 },
+		{ "DCI-P3_RGB_Theater",			12 },
+		{ "RGB_Wide_Gamut_Fixed_Point",		13 },
+		{ "RGB_Wide_Gamut_Floating_Point",	14 },
+		{ "BT601_YCC",				15 },
+	};
+
+	for (int i = 0; i < ARRAY_SIZE(map); i++)
+		if (strcmp(map[i].name, name) == 0)
+			return (int64_t)map[i].value;
+
+	return -1;
+}
+
+static void
+test_colorspace_unsupported_value(data_t *data)
+{
+	igt_display_t *display = &data->display;
+	igt_output_t *output;
+	bool tested = false;
+
+	for_each_connected_output(display, output) {
+		igt_crtc_t *crtc = NULL;
+		drmModePropertyPtr prop;
+		struct igt_fb fb;
+		uint64_t unsupported_val = 0;
+		const char *unsupported_name = NULL;
+		bool found = false;
+		int ret;
+
+		prop = get_colorspace_prop(output);
+		if (!prop)
+			continue;
+
+		/*
+		 * Find a colorspace that this connector does NOT advertise.
+		 * Look up its numeric value from the kernel's global
+		 * drm_colorspace enum definition, so we don't need a
+		 * second connector.
+		 */
+		for (int i = 0; i < ARRAY_SIZE(colorspace_names); i++) {
+			int64_t val;
+
+			if (prop_has_enum(prop, colorspace_names[i]))
+				continue;
+
+			val = colorspace_kernel_value(colorspace_names[i]);
+			if (val < 0)
+				continue;
+
+			unsupported_val = (uint64_t)val;
+			unsupported_name = colorspace_names[i];
+			found = true;
+			break;
+		}
+
+		drmModeFreeProperty(prop);
+
+		if (!found) {
+			igt_info("Connector %s: supports all known colorspaces, "
+				 "skipping\n", igt_output_name(output));
+			continue;
+		}
+
+		prepare_output(data, output, &crtc, &fb);
+
+		/* Force the unsupported numeric value via the raw path */
+		igt_output_set_prop_value(output, IGT_CONNECTOR_COLORSPACE,
+					  unsupported_val);
+		ret = igt_display_try_commit_atomic(display,
+						    DRM_MODE_ATOMIC_ALLOW_MODESET,
+						    NULL);
+		igt_assert_f(ret == -EINVAL,
+			     "Connector %s: Expected -EINVAL for unsupported '%s' "
+			     "(value %" PRIu64 "), got %d\n",
+			     igt_output_name(output), unsupported_name,
+			     unsupported_val, ret);
+
+		igt_info("Connector %s: Unsupported '%s' (value %" PRIu64 ") "
+			 "correctly rejected by kernel\n",
+			 igt_output_name(output), unsupported_name,
+			 unsupported_val);
+
+		/* cleanup_output() resets display state internally */
+		cleanup_output(data, output, &fb);
+		tested = true;
+	}
+
+	igt_require_f(tested,
+		      "No connector with unsupported Colorspace value found "
+		      "(all connectors support all known values)\n");
+}
+
+int igt_main()
+{
+	data_t data = {};
+	int i;
+
+	igt_fixture() {
+		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+
+		kmstest_set_vt_graphics_mode();
+
+		igt_display_require(&data.display, data.drm_fd);
+		igt_require(data.display.is_atomic);
+	}
+
+	igt_describe("Verify the Colorspace property is an enum with at least 'Default'");
+	igt_subtest("colorspace-enum-list")
+		test_colorspace_enum_list(&data);
+
+	for (i = 0; i < ARRAY_SIZE(colorspace_names); i++) {
+		igt_describe_f("Set Colorspace to '%s' and verify atomic commit succeeds",
+			       colorspace_names[i]);
+		igt_subtest_f("colorspace-set-%s", colorspace_names[i])
+			test_colorspace_set(&data, colorspace_names[i]);
+	}
+
+	for (i = 0; i < ARRAY_SIZE(colorspace_names); i++) {
+		igt_describe_f("Verify CRC sanity with Colorspace set to '%s'",
+			       colorspace_names[i]);
+		igt_subtest_f("colorspace-crc-%s", colorspace_names[i])
+			test_colorspace_crc(&data, colorspace_names[i]);
+	}
+
+	igt_describe("Verify Colorspace persists across DPMS off/on cycle");
+	igt_subtest("colorspace-dpms")
+		test_colorspace_dpms(&data);
+
+	igt_describe("Verify Colorspace persists across suspend/resume");
+	igt_subtest("colorspace-suspend")
+		test_colorspace_suspend(&data);
+
+	igt_describe("Verify kernel rejects invalid Colorspace values");
+	igt_subtest("colorspace-invalid")
+		test_colorspace_invalid(&data);
+
+	igt_describe("Validate connector-type-specific Colorspace enum values");
+	igt_subtest("colorspace-connector-type")
+		test_colorspace_connector_type(&data);
+
+	igt_describe("Verify kernel rejects unsupported Colorspace value for connector");
+	igt_subtest("colorspace-unsupported-value")
+		test_colorspace_unsupported_value(&data);
+
+	igt_fixture() {
+		igt_display_fini(&data.display);
+		drm_close_driver(data.drm_fd);
+	}
+}
diff --git a/tests/meson.build b/tests/meson.build
index 09b0cc27c..dba718b16 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -26,8 +26,9 @@ test_progs = [
 	'kms_bw',
 	'kms_color',
 	'kms_color_pipeline',
-	'kms_concurrent',
 	'kms_colorop',
+	'kms_colorspace',
+	'kms_concurrent',
 	'kms_content_protection',
 	'kms_cursor_crc',
 	'kms_cursor_edge_walk',
-- 
2.25.1


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

* ✓ i915.CI.BAT: success for tests/kms_colorspace: Add Colorspace connector property test
  2026-04-27 10:55 [PATCH i-g-t 0/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
  2026-04-27 10:55 ` [PATCH i-g-t 1/2] lib/igt_kms: Add Colorspace connector property support Swati Sharma
  2026-04-27 10:55 ` [PATCH i-g-t 2/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
@ 2026-04-27 19:23 ` Patchwork
  2026-04-27 19:33 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-27 19:23 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_colorspace: Add Colorspace connector property test
URL   : https://patchwork.freedesktop.org/series/165519/
State : success

== Summary ==

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

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (42 -> 40)
------------------------------

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

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

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

### IGT changes ###

#### Issues hit ####

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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8874 -> IGTPW_15058

  CI-20190529: 20190529
  CI_DRM_18369: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15058: b28874ff6499f9c5303948a456eaf068a402e3fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ Xe.CI.BAT: success for tests/kms_colorspace: Add Colorspace connector property test
  2026-04-27 10:55 [PATCH i-g-t 0/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
                   ` (2 preceding siblings ...)
  2026-04-27 19:23 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-04-27 19:33 ` Patchwork
  2026-04-27 22:55 ` ✗ i915.CI.Full: failure " Patchwork
  2026-04-27 23:37 ` ✓ Xe.CI.FULL: success " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-27 19:33 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_colorspace: Add Colorspace connector property test
URL   : https://patchwork.freedesktop.org/series/165519/
State : success

== Summary ==

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

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
    - bat-adlp-7:         [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html

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


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

  * IGT: IGT_8874 -> IGTPW_15058

  IGTPW_15058: b28874ff6499f9c5303948a456eaf068a402e3fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for tests/kms_colorspace: Add Colorspace connector property test
  2026-04-27 10:55 [PATCH i-g-t 0/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
                   ` (3 preceding siblings ...)
  2026-04-27 19:33 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-27 22:55 ` Patchwork
  2026-04-27 23:37 ` ✓ Xe.CI.FULL: success " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-27 22:55 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_colorspace: Add Colorspace connector property test
URL   : https://patchwork.freedesktop.org/series/165519/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8874_full -> IGTPW_15058_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_15058_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_15058_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_15058/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_15058_full:

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_colorspace@colorspace-crc-bt601_ycc} (NEW):
    - shard-dg2:          NOTRUN -> [SKIP][1] +5 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-3/igt@kms_colorspace@colorspace-crc-bt601_ycc.html
    - shard-rkl:          NOTRUN -> [SKIP][2] +4 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-5/igt@kms_colorspace@colorspace-crc-bt601_ycc.html
    - shard-dg1:          NOTRUN -> [SKIP][3] +5 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-13/igt@kms_colorspace@colorspace-crc-bt601_ycc.html

  * {igt@kms_colorspace@colorspace-crc-dci-p3_rgb_theater} (NEW):
    - shard-mtlp:         NOTRUN -> [SKIP][4] +7 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-4/igt@kms_colorspace@colorspace-crc-dci-p3_rgb_theater.html

  * {igt@kms_colorspace@colorspace-set-rgb_wide_gamut_fixed_point} (NEW):
    - shard-tglu:         NOTRUN -> [SKIP][5] +5 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-7/igt@kms_colorspace@colorspace-set-rgb_wide_gamut_fixed_point.html

  * {igt@kms_colorspace@colorspace-suspend} (NEW):
    - shard-dg2:          NOTRUN -> [FAIL][6]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-6/igt@kms_colorspace@colorspace-suspend.html
    - shard-rkl:          NOTRUN -> [INCOMPLETE][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_colorspace@colorspace-suspend.html
    - shard-snb:          NOTRUN -> [FAIL][8]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-snb1/igt@kms_colorspace@colorspace-suspend.html
    - shard-dg1:          NOTRUN -> [FAIL][9]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-17/igt@kms_colorspace@colorspace-suspend.html
    - shard-tglu:         NOTRUN -> [FAIL][10]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-9/igt@kms_colorspace@colorspace-suspend.html
    - shard-mtlp:         NOTRUN -> [FAIL][11]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-2/igt@kms_colorspace@colorspace-suspend.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1:
    - shard-tglu:         [PASS][12] -> [DMESG-WARN][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-tglu-10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1.html

  
New tests
---------

  New tests have been introduced between IGT_8874_full and IGTPW_15058_full:

### New IGT tests (48) ###

  * igt@i915_pm_rps@atomic-plane-damage:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@basic-small-copy:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@dp-mst-type-0-suspend-resume:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@dr1-dirt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@fbcpsr-2p-scndscrn-cur-indfb-move:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@getfb-handle-valid:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@hangcheck-unterminated:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@misplaced-blitter:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@psr-2p-scndscrn-pri-indfb-draw-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@reads-uncached:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_colorspace@colorspace-connector-type:
    - Statuses : 7 pass(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-crc-bt2020_cycc:
    - Statuses : 7 pass(s)
    - Exec time: [0.31, 1.89] s

  * igt@kms_colorspace@colorspace-crc-bt2020_rgb:
    - Statuses : 6 pass(s)
    - Exec time: [0.29, 1.81] s

  * igt@kms_colorspace@colorspace-crc-bt2020_ycc:
    - Statuses : 5 pass(s)
    - Exec time: [0.38, 1.67] s

  * igt@kms_colorspace@colorspace-crc-bt601_ycc:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 0.63] s

  * igt@kms_colorspace@colorspace-crc-bt709_ycc:
    - Statuses : 4 pass(s)
    - Exec time: [0.39, 0.68] s

  * igt@kms_colorspace@colorspace-crc-dci-p3_rgb_d65:
    - Statuses : 7 pass(s)
    - Exec time: [0.20, 1.36] s

  * igt@kms_colorspace@colorspace-crc-dci-p3_rgb_theater:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.27] s

  * igt@kms_colorspace@colorspace-crc-default:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_colorspace@colorspace-crc-oprgb:
    - Statuses : 7 pass(s)
    - Exec time: [0.38, 1.82] s

  * igt@kms_colorspace@colorspace-crc-opycc_601:
    - Statuses : 7 pass(s)
    - Exec time: [0.29, 1.71] s

  * igt@kms_colorspace@colorspace-crc-rgb_wide_gamut_fixed_point:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-crc-rgb_wide_gamut_floating_point:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-crc-smpte_170m_ycc:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.80] s

  * igt@kms_colorspace@colorspace-crc-sycc_601:
    - Statuses : 7 pass(s)
    - Exec time: [0.28, 1.79] s

  * igt@kms_colorspace@colorspace-crc-xvycc_601:
    - Statuses : 7 pass(s)
    - Exec time: [0.29, 1.82] s

  * igt@kms_colorspace@colorspace-crc-xvycc_709:
    - Statuses : 5 pass(s)
    - Exec time: [0.28, 0.69] s

  * igt@kms_colorspace@colorspace-dpms:
    - Statuses : 7 pass(s)
    - Exec time: [0.37, 2.27] s

  * igt@kms_colorspace@colorspace-enum-list:
    - Statuses : 6 pass(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-invalid:
    - Statuses : 7 pass(s)
    - Exec time: [0.08, 0.85] s

  * igt@kms_colorspace@colorspace-set-bt2020_cycc:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_colorspace@colorspace-set-bt2020_rgb:
    - Statuses : 6 pass(s)
    - Exec time: [0.09, 1.46] s

  * igt@kms_colorspace@colorspace-set-bt2020_ycc:
    - Statuses : 7 pass(s)
    - Exec time: [0.08, 1.47] s

  * igt@kms_colorspace@colorspace-set-bt601_ycc:
    - Statuses : 1 pass(s) 4 skip(s)
    - Exec time: [0.0, 0.39] s

  * igt@kms_colorspace@colorspace-set-bt709_ycc:
    - Statuses : 7 pass(s)
    - Exec time: [0.10, 1.35] s

  * igt@kms_colorspace@colorspace-set-dci-p3_rgb_d65:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_colorspace@colorspace-set-dci-p3_rgb_theater:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.03] s

  * igt@kms_colorspace@colorspace-set-default:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_colorspace@colorspace-set-oprgb:
    - Statuses : 7 pass(s)
    - Exec time: [0.10, 1.29] s

  * igt@kms_colorspace@colorspace-set-opycc_601:
    - Statuses : 4 pass(s)
    - Exec time: [0.12, 0.50] s

  * igt@kms_colorspace@colorspace-set-rgb_wide_gamut_fixed_point:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-set-rgb_wide_gamut_floating_point:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-set-smpte_170m_ycc:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.48] s

  * igt@kms_colorspace@colorspace-set-sycc_601:
    - Statuses : 7 pass(s)
    - Exec time: [0.11, 1.65] s

  * igt@kms_colorspace@colorspace-set-xvycc_601:
    - Statuses : 5 pass(s)
    - Exec time: [0.12, 0.48] s

  * igt@kms_colorspace@colorspace-set-xvycc_709:
    - Statuses : 7 pass(s)
    - Exec time: [0.09, 1.25] s

  * igt@kms_colorspace@colorspace-suspend:
    - Statuses : 5 fail(s) 1 incomplete(s)
    - Exec time: [0.0, 10.45] s

  * igt@kms_colorspace@colorspace-unsupported-value:
    - Statuses :
    - Exec time: [None] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

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

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

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

  * igt@gem_ccs@block-multicopy-inplace:
    - shard-tglu-1:       NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html
    - shard-dg1:          NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html
    - shard-tglu:         NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy.html
    - shard-mtlp:         NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy.html

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

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

  * igt@gem_create@create-ext-set-pat:
    - shard-dg1:          NOTRUN -> [SKIP][25] ([i915#8562])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-19/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#8555])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hang.html
    - shard-dg1:          NOTRUN -> [SKIP][27] ([i915#8555])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-hang.html
    - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#8555])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hang.html

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

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

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

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-tglu-1:       NOTRUN -> [SKIP][32] ([i915#4525])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html

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

  * igt@gem_exec_big@single:
    - shard-tglu-1:       [PASS][34] -> [FAIL][35] ([i915#15816])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-tglu-1/igt@gem_exec_big@single.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@gem_exec_big@single.html

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

  * igt@gem_exec_params@secure-non-master:
    - shard-dg2:          NOTRUN -> [SKIP][37] +3 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-8/igt@gem_exec_params@secure-non-master.html

  * igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][38] ([i915#3281]) +10 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html

  * igt@gem_exec_reloc@basic-softpin:
    - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#3281]) +4 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-1/igt@gem_exec_reloc@basic-softpin.html
    - shard-dg1:          NOTRUN -> [SKIP][40] ([i915#3281]) +5 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-15/igt@gem_exec_reloc@basic-softpin.html

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

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

  * igt@gem_exec_suspend@basic-s0:
    - shard-dg2:          [PASS][44] -> [INCOMPLETE][45] ([i915#13356]) +1 other test incomplete
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_huc_copy@huc-copy:
    - shard-rkl:          NOTRUN -> [SKIP][46] ([i915#2190])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@gem_huc_copy@huc-copy.html
    - shard-tglu-1:       NOTRUN -> [SKIP][47] ([i915#2190])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@gem_huc_copy@huc-copy.html

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

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
    - shard-tglu-1:       NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][51] ([i915#12193])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

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

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-tglu:         NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-10/igt@gem_lmem_swapping@parallel-multi.html

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

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

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

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

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

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - shard-dg1:          NOTRUN -> [SKIP][61] ([i915#3282])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#3282])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#3282])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-rkl:          NOTRUN -> [SKIP][64] ([i915#3282])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@hw-rejects-pxp-buffer:
    - shard-mtlp:         NOTRUN -> [SKIP][65] ([i915#13398])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-8/igt@gem_pxp@hw-rejects-pxp-buffer.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_15058/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
    - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-15/igt@gem_pxp@regular-baseline-src-copy-readible.html

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

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

  * igt@gem_tiled_blits@basic:
    - shard-dg2:          NOTRUN -> [SKIP][71] ([i915#4077]) +6 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-7/igt@gem_tiled_blits@basic.html
    - shard-dg1:          NOTRUN -> [SKIP][72] ([i915#4077]) +5 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-19/igt@gem_tiled_blits@basic.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][73] ([i915#3297]) +2 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglu-1:       NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-dg2:          NOTRUN -> [SKIP][75] ([i915#3297])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html
    - shard-tglu:         NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-7/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gen7_exec_parse@bitmasks:
    - shard-glk10:        NOTRUN -> [SKIP][77] +115 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk10/igt@gen7_exec_parse@bitmasks.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-rkl:          NOTRUN -> [SKIP][78] ([i915#2527]) +2 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@bb-large:
    - shard-dg1:          NOTRUN -> [SKIP][79] ([i915#2527])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-15/igt@gen9_exec_parse@bb-large.html
    - shard-mtlp:         NOTRUN -> [SKIP][80] ([i915#2856])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-7/igt@gen9_exec_parse@bb-large.html
    - shard-dg2:          NOTRUN -> [SKIP][81] ([i915#2856])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-7/igt@gen9_exec_parse@bb-large.html

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

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

  * igt@i915_drm_fdinfo@busy-check-all:
    - shard-dg1:          NOTRUN -> [SKIP][84] ([i915#11527]) +5 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-15/igt@i915_drm_fdinfo@busy-check-all.html

  * igt@i915_drm_fdinfo@busy-check-all@ccs0:
    - shard-mtlp:         NOTRUN -> [SKIP][85] ([i915#11527]) +6 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-5/igt@i915_drm_fdinfo@busy-check-all@ccs0.html

  * igt@i915_drm_fdinfo@busy-check-all@vecs0:
    - shard-dg2:          NOTRUN -> [SKIP][86] ([i915#11527]) +7 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-1/igt@i915_drm_fdinfo@busy-check-all@vecs0.html

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

  * igt@i915_module_load@reload-no-display:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][88] ([i915#13029] / [i915#14545])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-1/igt@i915_module_load@reload-no-display.html
    - shard-dg1:          NOTRUN -> [DMESG-WARN][89] ([i915#13029] / [i915#14545])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-14/igt@i915_module_load@reload-no-display.html
    - shard-snb:          NOTRUN -> [DMESG-WARN][90] ([i915#14545])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-snb4/igt@i915_module_load@reload-no-display.html

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

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

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

  * igt@i915_pm_rps@reset:
    - shard-snb:          [PASS][94] -> [INCOMPLETE][95] ([i915#13729] / [i915#13821])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-snb6/igt@i915_pm_rps@reset.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-snb7/igt@i915_pm_rps@reset.html

  * igt@i915_pm_rps@thresholds-idle-park:
    - shard-dg2:          NOTRUN -> [SKIP][96] ([i915#11681])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html
    - shard-dg1:          NOTRUN -> [SKIP][97] ([i915#11681])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-15/igt@i915_pm_rps@thresholds-idle-park.html
    - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#11681])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle-park.html

  * igt@i915_query@hwconfig_table:
    - shard-tglu-1:       NOTRUN -> [SKIP][99] ([i915#6245])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@i915_query@hwconfig_table.html
    - shard-dg1:          NOTRUN -> [SKIP][100] ([i915#6245])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-15/igt@i915_query@hwconfig_table.html

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

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][102] ([i915#4817])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk11/igt@i915_suspend@fence-restore-tiled2untiled.html
    - shard-rkl:          [PASS][103] -> [INCOMPLETE][104] ([i915#4817])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@i915_suspend@forcewake:
    - shard-glk:          NOTRUN -> [INCOMPLETE][105] ([i915#4817])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk5/igt@i915_suspend@forcewake.html

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

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

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

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

  * igt@kms_big_fb@4-tiled-16bpp-rotate-0:
    - shard-dg1:          NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
    - shard-tglu:         NOTRUN -> [SKIP][111] ([i915#5286]) +2 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-9/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html

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

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

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

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

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

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][119] ([i915#4538]) +1 other test skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
    - shard-mtlp:         NOTRUN -> [SKIP][120] +8 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_busy@basic-hang:
    - shard-dg1:          [PASS][121] -> [DMESG-WARN][122] ([i915#4423]) +1 other test dmesg-warn
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-18/igt@kms_busy@basic-hang.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-13/igt@kms_busy@basic-hang.html

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

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

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#10307] / [i915#6095]) +75 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][126] ([i915#12313])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

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

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          [PASS][128] -> [INCOMPLETE][129] ([i915#15582])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html

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

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][132] ([i915#12313])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][133] ([i915#14098] / [i915#6095]) +52 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html

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

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][135] ([i915#6095]) +200 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_cdclk@plane-scaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][136] ([i915#3742])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-dg1:          NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +3 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html
    - shard-tglu:         NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) +5 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-4/igt@kms_chamelium_audio@hdmi-audio-edid.html
    - shard-rkl:          NOTRUN -> [SKIP][139] ([i915#11151] / [i915#14544] / [i915#7828])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
    - shard-tglu-1:       NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) +5 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_frames@hdmi-crc-multiple:
    - shard-rkl:          NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +7 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-multiple.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-dg2:          NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +1 other test skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
    - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_color@deep-color:
    - shard-rkl:          NOTRUN -> [SKIP][144] ([i915#12655] / [i915#3555])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@kms_color@deep-color.html

  * igt@kms_content_protection@atomic-dpms-hdcp14:
    - shard-dg2:          NOTRUN -> [SKIP][145] ([i915#15865])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
    - shard-dg1:          NOTRUN -> [SKIP][146] ([i915#15865])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-14/igt@kms_content_protection@atomic-dpms-hdcp14.html
    - shard-mtlp:         NOTRUN -> [SKIP][147] ([i915#15865])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-1/igt@kms_content_protection@atomic-dpms-hdcp14.html

  * igt@kms_content_protection@atomic-hdcp14:
    - shard-tglu-1:       NOTRUN -> [SKIP][148] ([i915#15865]) +2 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html

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

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

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

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

  * igt@kms_content_protection@suspend-resume:
    - shard-rkl:          NOTRUN -> [SKIP][153] ([i915#15865]) +1 other test skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@kms_content_protection@suspend-resume.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-rkl:          NOTRUN -> [FAIL][154] ([i915#13566]) +2 other tests fail
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][155] -> [FAIL][156] ([i915#13566]) +1 other test fail
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-32x10:
    - shard-tglu-1:       NOTRUN -> [SKIP][157] ([i915#3555]) +1 other test skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x10.html

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

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

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-rkl:          NOTRUN -> [SKIP][160] ([i915#14544] / [i915#3555])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_cursor_crc@cursor-random-max-size.html

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

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-rkl:          [PASS][162] -> [INCOMPLETE][163] ([i915#12358] / [i915#14152])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-2/igt@kms_cursor_crc@cursor-suspend.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][164] ([i915#12358] / [i915#14152])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html

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

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

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          NOTRUN -> [FAIL][168] ([i915#15804])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

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

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-tglu-1:       NOTRUN -> [SKIP][170] ([i915#9723])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dp_aux_dev@basic:
    - shard-dg2:          NOTRUN -> [SKIP][171] ([i915#1257])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-7/igt@kms_dp_aux_dev@basic.html
    - shard-rkl:          NOTRUN -> [SKIP][172] ([i915#1257])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@kms_dp_aux_dev@basic.html
    - shard-dg1:          NOTRUN -> [SKIP][173] ([i915#1257])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-19/igt@kms_dp_aux_dev@basic.html
    - shard-tglu:         NOTRUN -> [SKIP][174] ([i915#1257])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-6/igt@kms_dp_aux_dev@basic.html

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

  * igt@kms_dsc@dsc-basic:
    - shard-tglu-1:       NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_dsc@dsc-basic.html

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

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][178] ([i915#3469])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@display-3x:
    - shard-rkl:          NOTRUN -> [SKIP][179] ([i915#1839])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-3/igt@kms_feature_discovery@display-3x.html

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

  * igt@kms_feature_discovery@psr1:
    - shard-rkl:          NOTRUN -> [SKIP][181] ([i915#658])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-5/igt@kms_feature_discovery@psr1.html

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

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

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

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

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

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-tglu-1:       NOTRUN -> [SKIP][187] ([i915#3637] / [i915#9934]) +4 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html
    - shard-dg1:          NOTRUN -> [SKIP][188] ([i915#9934]) +1 other test skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-18/igt@kms_flip@2x-nonexisting-fb-interruptible.html

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

  * igt@kms_flip@flip-vs-fences:
    - shard-dg2:          NOTRUN -> [SKIP][190] ([i915#8381])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-4/igt@kms_flip@flip-vs-fences.html
    - shard-dg1:          NOTRUN -> [SKIP][191] ([i915#8381])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-16/igt@kms_flip@flip-vs-fences.html

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

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

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-rkl:          NOTRUN -> [SKIP][195] ([i915#14544] / [i915#15643])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

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

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

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

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][200] ([i915#15104]) +1 other test skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][201] ([i915#15104])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][202] ([i915#15104]) +1 other test skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html

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

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

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

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

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

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

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
    - shard-rkl:          NOTRUN -> [SKIP][210] ([i915#15102]) +2 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-dg1:          NOTRUN -> [SKIP][211] ([i915#15102] / [i915#3458]) +5 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#15102] / [i915#3458]) +3 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-rkl:          NOTRUN -> [SKIP][214] ([i915#14544] / [i915#15102] / [i915#3023])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][215] ([i915#14544] / [i915#1825]) +1 other test skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][216] ([i915#1825]) +29 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html

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

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

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-rkl:          NOTRUN -> [SKIP][219] ([i915#15102] / [i915#3023]) +12 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:
    - shard-tglu-1:       NOTRUN -> [SKIP][220] +41 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html

  * igt@kms_hdr@bpc-switch:
    - shard-glk11:        NOTRUN -> [SKIP][221] +102 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk11/igt@kms_hdr@bpc-switch.html
    - shard-dg2:          NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-4/igt@kms_hdr@bpc-switch.html
    - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +1 other test skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-16/igt@kms_hdr@bpc-switch.html
    - shard-tglu:         NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) +1 other test skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-2/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-mtlp:         NOTRUN -> [SKIP][225] ([i915#12713])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg2:          NOTRUN -> [SKIP][226] ([i915#12713])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
    - shard-tglu-1:       NOTRUN -> [SKIP][227] ([i915#12713])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg1:          NOTRUN -> [SKIP][228] ([i915#12713])
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-15/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-rkl:          NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228]) +3 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html

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

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][231] ([i915#15458]) +1 other test skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][232] ([i915#15458])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-rkl:          NOTRUN -> [SKIP][233] ([i915#15458])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-dg1:          NOTRUN -> [SKIP][234] ([i915#15458])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-19/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-tglu:         NOTRUN -> [SKIP][235] ([i915#15458]) +1 other test skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-mtlp:         NOTRUN -> [SKIP][236] ([i915#15458])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

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

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

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-rkl:          [PASS][239] -> [INCOMPLETE][240] ([i915#12756] / [i915#13476])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][241] -> [ABORT][242] ([i915#15840]) +1 other test abort
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-tglu-10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
    - shard-rkl:          [PASS][243] -> [INCOMPLETE][244] ([i915#13476])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html

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

  * igt@kms_pipe_stress@stress-xrgb8888-4tiled:
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#14712])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
    - shard-dg1:          NOTRUN -> [SKIP][247] ([i915#14712])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-17/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
    - shard-tglu:         NOTRUN -> [SKIP][248] ([i915#14712])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html

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

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
    - shard-tglu:         NOTRUN -> [SKIP][250] ([i915#15709]) +3 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
    - shard-mtlp:         NOTRUN -> [SKIP][251] ([i915#15709])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-5/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
    - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#15709])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html

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

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

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
    - shard-glk:          NOTRUN -> [SKIP][255] +477 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
    - shard-rkl:          NOTRUN -> [SKIP][256] ([i915#15709]) +2 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html

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

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

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

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

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

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

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-tglu-1:       NOTRUN -> [SKIP][263] ([i915#13958]) +1 other test skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html

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

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

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

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

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

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
    - shard-tglu-1:       NOTRUN -> [SKIP][270] ([i915#15329]) +4 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
    - shard-dg1:          NOTRUN -> [SKIP][271] ([i915#15329]) +4 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
    - shard-rkl:          NOTRUN -> [SKIP][272] ([i915#15329] / [i915#3555])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html

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

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][274] ([i915#5354])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@kms_pm_backlight@fade-with-suspend.html
    - shard-dg1:          NOTRUN -> [SKIP][275] ([i915#5354]) +1 other test skip
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-18/igt@kms_pm_backlight@fade-with-suspend.html
    - shard-tglu:         NOTRUN -> [SKIP][276] ([i915#9812])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-9/igt@kms_pm_backlight@fade-with-suspend.html

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

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

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][279] ([i915#9340])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-dg1:          NOTRUN -> [SKIP][280] ([i915#3828])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-tglu:         NOTRUN -> [SKIP][281] ([i915#3828])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-7/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-rkl:          [PASS][282] -> [SKIP][283] ([i915#15073])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-rkl:          NOTRUN -> [SKIP][284] ([i915#15073])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
    - shard-tglu-1:       NOTRUN -> [SKIP][285] ([i915#15073]) +1 other test skip
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@package-g7:
    - shard-tglu:         NOTRUN -> [SKIP][286] ([i915#15403])
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-10/igt@kms_pm_rpm@package-g7.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-glk:          NOTRUN -> [INCOMPLETE][287] ([i915#10553])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_prime@basic-modeset-hybrid:
    - shard-dg2:          NOTRUN -> [SKIP][288] ([i915#6524] / [i915#6805])
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
    - shard-rkl:          NOTRUN -> [SKIP][289] ([i915#6524]) +1 other test skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
    - shard-dg1:          NOTRUN -> [SKIP][290] ([i915#6524])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html
    - shard-tglu:         NOTRUN -> [SKIP][291] ([i915#6524])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-3/igt@kms_prime@basic-modeset-hybrid.html
    - shard-mtlp:         NOTRUN -> [SKIP][292] ([i915#6524])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html

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

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

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-dg2:          NOTRUN -> [SKIP][295] ([i915#11520]) +5 other tests skip
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
    - shard-rkl:          NOTRUN -> [SKIP][296] ([i915#11520]) +8 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
    - shard-snb:          NOTRUN -> [SKIP][297] ([i915#11520]) +5 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-snb5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

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

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

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

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

  * igt@kms_psr@fbc-pr-cursor-plane-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][304] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-plane-onoff.html

  * igt@kms_psr@fbc-psr-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][305] ([i915#1072] / [i915#9732]) +8 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-3/igt@kms_psr@fbc-psr-dpms.html

  * igt@kms_psr@fbc-psr2-cursor-blt:
    - shard-tglu-1:       NOTRUN -> [SKIP][306] ([i915#9732]) +13 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html

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

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-dg1:          NOTRUN -> [SKIP][308] ([i915#1072] / [i915#9732]) +11 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-18/igt@kms_psr@fbc-psr2-primary-blt.html

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

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][310] ([i915#1072] / [i915#9732]) +19 other tests skip
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@kms_psr@psr-sprite-plane-onoff.html

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

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

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

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

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

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-tglu:         NOTRUN -> [SKIP][316] ([i915#5289])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-dg2:          NOTRUN -> [SKIP][317] ([i915#3555])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-3/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-glk:          NOTRUN -> [FAIL][318] ([i915#10959])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][319] ([i915#12276]) +1 other test incomplete
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html

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

  * igt@kms_vrr@flip-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][321] ([i915#15243] / [i915#3555])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-1/igt@kms_vrr@flip-dpms.html
    - shard-rkl:          NOTRUN -> [SKIP][322] ([i915#15243] / [i915#3555])
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-7/igt@kms_vrr@flip-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][323] ([i915#3555]) +2 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-12/igt@kms_vrr@flip-dpms.html
    - shard-mtlp:         NOTRUN -> [SKIP][324] ([i915#3555] / [i915#8808])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-5/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@negative-basic:
    - shard-mtlp:         [PASS][325] -> [FAIL][326] ([i915#15420]) +1 other test fail
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-mtlp-3/igt@kms_vrr@negative-basic.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-8/igt@kms_vrr@negative-basic.html

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

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

  * igt@perf_pmu@busy-double-start@ccs0:
    - shard-dg2:          [PASS][330] -> [FAIL][331] ([i915#4349])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg2-5/igt@perf_pmu@busy-double-start@ccs0.html
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-4/igt@perf_pmu@busy-double-start@ccs0.html

  * igt@perf_pmu@busy-double-start@vcs1:
    - shard-dg1:          [PASS][332] -> [FAIL][333] ([i915#4349]) +2 other tests fail
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-19/igt@perf_pmu@busy-double-start@vcs1.html
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-16/igt@perf_pmu@busy-double-start@vcs1.html

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

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

  * igt@sriov_basic@enable-vfs-bind-unbind-each:
    - shard-rkl:          NOTRUN -> [SKIP][336] ([i915#9917])
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html

  * igt@sysfs_timeslice_duration@idempotent@vcs0:
    - shard-snb:          NOTRUN -> [SKIP][337] +110 other tests skip
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-snb7/igt@sysfs_timeslice_duration@idempotent@vcs0.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-snb:          [ABORT][338] ([i915#15840]) -> [PASS][339] +1 other test pass
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-snb4/igt@gem_ctx_isolation@preservation-s3@rcs0.html
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-snb5/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_exec_big@single:
    - shard-mtlp:         [FAIL][340] ([i915#15871]) -> [PASS][341]
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-mtlp-7/igt@gem_exec_big@single.html
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-8/igt@gem_exec_big@single.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2:
    - shard-glk:          [FAIL][342] ([i915#14888]) -> [PASS][343]
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-mtlp:         [FAIL][344] ([i915#15733] / [i915#5138]) -> [PASS][345]
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_cursor_crc@cursor-random-128x42:
    - shard-rkl:          [FAIL][346] ([i915#13566]) -> [PASS][347]
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@kms_cursor_crc@cursor-random-128x42.html

  * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
    - shard-tglu:         [FAIL][348] ([i915#13566]) -> [PASS][349] +3 other tests pass
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-tglu-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-tearing-position-change:
    - shard-dg1:          [DMESG-WARN][350] ([i915#4423]) -> [PASS][351] +1 other test pass
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-14/igt@kms_cursor_crc@cursor-tearing-position-change.html
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-18/igt@kms_cursor_crc@cursor-tearing-position-change.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-dg1:          [FAIL][352] ([i915#13027]) -> [PASS][353]
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-17/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-dg2:          [FAIL][354] ([i915#15389] / [i915#6880]) -> [PASS][355]
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-rkl:          [INCOMPLETE][356] ([i915#10056]) -> [PASS][357]
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_hdr@static-toggle:
    - shard-rkl:          [SKIP][358] ([i915#3555] / [i915#8228]) -> [PASS][359] +1 other test pass
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-7/igt@kms_hdr@static-toggle.html
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-1/igt@kms_hdr@static-toggle.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - shard-glk:          [INCOMPLETE][360] ([i915#12756] / [i915#13409] / [i915#13476]) -> [PASS][361]
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_plane_cursor@overlay:
    - shard-rkl:          [FAIL][362] ([i915#15912]) -> [PASS][363] +1 other test pass
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-2/igt@kms_plane_cursor@overlay.html
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-5/igt@kms_plane_cursor@overlay.html

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128:
    - shard-rkl:          [FAIL][364] ([i915#15913]) -> [PASS][365] +1 other test pass
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-2/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-5/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2:          [SKIP][366] ([i915#15073]) -> [PASS][367]
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          [SKIP][368] ([i915#15073]) -> [PASS][369]
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg1:          [SKIP][370] ([i915#15073]) -> [PASS][371]
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@perf_pmu@most-busy-idle-check-all:
    - shard-mtlp:         [FAIL][372] -> [PASS][373] +1 other test pass
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all.html
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-rkl:          [SKIP][374] ([i915#4525]) -> [SKIP][375] ([i915#14544] / [i915#4525])
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-8/igt@gem_exec_balancer@parallel-out-fence.html
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_reloc@basic-active:
    - shard-rkl:          [SKIP][376] ([i915#3281]) -> [SKIP][377] ([i915#14544] / [i915#3281])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-5/igt@gem_exec_reloc@basic-active.html
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@gem_exec_reloc@basic-active.html

  * igt@gem_exec_reloc@basic-gtt-noreloc:
    - shard-rkl:          [SKIP][378] ([i915#14544] / [i915#3281]) -> [SKIP][379] ([i915#3281])
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-noreloc.html
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-noreloc.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-rkl:          [SKIP][380] ([i915#14544] / [i915#4613]) -> [SKIP][381] ([i915#4613])
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-rkl:          [SKIP][382] ([i915#4613]) -> [SKIP][383] ([i915#14544] / [i915#4613])
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-5/igt@gem_lmem_swapping@parallel-random.html
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_readwrite@write-bad-handle:
    - shard-rkl:          [SKIP][384] ([i915#3282]) -> [SKIP][385] ([i915#14544] / [i915#3282])
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-7/igt@gem_readwrite@write-bad-handle.html
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html

  * igt@gem_tiled_pread_pwrite:
    - shard-rkl:          [SKIP][386] ([i915#14544] / [i915#3282]) -> [SKIP][387] ([i915#3282])
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@gem_tiled_pread_pwrite.html
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-rkl:          [SKIP][388] ([i915#14544] / [i915#3297]) -> [SKIP][389] ([i915#3297])
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-5/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-rkl:          [SKIP][390] ([i915#3297]) -> [SKIP][391] ([i915#14544] / [i915#3297])
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-rkl:          [SKIP][392] ([i915#2527]) -> [SKIP][393] ([i915#14544] / [i915#2527])
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-4/igt@gen9_exec_parse@allowed-single.html
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@batch-without-end:
    - shard-rkl:          [SKIP][394] ([i915#14544] / [i915#2527]) -> [SKIP][395] ([i915#2527]) +1 other test skip
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@gen9_exec_parse@batch-without-end.html
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@gen9_exec_parse@batch-without-end.html

  * igt@i915_power@sanity:
    - shard-rkl:          [SKIP][396] ([i915#14544] / [i915#7984]) -> [SKIP][397] ([i915#7984])
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@i915_power@sanity.html
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-4/igt@i915_power@sanity.html

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

  * igt@kms_big_fb@4-tiled-8bpp-rotate-0:
    - shard-dg1:          [SKIP][400] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][401] ([i915#4538] / [i915#5286])
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-19/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-rkl:          [SKIP][404] ([i915#5286]) -> [SKIP][405] ([i915#14544] / [i915#5286]) +2 other tests skip
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-rkl:          [SKIP][406] ([i915#3638]) -> [SKIP][407] ([i915#14544] / [i915#3638])
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-rkl:          [SKIP][408] ([i915#14544] / [i915#3638]) -> [SKIP][409] ([i915#3638])
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc:
    - shard-dg1:          [SKIP][410] ([i915#4423] / [i915#6095]) -> [SKIP][411] ([i915#6095])
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-19/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-rkl:          [SKIP][412] ([i915#14098] / [i915#6095]) -> [SKIP][413] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][414] ([i915#12805] / [i915#14544]) -> [SKIP][415] ([i915#12805])
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-glk:          [INCOMPLETE][416] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][417] ([i915#15582])
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

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

  * igt@kms_chamelium_audio@dp-audio-edid:
    - shard-rkl:          [SKIP][420] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][421] ([i915#11151] / [i915#7828])
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_chamelium_audio@dp-audio-edid.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@kms_chamelium_audio@dp-audio-edid.html

  * igt@kms_chamelium_color@degamma:
    - shard-rkl:          [SKIP][422] -> [SKIP][423] ([i915#14544]) +2 other tests skip
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-7/igt@kms_chamelium_color@degamma.html
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-rkl:          [SKIP][424] ([i915#11151] / [i915#7828]) -> [SKIP][425] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-8/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
    - shard-rkl:          [SKIP][426] ([i915#14544] / [i915#15330]) -> [SKIP][427] ([i915#15330])
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html

  * igt@kms_content_protection@dp-mst-type-1-suspend-resume:
    - shard-rkl:          [SKIP][428] ([i915#15330]) -> [SKIP][429] ([i915#14544] / [i915#15330])
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html

  * igt@kms_content_protection@lic-type-1:
    - shard-rkl:          [SKIP][430] ([i915#14544] / [i915#15865]) -> [SKIP][431] ([i915#15865])
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_content_protection@lic-type-1.html
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg1:          [SKIP][432] ([i915#15865]) -> [SKIP][433] ([i915#9433])
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-14/igt@kms_content_protection@mei-interface.html
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-13/igt@kms_content_protection@mei-interface.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-rkl:          [SKIP][434] ([i915#14544] / [i915#4103]) -> [SKIP][435] ([i915#4103])
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-rkl:          [SKIP][436] ([i915#14544]) -> [SKIP][437] +3 other tests skip
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-rkl:          [SKIP][438] ([i915#3555] / [i915#3804]) -> [SKIP][439] ([i915#14544] / [i915#3555] / [i915#3804])
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/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][440] ([i915#3804]) -> [SKIP][441] ([i915#14544] / [i915#3804])
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-rkl:          [SKIP][442] ([i915#13707]) -> [SKIP][443] ([i915#13707] / [i915#14544])
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-rkl:          [SKIP][444] ([i915#3555] / [i915#3840]) -> [SKIP][445] ([i915#14544] / [i915#3555] / [i915#3840])
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-rkl:          [SKIP][446] ([i915#14544] / [i915#9934]) -> [SKIP][447] ([i915#9934]) +2 other tests skip
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk:          [INCOMPLETE][448] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][449] ([i915#12745] / [i915#4839])
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          [INCOMPLETE][450] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][451] ([i915#12745])
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg1:          [SKIP][452] ([i915#15643] / [i915#4423]) -> [SKIP][453] ([i915#15643])
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-rkl:          [SKIP][454] ([i915#15102] / [i915#3023]) -> [SKIP][455] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
    - shard-dg2:          [SKIP][456] ([i915#15102] / [i915#3458]) -> [SKIP][457] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          [SKIP][458] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][459] ([i915#15102] / [i915#3458]) +1 other test skip
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
    - shard-rkl:          [SKIP][460] ([i915#14544] / [i915#1825]) -> [SKIP][461] ([i915#1825]) +10 other tests skip
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
    - shard-dg1:          [SKIP][462] ([i915#4423] / [i915#8708]) -> [SKIP][463] ([i915#8708])
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-rkl:          [SKIP][464] ([i915#5439]) -> [SKIP][465] ([i915#14544] / [i915#5439])
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
    - shard-rkl:          [SKIP][466] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][467] ([i915#15102] / [i915#3023]) +4 other tests skip
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
    - shard-dg1:          [SKIP][468] -> [SKIP][469] ([i915#4423])
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite:
    - shard-dg1:          [SKIP][470] ([i915#4423]) -> [SKIP][471]
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
    - shard-rkl:          [SKIP][472] ([i915#1825]) -> [SKIP][473] ([i915#14544] / [i915#1825]) +2 other tests skip
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
    - shard-dg1:          [SKIP][474] ([i915#15329]) -> [SKIP][475] ([i915#15329] / [i915#4423]) +1 other test skip
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-tglu:         [SKIP][476] ([i915#15128]) -> [SKIP][477] ([i915#15739])
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-rkl:          [SKIP][478] ([i915#14544] / [i915#15073]) -> [SKIP][479] ([i915#15073])
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
    - shard-rkl:          [SKIP][480] ([i915#11520]) -> [SKIP][481] ([i915#11520] / [i915#14544])
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr@fbc-pr-cursor-plane-move:
    - shard-rkl:          [SKIP][482] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][483] ([i915#1072] / [i915#9732]) +3 other tests skip
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-plane-move.html
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-1/igt@kms_psr@fbc-pr-cursor-plane-move.html

  * igt@kms_psr@fbc-psr-primary-page-flip:
    - shard-rkl:          [SKIP][484] ([i915#1072] / [i915#9732]) -> [SKIP][485] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-4/igt@kms_psr@fbc-psr-primary-page-flip.html
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-6/igt@kms_psr@fbc-psr-primary-page-flip.html

  * igt@kms_vrr@max-min:
    - shard-rkl:          [SKIP][486] ([i915#14544] / [i915#9906]) -> [SKIP][487] ([i915#9906])
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-rkl-6/igt@kms_vrr@max-min.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-rkl-4/igt@kms_vrr@max-min.html

  * igt@perf_pmu@module-unload:
    - shard-mtlp:         [INCOMPLETE][488] ([i915#13520]) -> [ABORT][489] ([i915#15778])
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/shard-mtlp-7/igt@perf_pmu@module-unload.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15058/shard-mtlp-2/igt@perf_pmu@module-unload.html

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

  [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
  [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
  [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#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
  [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
  [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
  [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
  [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
  [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#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
  [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
  [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
  [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
  [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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
  [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
  [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
  [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
  [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
  [i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912
  [i915#15913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15913
  [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
  [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#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#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
  [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [i915#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#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#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8874 -> IGTPW_15058

  CI-20190529: 20190529
  CI_DRM_18369: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15058: b28874ff6499f9c5303948a456eaf068a402e3fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for tests/kms_colorspace: Add Colorspace connector property test
  2026-04-27 10:55 [PATCH i-g-t 0/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
                   ` (4 preceding siblings ...)
  2026-04-27 22:55 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-04-27 23:37 ` Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-27 23:37 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_colorspace: Add Colorspace connector property test
URL   : https://patchwork.freedesktop.org/series/165519/
State : success

== Summary ==

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

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_colorspace@colorspace-crc-rgb_wide_gamut_fixed_point} (NEW):
    - shard-bmg:          NOTRUN -> [SKIP][1] +3 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-2/igt@kms_colorspace@colorspace-crc-rgb_wide_gamut_fixed_point.html

  * {igt@kms_colorspace@colorspace-set-dci-p3_rgb_theater} (NEW):
    - shard-lnl:          NOTRUN -> [SKIP][2] +7 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-lnl-2/igt@kms_colorspace@colorspace-set-dci-p3_rgb_theater.html

  * {igt@kms_colorspace@colorspace-suspend} (NEW):
    - shard-bmg:          NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-1/igt@kms_colorspace@colorspace-suspend.html

  * {igt@kms_colorspace@colorspace-unsupported-value} (NEW):
    - shard-lnl:          NOTRUN -> [FAIL][4] +1 other test fail
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-lnl-6/igt@kms_colorspace@colorspace-unsupported-value.html

  
New tests
---------

  New tests have been introduced between XEIGT_8874_FULL and XEIGTPW_15058_FULL:

### New IGT tests (38) ###

  * igt@kms_colorspace@colorspace-connector-type:
    - Statuses : 2 pass(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-crc-bt2020_cycc:
    - Statuses : 1 pass(s)
    - Exec time: [1.73] s

  * igt@kms_colorspace@colorspace-crc-bt2020_rgb:
    - Statuses : 2 pass(s)
    - Exec time: [0.90, 1.79] s

  * igt@kms_colorspace@colorspace-crc-bt2020_ycc:
    - Statuses : 2 pass(s)
    - Exec time: [0.90, 1.83] s

  * igt@kms_colorspace@colorspace-crc-bt601_ycc:
    - Statuses : 2 pass(s)
    - Exec time: [0.47, 0.69] s

  * igt@kms_colorspace@colorspace-crc-bt709_ycc:
    - Statuses : 2 pass(s)
    - Exec time: [0.79, 0.90] s

  * igt@kms_colorspace@colorspace-crc-dci-p3_rgb_d65:
    - Statuses : 2 pass(s)
    - Exec time: [0.80, 0.85] s

  * igt@kms_colorspace@colorspace-crc-dci-p3_rgb_theater:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.52] s

  * igt@kms_colorspace@colorspace-crc-default:
    - Statuses : 2 pass(s)
    - Exec time: [0.69, 0.87] s

  * igt@kms_colorspace@colorspace-crc-oprgb:
    - Statuses : 2 pass(s)
    - Exec time: [0.73, 0.93] s

  * igt@kms_colorspace@colorspace-crc-opycc_601:
    - Statuses : 1 pass(s)
    - Exec time: [1.82] s

  * igt@kms_colorspace@colorspace-crc-rgb_wide_gamut_fixed_point:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-crc-rgb_wide_gamut_floating_point:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-crc-smpte_170m_ycc:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-crc-sycc_601:
    - Statuses : 1 pass(s)
    - Exec time: [1.80] s

  * igt@kms_colorspace@colorspace-crc-xvycc_601:
    - Statuses : 1 pass(s)
    - Exec time: [0.78] s

  * igt@kms_colorspace@colorspace-crc-xvycc_709:
    - Statuses : 2 pass(s)
    - Exec time: [0.80, 0.91] s

  * igt@kms_colorspace@colorspace-dpms:
    - Statuses : 2 pass(s)
    - Exec time: [1.24, 1.82] s

  * igt@kms_colorspace@colorspace-enum-list:
    - Statuses : 2 pass(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-invalid:
    - Statuses : 2 pass(s)
    - Exec time: [0.37, 0.38] s

  * igt@kms_colorspace@colorspace-set-bt2020_cycc:
    - Statuses : 2 pass(s)
    - Exec time: [0.49, 1.47] s

  * igt@kms_colorspace@colorspace-set-bt2020_rgb:
    - Statuses : 1 pass(s)
    - Exec time: [1.55] s

  * igt@kms_colorspace@colorspace-set-bt2020_ycc:
    - Statuses : 2 pass(s)
    - Exec time: [0.54, 1.45] s

  * igt@kms_colorspace@colorspace-set-bt601_ycc:
    - Statuses : 2 pass(s)
    - Exec time: [0.23, 0.39] s

  * igt@kms_colorspace@colorspace-set-bt709_ycc:
    - Statuses : 1 pass(s)
    - Exec time: [0.35] s

  * igt@kms_colorspace@colorspace-set-dci-p3_rgb_d65:
    - Statuses : 2 pass(s)
    - Exec time: [0.36, 0.38] s

  * igt@kms_colorspace@colorspace-set-dci-p3_rgb_theater:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.26] s

  * igt@kms_colorspace@colorspace-set-default:
    - Statuses : 2 pass(s)
    - Exec time: [0.36, 0.37] s

  * igt@kms_colorspace@colorspace-set-oprgb:
    - Statuses : 2 pass(s)
    - Exec time: [0.37, 0.45] s

  * igt@kms_colorspace@colorspace-set-opycc_601:
    - Statuses : 1 pass(s)
    - Exec time: [1.40] s

  * igt@kms_colorspace@colorspace-set-rgb_wide_gamut_fixed_point:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-set-rgb_wide_gamut_floating_point:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@kms_colorspace@colorspace-set-smpte_170m_ycc:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.38] s

  * igt@kms_colorspace@colorspace-set-sycc_601:
    - Statuses : 2 pass(s)
    - Exec time: [0.48, 1.43] s

  * igt@kms_colorspace@colorspace-set-xvycc_601:
    - Statuses : 2 pass(s)
    - Exec time: [0.37, 0.45] s

  * igt@kms_colorspace@colorspace-set-xvycc_709:
    - Statuses : 2 pass(s)
    - Exec time: [0.39, 0.44] s

  * igt@kms_colorspace@colorspace-suspend:
    - Statuses : 2 fail(s)
    - Exec time: [1.58, 1.73] s

  * igt@kms_colorspace@colorspace-unsupported-value:
    - Statuses : 1 fail(s)
    - Exec time: [0.09] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#2370])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html

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

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

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

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

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#4422] / [Intel XE#7442])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

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

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

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [PASS][28] -> [FAIL][29] ([Intel XE#301]) +1 other test fail
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [PASS][30] -> [FAIL][31] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

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

  * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#7179]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2311]) +32 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

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

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

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

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

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

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#6911] / [Intel XE#7378])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#4090] / [Intel XE#7443])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-10/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

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

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

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@pixel-format-y-tiled-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#7283]) +5 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-modifier.html

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

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

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

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

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

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

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

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2387] / [Intel XE#7429]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html

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

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

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2330] / [Intel XE#5813])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

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

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

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

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

  * igt@kms_vrr@flipline:
    - shard-lnl:          [PASS][62] -> [FAIL][63] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-1/igt@kms_vrr@flipline.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-lnl-2/igt@kms_vrr@flipline.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [PASS][64] -> [FAIL][65] ([Intel XE#2142]) +1 other test fail
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

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

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][67] -> [INCOMPLETE][68] ([Intel XE#6321])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_evict@evict-small-multi-queue-priority-cm:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#7140])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-6/igt@xe_evict@evict-small-multi-queue-priority-cm.html

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  
#### Possible fixes ####

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

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][88] ([Intel XE#1503]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-7/igt@kms_hdr@invalid-hdr.html

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

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][92] ([Intel XE#6321]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html

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

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

  
#### Warnings ####

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][98] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][99] ([Intel XE#1729] / [Intel XE#7424])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15058/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [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#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [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#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
  [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
  [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
  [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8874 -> IGTPW_15058

  IGTPW_15058: b28874ff6499f9c5303948a456eaf068a402e3fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf

== Logs ==

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

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

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

* RE: [PATCH i-g-t 2/2] tests/kms_colorspace: Add Colorspace connector property test
  2026-04-27 10:55 ` [PATCH i-g-t 2/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
@ 2026-04-29  4:18   ` Bilal, Mohammed
  0 siblings, 0 replies; 8+ messages in thread
From: Bilal, Mohammed @ 2026-04-29  4:18 UTC (permalink / raw)
  To: Sharma, Swati2, igt-dev@lists.freedesktop.org; +Cc: Sharma, Swati2

Hello Swati ,

> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati
> Sharma
> Sent: 27 April 2026 16:25
> To: igt-dev@lists.freedesktop.org
> Cc: Sharma, Swati2 <swati2.sharma@intel.com>
> Subject: [PATCH i-g-t 2/2] tests/kms_colorspace: Add Colorspace connector
> property test
> 
> Add a dedicated IGT test for the DRM Colorspace connector property, exercising
> both basic functionality and edge cases:
> 
>   - colorspace-enum-list: verify the property exists as an enum with
>     at least the Default value.
>   - colorspace-set-%s: set each supported colorspace value and verify
>     readback via atomic commit (16 parameterized subtests).
>   - colorspace-crc-%s: CRC sanity check confirming output is not
>     corrupted when each colorspace value is active (16 subtests).
>   - colorspace-dpms: verify colorspace survives DPMS off/on cycles.
>   - colorspace-suspend: verify colorspace survives suspend/resume.
>   - colorspace-invalid: reject out-of-range enum values (-EINVAL).
>   - colorspace-connector-type: validate HDMI-only enums are absent
>     on DP connectors and vice-versa.
>   - colorspace-unsupported-value: force a valid but unsupported enum
>     value via the numeric path and verify kernel rejection.
> 
> The test covers the full kernel drm_colorspace enum (16 values) and uses a static
> name-to-value mapping table for the unsupported-value subtest, eliminating the
> need for multiple connected outputs.
> 
> Co-developed-by: Claude Opus 4.6 (Anthropic AI)
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
>  tests/kms_colorspace.c | 925
> +++++++++++++++++++++++++++++++++++++++++
>  tests/meson.build      |   3 +-
>  2 files changed, 927 insertions(+), 1 deletion(-)  create mode 100644
> tests/kms_colorspace.c
> 
> diff --git a/tests/kms_colorspace.c b/tests/kms_colorspace.c new file mode
> 100644 index 000000000..8becab72f
> --- /dev/null
> +++ b/tests/kms_colorspace.c
> @@ -0,0 +1,925 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +/**
> + * TEST: kms colorspace
> + * Category: Display
> + * Description: Test the Colorspace connector property
> + * Driver requirement: any
> + * Mega feature: Color Management
> + */
> +
> +#include "igt.h"
> +#include <fcntl.h>
> +#include <inttypes.h>
> +#include <xf86drmMode.h>
> +
> +/**
> + * SUBTEST: colorspace-enum-list
> + * Description: Verify that the Colorspace property is an enum and lists
> + *              at least the Default value.
> + *
> + * SUBTEST: colorspace-set-%s
> + * Description: Set the Colorspace connector property to %arg[1] and
> + *              verify atomic commit succeeds.
> + *
> + * arg[1]:
> + *
> + * @Default:				Default colorspace
> + * @RGB_Wide_Gamut_Fixed_Point:		RGB Wide Gamut Fixed Point
> + * @RGB_Wide_Gamut_Floating_Point:	RGB Wide Gamut Floating Point
> + * @opRGB:				opRGB colorspace
> + * @DCI-P3_RGB_D65:			DCI-P3 RGB D65 colorspace
> + * @DCI-P3_RGB_Theater:		DCI-P3 RGB Theater colorspace
> + * @BT2020_RGB:			BT.2020 RGB colorspace
> + * @BT709_YCC:				BT.709 YCC colorspace
> + * @XVYCC_601:				xvYCC 601 colorspace
> + * @XVYCC_709:				xvYCC 709 colorspace
> + * @SYCC_601:				sYCC 601 colorspace
> + * @opYCC_601:				opYCC 601 colorspace
> + * @BT2020_YCC:			BT.2020 YCC colorspace
> + * @BT2020_CYCC:			BT.2020 constant-luminance YCC
> + * @BT601_YCC:				BT.601 YCC colorspace (DP)
> + * @SMPTE_170M_YCC:			SMPTE 170M YCC colorspace
> + *
> + * SUBTEST: colorspace-crc-%s
> + * Description: Verify that setting Colorspace to %arg[1] does not corrupt
> + *              the display output (CRC sanity check).
> + *
> + * arg[1]:
> + *
> + * @Default:				Default colorspace
> + * @RGB_Wide_Gamut_Fixed_Point:		RGB Wide Gamut Fixed Point
> + * @RGB_Wide_Gamut_Floating_Point:	RGB Wide Gamut Floating Point
> + * @opRGB:				opRGB colorspace
> + * @DCI-P3_RGB_D65:			DCI-P3 RGB D65 colorspace
> + * @DCI-P3_RGB_Theater:		DCI-P3 RGB Theater colorspace
> + * @BT2020_RGB:			BT.2020 RGB colorspace
> + * @BT709_YCC:				BT.709 YCC colorspace
> + * @XVYCC_601:				xvYCC 601 colorspace
> + * @XVYCC_709:				xvYCC 709 colorspace
> + * @SYCC_601:				sYCC 601 colorspace
> + * @opYCC_601:				opYCC 601 colorspace
> + * @BT2020_YCC:			BT.2020 YCC colorspace
> + * @BT2020_CYCC:			BT.2020 constant-luminance YCC
> + * @BT601_YCC:				BT.601 YCC colorspace (DP)
> + * @SMPTE_170M_YCC:			SMPTE 170M YCC colorspace
> + *
> + * SUBTEST: colorspace-dpms
> + * Description: Set a non-default Colorspace, cycle DPMS off/on, and verify
> + *              the property value is preserved.
> + *
> + * SUBTEST: colorspace-suspend
> + * Description: Set a non-default Colorspace, suspend/resume, and verify
> + *              the property value is preserved.
> + *
> + * SUBTEST: colorspace-invalid
> + * Description: Verify that the kernel rejects invalid Colorspace values.
> + *
> + * SUBTEST: colorspace-connector-type
> + * Description: Validate that connector-type-specific Colorspace values are
> + *              advertised only on the appropriate connector types.
> + *
> + * SUBTEST: colorspace-unsupported-value
> + * Description: Verify that the kernel rejects a Colorspace enum value
> + *              that is not supported by the connector.
> + */
> +
> +IGT_TEST_DESCRIPTION("Test DRM Colorspace connector property");
> +
> +/* Colorspace enum values reported by the kernel.
> + * Not all connectors support all values; HDMI and DP have different subsets.
> + * The string names must match the kernel's drm_get_colorspace_name()
> output.
> + */
> +static const char * const colorspace_names[] = {
> +	"Default",
> +	"RGB_Wide_Gamut_Fixed_Point",
> +	"RGB_Wide_Gamut_Floating_Point",
> +	"opRGB",		/* kernel-defined name per
> drm_get_colorspace_name() */
> +	"DCI-P3_RGB_D65",
> +	"DCI-P3_RGB_Theater",
> +	"BT2020_RGB",
> +	"BT709_YCC",
> +	"XVYCC_601",
> +	"XVYCC_709",
> +	"SYCC_601",
> +	"opYCC_601",
> +	"BT2020_YCC",
> +	"BT2020_CYCC",
> +	"BT601_YCC",
> +	"SMPTE_170M_YCC",
> +};
> +
> +typedef struct data {
> +	igt_display_t display;
> +	int drm_fd;
> +} data_t;
> +
> +static drmModePropertyPtr
> +get_colorspace_prop(igt_output_t *output) {
> +	igt_display_t *display = output->display;
> +
> +	if (!igt_output_has_prop(output, IGT_CONNECTOR_COLORSPACE))
> +		return NULL;
> +
> +	return drmModeGetProperty(display->drm_fd,
> +				  output-
> >props[IGT_CONNECTOR_COLORSPACE]);
> +}
> +
> +/* Check whether @prop contains an enum entry named @name. */ static
> +bool prop_has_enum(drmModePropertyPtr prop, const char *name) {
> +	for (int i = 0; i < prop->count_enums; i++)
> +		if (strcmp(prop->enums[i].name, name) == 0)
> +			return true;
> +	return false;
> +}
> +
> +static bool
> +output_supports_colorspace(igt_output_t *output, const char *cs) {
> +	drmModePropertyPtr prop;
> +	bool found;
> +
> +	prop = get_colorspace_prop(output);
> +	if (!prop)
> +		return false;
> +
> +	found = prop_has_enum(prop, cs);
> +	drmModeFreeProperty(prop);
> +	return found;
> +}
> +
> +/*
> + * Read back the current Colorspace enum name from the kernel into @buf.
> + * Returns true if the value was found in the property's enum list.
> + */
> +static bool
> +readback_colorspace(igt_output_t *output, char *buf, size_t len) {
> +	drmModePropertyPtr prop;
> +	uint64_t val;
> +	bool found = false;
> +
> +	val = igt_output_get_prop(output, IGT_CONNECTOR_COLORSPACE);
> +	prop = get_colorspace_prop(output);
> +	igt_assert(prop);
> +
> +	for (int i = 0; i < prop->count_enums; i++) {
> +		if ((uint64_t)prop->enums[i].value == val) {
> +			snprintf(buf, len, "%s", prop->enums[i].name);
> +			found = true;
> +			break;
> +		}
> +	}
> +
> +	drmModeFreeProperty(prop);
> +	return found;
> +}
> +
> +static void
> +assert_colorspace_eq(igt_output_t *output, const char *expected) {
> +	char buf[64];
> +
> +	igt_assert_f(readback_colorspace(output, buf, sizeof(buf)) &&
> +		     strcmp(buf, expected) == 0,
> +		     "Connector %s: expected '%s', got '%s'\n",
> +		     igt_output_name(output), expected, buf); }
> +
> +/*
> + * Find the first non-default Colorspace value supported by @output.
> + * Returns NULL if no non-default value is available.
> + * Starts at index 1 to skip "Default" (always at index 0).
> + */
> +static const char *
> +find_non_default_colorspace(igt_output_t *output) {
> +	drmModePropertyPtr prop;
> +	const char *result = NULL;
> +
> +	prop = get_colorspace_prop(output);
> +	if (!prop)
> +		return NULL;
> +
> +	/* Skip index 0 (Default) */
> +	for (int i = 1; i < ARRAY_SIZE(colorspace_names); i++) {
> +		if (prop_has_enum(prop, colorspace_names[i])) {
> +			result = colorspace_names[i];
> +			break;
> +		}
> +	}
> +
> +	drmModeFreeProperty(prop);
> +	return result;
> +}
> +
> +static bool
> +crc_is_nonzero(const igt_crc_t *crc)
> +{
> +	for (int i = 0; i < crc->n_words; i++)
> +		if (crc->crc[i])
> +			return true;
> +	return false;
> +}
> +
> +static void
> +prepare_output(data_t *data, igt_output_t *output, igt_crtc_t **crtc_out,
> +	       struct igt_fb *fb_out)
> +{
> +	igt_display_t *display = &data->display;
> +	drmModeModeInfo *mode;
> +	igt_crtc_t *crtc;
> +	igt_plane_t *primary;
> +
> +	for_each_crtc(display, crtc) {
> +		igt_output_set_crtc(output, crtc);
> +		if (!intel_pipe_output_combo_valid(display)) {
> +			igt_output_set_crtc(output, NULL);
> +			continue;
> +		}
> +
> +		/* FB is created only after a valid CRTC is found. */
> +		mode = igt_output_get_mode(output);
> +		primary = igt_output_get_plane_type(output,
> DRM_PLANE_TYPE_PRIMARY);
> +
> +		igt_create_pattern_fb(data->drm_fd,
> +				     mode->hdisplay, mode->vdisplay,
> +				     DRM_FORMAT_XRGB8888,
> +				     DRM_FORMAT_MOD_LINEAR, fb_out);
> +		igt_plane_set_fb(primary, fb_out);
> +
> +		igt_display_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET,
> +					  NULL);
> +
> +		*crtc_out = crtc;
> +		return;
> +	}
> +
> +	igt_skip("No valid CRTC found for output %s\n",
> +igt_output_name(output)); }
> +
> +static void
> +cleanup_output(data_t *data, igt_output_t *output, struct igt_fb *fb) {
> +	igt_display_reset(&data->display);
> +	igt_display_commit_atomic(&data->display,
> +				  DRM_MODE_ATOMIC_ALLOW_MODESET,
> NULL);
> +	igt_remove_fb(data->drm_fd, fb);
> +}
> +
> +/*
> + * Subtest: colorspace-enum-list
> + *
> + * Verify the Colorspace property exists and is an enum with at least
> + * "Default" among its values.
> + */
> +static void
> +test_colorspace_enum_list(data_t *data) {
> +	igt_display_t *display = &data->display;
> +	igt_output_t *output;
> +	bool tested = false;
> +
> +	for_each_connected_output(display, output) {
> +		if (!igt_output_has_prop(output,
> IGT_CONNECTOR_COLORSPACE))
> +			continue;
> +
> +		igt_assert_f(output_supports_colorspace(output, "Default"),
> +			     "Connector %s: Colorspace property missing 'Default'
> value\n",
> +			     igt_output_name(output));
> +
> +		igt_info("Connector %s: Colorspace property present, 'Default'
> supported\n",
> +			 igt_output_name(output));
> +		tested = true;
> +	}
> +
> +	igt_require_f(tested, "No connector with Colorspace property
> +found\n"); }
> +
> +/*
> + * Subtest: colorspace-set-<name>
> + *
> + * For each connected output that supports the requested colorspace,
> + * set it, commit, and verify the property value readback.
> + */
> +static void
> +test_colorspace_set(data_t *data, const char *cs) {
> +	igt_display_t *display = &data->display;
> +	igt_output_t *output;
> +	bool tested = false;
> +
> +	for_each_connected_output(display, output) {
> +		igt_crtc_t *crtc = NULL;
> +		drmModePropertyPtr prop;
> +		struct igt_fb fb;
> +		int ret;
> +
> +		prop = get_colorspace_prop(output);
> +		if (!prop)
> +			continue;
> +
> +		if (!prop_has_enum(prop, cs)) {
> +			drmModeFreeProperty(prop);
> +			igt_info("Connector %s: skipping, Colorspace '%s' not
> supported\n",
> +				 igt_output_name(output), cs);
> +			continue;
> +		}
> +		drmModeFreeProperty(prop);
> +
> +		prepare_output(data, output, &crtc, &fb);
> +
> +		igt_output_set_prop_enum(output,
> IGT_CONNECTOR_COLORSPACE, cs);
> +		ret = igt_display_try_commit_atomic(display,
> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> +		igt_assert_f(ret == 0,
> +			     "Connector %s: Failed to commit Colorspace '%s'
> (ret=%d)\n",
> +			     igt_output_name(output), cs, ret);
> +
> +		/* Apply state fully so subsequent readback reflects HW */
> +		igt_display_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> +
> +		/* Verify the property value was persisted by the kernel */
> +		assert_colorspace_eq(output, cs);
> +
> +		igt_info("Connector %s: Successfully set Colorspace to '%s'\n",
> +			 igt_output_name(output), cs);
> +
> +		cleanup_output(data, output, &fb);
> +		tested = true;
> +	}
> +
> +	igt_require_f(tested, "No connector supports Colorspace '%s'\n", cs);
> +}
> +
> +/*
> + * Subtest: colorspace-crc-<name>
> + *
> + * This is a pipeline sanity check, not a functional CSC validation.
> + * Set the colorspace, display a pattern framebuffer, collect the CRC,
> +and
> + * verify it is non-zero (confirming the display pipeline produced
> +output
> + * and was not blanked or corrupted).  CRC comparison between Default
> +and
> + * the requested colorspace is logged for diagnostics only, since with
> +RGB
> + * framebuffers (XRGB8888) the colorspace change typically does not
> +affect
> + * the pipe CRC (conversion happens after the CRC tap point on most HW).
> + */
> +static void
> +test_colorspace_crc(data_t *data, const char *cs) {
> +	igt_display_t *display = &data->display;
> +	igt_output_t *output;
> +	bool tested = false;
> +
> +	for_each_connected_output(display, output) {
> +		igt_crtc_t *crtc = NULL;
> +		igt_pipe_crc_t *pipe_crc;
> +		igt_crc_t crc_default, crc_cs;
> +		drmModePropertyPtr prop;
> +		struct igt_fb fb;
> +
> +		prop = get_colorspace_prop(output);
> +		if (!prop)
> +			continue;
> +
> +		if (!prop_has_enum(prop, cs) ||
> +		    !prop_has_enum(prop, "Default")) {
> +			drmModeFreeProperty(prop);
> +			igt_info("Connector %s: skipping CRC, Colorspace '%s' or
> 'Default' not supported\n",
> +				 igt_output_name(output), cs);
> +			continue;
> +		}
> +		drmModeFreeProperty(prop);
> +
> +		prepare_output(data, output, &crtc, &fb);
> +
> +		igt_require_pipe_crc(data->drm_fd);
> +
> +		pipe_crc = igt_pipe_crc_new(data->drm_fd,
> +					    crtc->pipe,
> +					    IGT_PIPE_CRC_SOURCE_AUTO);
> +
> +		/* Collect CRC with Default colorspace */
> +		igt_output_set_prop_enum(output,
> IGT_CONNECTOR_COLORSPACE,
> +					"Default");
> +		igt_display_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> +		igt_wait_for_vblank(crtc);
> +		igt_pipe_crc_collect_crc(pipe_crc, &crc_default);
> +
> +		/* Sanity: CRC from Default must be non-zero */
> +		igt_assert_f(crc_is_nonzero(&crc_default),
> +			     "Connector %s: CRC with Default colorspace is all
> zeros\n",
> +			     igt_output_name(output));
> +
> +		/* Collect CRC with requested colorspace */
> +		igt_output_set_prop_enum(output,
> IGT_CONNECTOR_COLORSPACE, cs);
> +		igt_display_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> +		igt_wait_for_vblank(crtc);
> +		igt_pipe_crc_collect_crc(pipe_crc, &crc_cs);
> +
> +		/* CRC with the requested colorspace must also be non-zero */
> +		igt_assert_f(crc_is_nonzero(&crc_cs),
> +			     "Connector %s: CRC with Colorspace '%s' is all
> zeros\n",
> +			     igt_output_name(output), cs);
> +
> +		/*
> +		 * This is a pipeline sanity check only — it verifies
> +		 * that the display output is alive and non-zero, not
> +		 * that the colorspace is functionally applied.
> +		 * With RGB framebuffers (XRGB8888), colorspace changes
> +		 * typically do not affect pipe CRC since the conversion
> +		 * may happen after the CRC tap point.
> +		 * For functional CSC validation, use YCbCr framebuffer
> +		 * formats or test at the sink side.
> +		 * Log the result for diagnostic purposes only.
> +		 */
> +		if (strcmp(cs, "Default") != 0 &&
> +		    !igt_check_crc_equal(&crc_default, &crc_cs))
> +			igt_info("Connector %s: CRC changed with Colorspace
> '%s' "
> +				 "(HW applies output CSC)\n",
> +				 igt_output_name(output), cs);
> +		else
> +			igt_info("Connector %s: CRC unchanged with Colorspace
> '%s' "
> +				 "(expected for RGB output)\n",
> +				 igt_output_name(output), cs);
> +
> +		igt_pipe_crc_free(pipe_crc);
> +		cleanup_output(data, output, &fb);
> +		tested = true;
> +	}
> +
> +	igt_require_f(tested, "No connector supports Colorspace '%s'\n", cs);
> +}
> +
> +/*
> + * Subtest: colorspace-dpms
> + *
> + * Set a non-default Colorspace, cycle DPMS off/on, and verify the
> +property
> + * value is preserved and output remains valid.
> + */
> +static void
> +test_colorspace_dpms(data_t *data)
> +{
> +	igt_display_t *display = &data->display;
> +	igt_output_t *output;
> +	bool tested = false;
> +
> +	for_each_connected_output(display, output) {
> +		igt_crtc_t *crtc = NULL;
> +		igt_pipe_crc_t *pipe_crc;
> +		igt_crc_t crc_after;
> +		struct igt_fb fb;
> +		const char *cs;
> +
> +		if (!igt_output_has_prop(output,
> IGT_CONNECTOR_COLORSPACE))
> +			continue;
> +
> +		cs = find_non_default_colorspace(output);
> +		if (!cs)
> +			continue;
> +
> +		prepare_output(data, output, &crtc, &fb);
> +
> +		pipe_crc = igt_pipe_crc_new(data->drm_fd,
> +					    crtc->pipe,
> +					    IGT_PIPE_CRC_SOURCE_AUTO);
> +
> +		/* Set non-default colorspace and commit */
> +		igt_output_set_prop_enum(output,
> IGT_CONNECTOR_COLORSPACE, cs);
> +		igt_display_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> +
> +		/* Collect CRC before DPMS cycle */
> +		igt_wait_for_vblank(crtc);
> +		{
> +			igt_crc_t crc_before;
> +
> +			igt_pipe_crc_collect_crc(pipe_crc, &crc_before);
> +
> +			/* DPMS off/on cycle */
> +			kmstest_set_connector_dpms(data->drm_fd,
> +						   output->config.connector,
> +						   DRM_MODE_DPMS_OFF);
> +			kmstest_set_connector_dpms(data->drm_fd,
> +						   output->config.connector,
> +						   DRM_MODE_DPMS_ON);
> +
> +			/*
> +			 * Force a modeset commit so the driver materialises
> any
> +			 * lazily rebuilt state before we read the property back.
> +			 */
> +			igt_assert_eq(igt_display_try_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET,
> +								    NULL), 0);
> +
> +			/* Verify the property value survived the DPMS cycle */
> +			assert_colorspace_eq(output, cs);
> +
> +			/* CRC after DPMS should match before */
> +			igt_wait_for_vblank(crtc);
> +			igt_pipe_crc_collect_crc(pipe_crc, &crc_after);
> +			igt_assert_f(crc_is_nonzero(&crc_after),
> +				     "Connector %s: CRC is all zeros after DPMS
> on\n",
> +				     igt_output_name(output));
> +			igt_assert_crc_equal(&crc_before, &crc_after);
> +		}
> +
> +		igt_info("Connector %s: Colorspace '%s' preserved across DPMS
> cycle\n",
> +			 igt_output_name(output), cs);
> +
> +		igt_pipe_crc_free(pipe_crc);
> +		cleanup_output(data, output, &fb);
> +		tested = true;
> +	}
> +
> +	igt_require_f(tested, "No connector with non-default Colorspace
> +found\n"); }
> +
> +/*
> + * Subtest: colorspace-suspend
> + *
> + * Set a non-default Colorspace, suspend/resume, and verify the
> +property
> + * value is preserved and output remains valid.
> + */
> +static void
> +test_colorspace_suspend(data_t *data)
> +{
> +	igt_display_t *display = &data->display;
> +	igt_output_t *output;
> +	bool tested = false;
> +
> +	for_each_connected_output(display, output) {
> +		igt_crtc_t *crtc = NULL;
> +		igt_pipe_crc_t *pipe_crc;
> +		igt_crc_t crc_after;
> +		struct igt_fb fb;
> +		const char *cs;
> +
> +		if (!igt_output_has_prop(output,
> IGT_CONNECTOR_COLORSPACE))
> +			continue;
> +
> +		cs = find_non_default_colorspace(output);
> +		if (!cs)
> +			continue;
> +
> +		prepare_output(data, output, &crtc, &fb);
> +
> +		pipe_crc = igt_pipe_crc_new(data->drm_fd,
> +					    crtc->pipe,
> +					    IGT_PIPE_CRC_SOURCE_AUTO);
> +
> +		igt_output_set_prop_enum(output,
> IGT_CONNECTOR_COLORSPACE, cs);
> +		igt_display_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> +
> +		/* Suspend/resume */
> +		igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> +					      SUSPEND_TEST_NONE);
> +
> +		/*
> +		 * Re-probe display state after resume to pick up any
> +		 * connector/CRTC changes, then force a modeset commit
> +		 * so the driver materialises rebuilt state.
> +		 */
> +		igt_display_reset(display);

igt_display_reset() resets the Colorspace back to "Default" before the commit, so assert_colorspace_eq() is checking "Default" not cs. 
Could you re-apply cs after igt_display_reset() and before the commit?

Thanks,
Bilal.

> +		igt_output_set_crtc(output, crtc);
> +		igt_plane_set_fb(igt_output_get_plane_type(output,
> +				 DRM_PLANE_TYPE_PRIMARY), &fb);
> +		igt_assert_eq(igt_display_try_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET,
> +							    NULL), 0);
> +
> +		/* Verify the property value survived suspend/resume */
> +		assert_colorspace_eq(output, cs);
> +
> +		/* CRC sanity: display output must be non-zero after resume */
> +		igt_wait_for_vblank(crtc);
> +		igt_pipe_crc_collect_crc(pipe_crc, &crc_after);
> +		igt_assert_f(crc_is_nonzero(&crc_after),
> +			     "Connector %s: CRC is all zeros after resume\n",
> +			     igt_output_name(output));
> +
> +		igt_info("Connector %s: Colorspace '%s' preserved across
> suspend/resume\n",
> +			 igt_output_name(output), cs);
> +
> +		igt_pipe_crc_free(pipe_crc);
> +		cleanup_output(data, output, &fb);
> +		tested = true;
> +	}
> +
> +	igt_require_f(tested, "No connector with non-default Colorspace
> +found\n"); }
> +
> +/*
> + * Subtest: colorspace-invalid
> + *
> + * Verify the kernel rejects out-of-range Colorspace enum values.
> + */
> +static void
> +test_colorspace_invalid(data_t *data)
> +{
> +	igt_display_t *display = &data->display;
> +	igt_output_t *output;
> +	bool tested = false;
> +
> +	for_each_connected_output(display, output) {
> +		igt_crtc_t *crtc = NULL;
> +		drmModePropertyPtr prop;
> +		struct igt_fb fb;
> +		uint64_t invalid;
> +		int ret;
> +
> +		if (!igt_output_has_prop(output,
> IGT_CONNECTOR_COLORSPACE))
> +			continue;
> +
> +		/*
> +		 * Derive an invalid value well past the last defined enum.
> +		 * Adding 100 avoids any risk of hitting a valid but sparse
> +		 * enum value.
> +		 */
> +		prop = get_colorspace_prop(output);
> +		igt_assert(prop && prop->count_enums > 0);
> +		invalid = prop->enums[prop->count_enums - 1].value + 100;
> +		drmModeFreeProperty(prop);
> +
> +		prepare_output(data, output, &crtc, &fb);
> +
> +		igt_output_set_prop_value(output,
> IGT_CONNECTOR_COLORSPACE,
> +					  invalid);
> +		ret = igt_display_try_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET,
> +						    NULL);
> +		igt_assert_f(ret == -EINVAL,
> +			     "Connector %s: Expected -EINVAL for invalid
> Colorspace %" PRIu64 ", got %d\n",
> +			     igt_output_name(output), invalid, ret);
> +
> +		igt_info("Connector %s: Invalid Colorspace %" PRIu64 " correctly
> rejected\n",
> +			 igt_output_name(output), invalid);
> +
> +		cleanup_output(data, output, &fb);
> +		tested = true;
> +	}
> +
> +	igt_require_f(tested, "No connector with Colorspace property
> +found\n"); }
> +
> +/*
> + * Subtest: colorspace-connector-type
> + *
> + * Validate connector-type-specific Colorspace enum expectations.
> + * HDMI connectors should not advertise DP-only values like BT601_YCC.
> + */
> +static bool
> +is_dp_connector(igt_output_t *output)
> +{
> +	uint32_t type = output->config.connector->connector_type;
> +
> +	return type == DRM_MODE_CONNECTOR_DisplayPort ||
> +	       type == DRM_MODE_CONNECTOR_eDP; }
> +
> +static bool
> +is_hdmi_connector(igt_output_t *output) {
> +	uint32_t type = output->config.connector->connector_type;
> +
> +	return type == DRM_MODE_CONNECTOR_HDMIA ||
> +	       type == DRM_MODE_CONNECTOR_HDMIB; }
> +
> +static void
> +test_colorspace_connector_type(data_t *data) {
> +	igt_display_t *display = &data->display;
> +	igt_output_t *output;
> +	bool tested = false;
> +
> +	for_each_connected_output(display, output) {
> +		if (!igt_output_has_prop(output,
> IGT_CONNECTOR_COLORSPACE))
> +			continue;
> +
> +		/*
> +		 * BT601_YCC is defined only in the DP colorspace enum list
> +		 * in the kernel.  HDMI connectors must not expose it.
> +		 */
> +		if (is_hdmi_connector(output)) {
> +			igt_assert_f(!output_supports_colorspace(output,
> "BT601_YCC"),
> +				     "HDMI connector %s should not advertise
> BT601_YCC\n",
> +				     igt_output_name(output));
> +			igt_info("HDMI connector %s: correctly omits
> BT601_YCC\n",
> +				 igt_output_name(output));
> +		}
> +
> +		/*
> +		 * DP connectors with a Colorspace property are expected to
> +		 * support BT601_YCC per the DP 1.4a VSC SDP spec, but some
> +		 * platforms may not expose the full enum set.  Warn rather
> +		 * than assert to avoid false failures on such platforms.
> +		 */
> +		if (is_dp_connector(output)) {
> +			if (!output_supports_colorspace(output, "BT601_YCC"))
> +				igt_warn("DP connector %s: BT601_YCC not
> advertised "
> +					 "(commonly expected for DP
> connectors)\n",
> +					 igt_output_name(output));
> +			else
> +				igt_info("DP connector %s: BT601_YCC correctly
> advertised\n",
> +					 igt_output_name(output));
> +		}
> +
> +		tested = true;
> +	}
> +
> +	igt_require_f(tested, "No connector with Colorspace property
> +found\n"); }
> +
> +/*
> + * Subtest: colorspace-unsupported-value
> + *
> + * For each connector, find a colorspace enum value that exists in the
> + * kernel's global drm_colorspace enum but is NOT advertised by this
> + * connector, then force it via the numeric path and verify the kernel
> + * rejects the commit with -EINVAL.
> + */
> +
> +/*
> + * Kernel drm_colorspace enum values — must match the kernel's
> + * enum drm_colorspace definition in include/drm/drm_connector.h.
> + * If the kernel adds or renumbers values, this table must be updated.
> + * HDMI and DP connectors each expose a different subset of these.
> + */
> +static int64_t
> +colorspace_kernel_value(const char *name) {
> +	static const struct {
> +		const char *name;
> +		uint64_t value;
> +	} map[] = {
> +		{ "Default",				0 },
> +		{ "SMPTE_170M_YCC",			1 },
> +		{ "BT709_YCC",				2 },
> +		{ "XVYCC_601",				3 },
> +		{ "XVYCC_709",				4 },
> +		{ "SYCC_601",				5 },
> +		{ "opYCC_601",				6 },
> +		{ "opRGB",				7 },
> +		{ "BT2020_CYCC",			8 },
> +		{ "BT2020_RGB",				9 },
> +		{ "BT2020_YCC",			10 },
> +		{ "DCI-P3_RGB_D65",			11 },
> +		{ "DCI-P3_RGB_Theater",			12 },
> +		{ "RGB_Wide_Gamut_Fixed_Point",		13 },
> +		{ "RGB_Wide_Gamut_Floating_Point",	14 },
> +		{ "BT601_YCC",				15 },
> +	};
> +
> +	for (int i = 0; i < ARRAY_SIZE(map); i++)
> +		if (strcmp(map[i].name, name) == 0)
> +			return (int64_t)map[i].value;
> +
> +	return -1;
> +}
> +
> +static void
> +test_colorspace_unsupported_value(data_t *data) {
> +	igt_display_t *display = &data->display;
> +	igt_output_t *output;
> +	bool tested = false;
> +
> +	for_each_connected_output(display, output) {
> +		igt_crtc_t *crtc = NULL;
> +		drmModePropertyPtr prop;
> +		struct igt_fb fb;
> +		uint64_t unsupported_val = 0;
> +		const char *unsupported_name = NULL;
> +		bool found = false;
> +		int ret;
> +
> +		prop = get_colorspace_prop(output);
> +		if (!prop)
> +			continue;
> +
> +		/*
> +		 * Find a colorspace that this connector does NOT advertise.
> +		 * Look up its numeric value from the kernel's global
> +		 * drm_colorspace enum definition, so we don't need a
> +		 * second connector.
> +		 */
> +		for (int i = 0; i < ARRAY_SIZE(colorspace_names); i++) {
> +			int64_t val;
> +
> +			if (prop_has_enum(prop, colorspace_names[i]))
> +				continue;
> +
> +			val = colorspace_kernel_value(colorspace_names[i]);
> +			if (val < 0)
> +				continue;
> +
> +			unsupported_val = (uint64_t)val;
> +			unsupported_name = colorspace_names[i];
> +			found = true;
> +			break;
> +		}
> +
> +		drmModeFreeProperty(prop);
> +
> +		if (!found) {
> +			igt_info("Connector %s: supports all known colorspaces,
> "
> +				 "skipping\n", igt_output_name(output));
> +			continue;
> +		}
> +
> +		prepare_output(data, output, &crtc, &fb);
> +
> +		/* Force the unsupported numeric value via the raw path */
> +		igt_output_set_prop_value(output,
> IGT_CONNECTOR_COLORSPACE,
> +					  unsupported_val);
> +		ret = igt_display_try_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET,
> +						    NULL);
> +		igt_assert_f(ret == -EINVAL,
> +			     "Connector %s: Expected -EINVAL for unsupported
> '%s' "
> +			     "(value %" PRIu64 "), got %d\n",
> +			     igt_output_name(output), unsupported_name,
> +			     unsupported_val, ret);
> +
> +		igt_info("Connector %s: Unsupported '%s' (value %" PRIu64 ") "
> +			 "correctly rejected by kernel\n",
> +			 igt_output_name(output), unsupported_name,
> +			 unsupported_val);
> +
> +		/* cleanup_output() resets display state internally */
> +		cleanup_output(data, output, &fb);
> +		tested = true;
> +	}
> +
> +	igt_require_f(tested,
> +		      "No connector with unsupported Colorspace value found "
> +		      "(all connectors support all known values)\n"); }
> +
> +int igt_main()
> +{
> +	data_t data = {};
> +	int i;
> +
> +	igt_fixture() {
> +		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> +
> +		kmstest_set_vt_graphics_mode();
> +
> +		igt_display_require(&data.display, data.drm_fd);
> +		igt_require(data.display.is_atomic);
> +	}
> +
> +	igt_describe("Verify the Colorspace property is an enum with at least
> 'Default'");
> +	igt_subtest("colorspace-enum-list")
> +		test_colorspace_enum_list(&data);
> +
> +	for (i = 0; i < ARRAY_SIZE(colorspace_names); i++) {
> +		igt_describe_f("Set Colorspace to '%s' and verify atomic commit
> succeeds",
> +			       colorspace_names[i]);
> +		igt_subtest_f("colorspace-set-%s", colorspace_names[i])
> +			test_colorspace_set(&data, colorspace_names[i]);
> +	}
> +
> +	for (i = 0; i < ARRAY_SIZE(colorspace_names); i++) {
> +		igt_describe_f("Verify CRC sanity with Colorspace set to '%s'",
> +			       colorspace_names[i]);
> +		igt_subtest_f("colorspace-crc-%s", colorspace_names[i])
> +			test_colorspace_crc(&data, colorspace_names[i]);
> +	}
> +
> +	igt_describe("Verify Colorspace persists across DPMS off/on cycle");
> +	igt_subtest("colorspace-dpms")
> +		test_colorspace_dpms(&data);
> +
> +	igt_describe("Verify Colorspace persists across suspend/resume");
> +	igt_subtest("colorspace-suspend")
> +		test_colorspace_suspend(&data);
> +
> +	igt_describe("Verify kernel rejects invalid Colorspace values");
> +	igt_subtest("colorspace-invalid")
> +		test_colorspace_invalid(&data);
> +
> +	igt_describe("Validate connector-type-specific Colorspace enum
> values");
> +	igt_subtest("colorspace-connector-type")
> +		test_colorspace_connector_type(&data);
> +
> +	igt_describe("Verify kernel rejects unsupported Colorspace value for
> connector");
> +	igt_subtest("colorspace-unsupported-value")
> +		test_colorspace_unsupported_value(&data);
> +
> +	igt_fixture() {
> +		igt_display_fini(&data.display);
> +		drm_close_driver(data.drm_fd);
> +	}
> +}
> diff --git a/tests/meson.build b/tests/meson.build index 09b0cc27c..dba718b16
> 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -26,8 +26,9 @@ test_progs = [
>  	'kms_bw',
>  	'kms_color',
>  	'kms_color_pipeline',
> -	'kms_concurrent',
>  	'kms_colorop',
> +	'kms_colorspace',
> +	'kms_concurrent',
>  	'kms_content_protection',
>  	'kms_cursor_crc',
>  	'kms_cursor_edge_walk',
> --
> 2.25.1


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

end of thread, other threads:[~2026-04-29  4:18 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-27 10:55 [PATCH i-g-t 0/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
2026-04-27 10:55 ` [PATCH i-g-t 1/2] lib/igt_kms: Add Colorspace connector property support Swati Sharma
2026-04-27 10:55 ` [PATCH i-g-t 2/2] tests/kms_colorspace: Add Colorspace connector property test Swati Sharma
2026-04-29  4:18   ` Bilal, Mohammed
2026-04-27 19:23 ` ✓ i915.CI.BAT: success for " Patchwork
2026-04-27 19:33 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-27 22:55 ` ✗ i915.CI.Full: failure " Patchwork
2026-04-27 23:37 ` ✓ Xe.CI.FULL: success " Patchwork

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