Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
  2025-02-04 18:27 [PATCH i-g-t 0/3] " Jeevan B
@ 2025-02-04 18:27 ` Jeevan B
  2025-02-07  8:25   ` Karthik B S
  0 siblings, 1 reply; 17+ messages in thread
From: Jeevan B @ 2025-02-04 18:27 UTC (permalink / raw)
  To: igt-dev; +Cc: karthik.b.s, Jeevan B

We need to ensure that the system does not use a joiner for modes that do
not require it. This test will validate that the correct non-joiner mode
is selected, and then forcing a modeset and flip on the last pipe. If the
joiner is mistakenly enabled for a non-joiner mode, the test should fail.
otherwise, the commit should proceed as expected.

v2: Fix nonjoiner_mode_found to find the required case(6K@30).
    Remove clk sort and minor fixes. (Karthik)
v3: Rename nonjoiner to non_joiner and minor modifications. (Swati)
v4: Add joiner check. (Karthik)
v5: Rename test name and function name, Update test description,
    update non_joiner_mode_found logic. (Karthik)

Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
 tests/intel/kms_joiner.c | 54 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 086cfeb71..4227aa8b0 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -74,6 +74,10 @@
  *
  * SUBTEST: switch-modeset-ultra-joiner-big-joiner
  * Description: Verify switching between ultra joiner and big joiner modeset.
+ *
+ * SUBTEST: non-joiner-corner-cases
+ * Description: Validate non-joiner mode functionality by enabling corner-case display modes
+ *		that vary across different platforms.
  */
 IGT_TEST_DESCRIPTION("Test joiner / force joiner");
 
@@ -85,6 +89,7 @@ typedef struct {
 	int ultra_joiner_output_count;
 	int non_big_joiner_output_count;
 	int non_ultra_joiner_output_count;
+	int non_joiner_output_count;
 	int mixed_output_count;
 	int output_count;
 	int n_pipes;
@@ -94,6 +99,7 @@ typedef struct {
 	igt_output_t *non_big_joiner_output[IGT_MAX_PIPES];
 	igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
 	igt_output_t *mixed_output[IGT_MAX_PIPES];
+	igt_output_t *non_joiner_output[IGT_MAX_PIPES];
 	enum pipe pipe_seq[IGT_MAX_PIPES];
 	igt_display_t display;
 } data_t;
@@ -491,6 +497,41 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
 	}
 }
 
+static void test_non_joiner_corner_cases(data_t *data)
+{
+	int count;
+	enum pipe pipe;
+	igt_output_t **outputs, *output;
+	igt_fb_t fb;
+	igt_plane_t *primary;
+	drmModeModeInfo *mode;
+
+	count = data->non_joiner_output_count;
+	outputs = data->non_joiner_output;
+	igt_display_reset(&data->display);
+
+	for (int i = 0; i < count; i++) {
+		output = outputs[i];
+		mode = igt_output_get_mode(output);
+		for (pipe = 0; pipe < data->n_pipes - 1; pipe++) {
+			igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+				igt_output_set_pipe(output, pipe);
+				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);
+				igt_plane_set_fb(primary, &fb);
+				igt_display_commit2(&data->display, COMMIT_ATOMIC);
+				igt_assert_f(!igt_is_joiner_enabled(data->drm_fd, pipe),
+					     "Joiner enabled on pipe %c", 'A' + pipe);
+
+				igt_display_reset(&data->display);
+				igt_plane_set_fb(primary, NULL);
+				igt_remove_fb(data->drm_fd, &fb);
+			}
+		}
+	}
+}
+
 igt_main
 {
 	bool ultra_joiner_supported, is_dgfx;
@@ -505,6 +546,7 @@ igt_main
 		data.ultra_joiner_output_count = 0;
 		data.non_big_joiner_output_count = 0;
 		data.non_ultra_joiner_output_count = 0;
+		data.non_joiner_output_count = 0;
 		data.mixed_output_count = 0;
 		data.output_count = 0;
 		j = 0;
@@ -523,6 +565,7 @@ igt_main
 
 		for_each_connected_output(&data.display, output) {
 			bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false;
+			bool non_joiner_found = false;
 			drmModeConnector *connector = output->config.connector;
 
 			/*
@@ -533,6 +576,7 @@ igt_main
 			 */
 			bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
 			ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
+			non_joiner_found = non_joiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
 
 			if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
 				force_joiner_supported = true;
@@ -548,6 +592,9 @@ igt_main
 			else if (force_joiner_supported)
 				data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
 
+			if (non_joiner_found)
+				data.non_joiner_output[data.non_joiner_output_count++] = output;
+
 			data.output_count++;
 		}
 		if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) {
@@ -713,6 +760,13 @@ igt_main
 		}
 	}
 
+	igt_describe("Verify the basic modeset on big joiner mode on all pipes");
+	igt_subtest_with_dynamic("non-joiner-corner-cases") {
+		igt_require_f(data.n_pipes >= 1,
+			      "Minimum of 1 pipe is required.\n");
+			test_non_joiner_corner_cases(&data);
+	}
+
 	igt_fixture {
 		igt_display_fini(&data.display);
 		drm_close_driver(data.drm_fd);
-- 
2.25.1


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

* Re: [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
  2025-02-04 18:27 ` [PATCH i-g-t 3/3] " Jeevan B
@ 2025-02-07  8:25   ` Karthik B S
  0 siblings, 0 replies; 17+ messages in thread
From: Karthik B S @ 2025-02-07  8:25 UTC (permalink / raw)
  To: Jeevan B, igt-dev

Hi,

On 2/4/2025 11:57 PM, Jeevan B wrote:
> We need to ensure that the system does not use a joiner for modes that do
> not require it. This test will validate that the correct non-joiner mode
Please mention what is the correct non-joiner mode.
> is selected, and then forcing a modeset and flip on the last pipe. If the
> joiner is mistakenly enabled for a non-joiner mode, the test should fail.
> otherwise, the commit should proceed as expected.
>
> v2: Fix nonjoiner_mode_found to find the required case(6K@30).
>      Remove clk sort and minor fixes. (Karthik)
> v3: Rename nonjoiner to non_joiner and minor modifications. (Swati)
> v4: Add joiner check. (Karthik)
> v5: Rename test name and function name, Update test description,
>      update non_joiner_mode_found logic. (Karthik)
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
>   tests/intel/kms_joiner.c | 54 ++++++++++++++++++++++++++++++++++++++++
>   1 file changed, 54 insertions(+)
>
> diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
> index 086cfeb71..4227aa8b0 100644
> --- a/tests/intel/kms_joiner.c
> +++ b/tests/intel/kms_joiner.c
> @@ -74,6 +74,10 @@
>    *
>    * SUBTEST: switch-modeset-ultra-joiner-big-joiner
>    * Description: Verify switching between ultra joiner and big joiner modeset.
> + *
> + * SUBTEST: non-joiner-corner-cases
> + * Description: Validate non-joiner mode functionality by enabling corner-case display modes
> + *		that vary across different platforms.
>    */
>   IGT_TEST_DESCRIPTION("Test joiner / force joiner");
>   
> @@ -85,6 +89,7 @@ typedef struct {
>   	int ultra_joiner_output_count;
>   	int non_big_joiner_output_count;
>   	int non_ultra_joiner_output_count;
> +	int non_joiner_output_count;
>   	int mixed_output_count;
>   	int output_count;
>   	int n_pipes;
> @@ -94,6 +99,7 @@ typedef struct {
>   	igt_output_t *non_big_joiner_output[IGT_MAX_PIPES];
>   	igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
>   	igt_output_t *mixed_output[IGT_MAX_PIPES];
> +	igt_output_t *non_joiner_output[IGT_MAX_PIPES];
>   	enum pipe pipe_seq[IGT_MAX_PIPES];
>   	igt_display_t display;
>   } data_t;
> @@ -491,6 +497,41 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
>   	}
>   }
>   
> +static void test_non_joiner_corner_cases(data_t *data)
> +{
> +	int count;
> +	enum pipe pipe;
> +	igt_output_t **outputs, *output;
> +	igt_fb_t fb;
> +	igt_plane_t *primary;
> +	drmModeModeInfo *mode;
> +
> +	count = data->non_joiner_output_count;
> +	outputs = data->non_joiner_output;
> +	igt_display_reset(&data->display);
> +
> +	for (int i = 0; i < count; i++) {
> +		output = outputs[i];
> +		mode = igt_output_get_mode(output);
> +		for (pipe = 0; pipe < data->n_pipes - 1; pipe++) {
> +			igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
> +				igt_output_set_pipe(output, pipe);
> +				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);
> +				igt_plane_set_fb(primary, &fb);
> +				igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +				igt_assert_f(!igt_is_joiner_enabled(data->drm_fd, pipe),
> +					     "Joiner enabled on pipe %c", 'A' + pipe);
> +
> +				igt_display_reset(&data->display);
> +				igt_plane_set_fb(primary, NULL);
> +				igt_remove_fb(data->drm_fd, &fb);
> +			}
> +		}
> +	}
> +}
> +
>   igt_main
>   {
>   	bool ultra_joiner_supported, is_dgfx;
> @@ -505,6 +546,7 @@ igt_main
>   		data.ultra_joiner_output_count = 0;
>   		data.non_big_joiner_output_count = 0;
>   		data.non_ultra_joiner_output_count = 0;
> +		data.non_joiner_output_count = 0;
>   		data.mixed_output_count = 0;
>   		data.output_count = 0;
>   		j = 0;
> @@ -523,6 +565,7 @@ igt_main
>   
>   		for_each_connected_output(&data.display, output) {
>   			bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false;
> +			bool non_joiner_found = false;
>   			drmModeConnector *connector = output->config.connector;
>   
>   			/*
> @@ -533,6 +576,7 @@ igt_main
>   			 */
>   			bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
>   			ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
> +			non_joiner_found = non_joiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
>   
>   			if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
>   				force_joiner_supported = true;
> @@ -548,6 +592,9 @@ igt_main
>   			else if (force_joiner_supported)
>   				data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
>   
> +			if (non_joiner_found)
> +				data.non_joiner_output[data.non_joiner_output_count++] = output;
> +
>   			data.output_count++;
>   		}
>   		if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) {
> @@ -713,6 +760,13 @@ igt_main
>   		}
>   	}
>   
> +	igt_describe("Verify the basic modeset on big joiner mode on all pipes");
Please fix/update this.
> +	igt_subtest_with_dynamic("non-joiner-corner-cases") {

'basic-max-non-joiner' maybe? Please update other function names also 
accordingly.

Thanks,
Karthik.B.S
> +		igt_require_f(data.n_pipes >= 1,
> +			      "Minimum of 1 pipe is required.\n");
> +			test_non_joiner_corner_cases(&data);
> +	}
> +
>   	igt_fixture {
>   		igt_display_fini(&data.display);
>   		drm_close_driver(data.drm_fd);

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

* [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
  2025-02-10 18:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
@ 2025-02-10 18:36 ` Jeevan B
  0 siblings, 0 replies; 17+ messages in thread
From: Jeevan B @ 2025-02-10 18:36 UTC (permalink / raw)
  To: igt-dev; +Cc: karthik.b.s, Jeevan B

We need to ensure that the system does not enable a joiner for modes
that do not require it. This test runs on all pipes and validates
that the highest available resolution and refresh rate within the
max dot clock limit is selected. The test then forces a modeset and
flip on the given pipe and checks the status using the joiner check.
If the joiner is mistakenly enabled for a non-joiner mode, the test
should fail.

v2: Fix nonjoiner_mode_found to find the required case.
    Remove clk sort and minor fixes.
v3: Rename nonjoiner to non_joiner and minor modifications.
v4: Add joiner check.
v5: Rename test name and function name, Update test description,
    update non_joiner_mode_found logic.
v6: Update commit message and rename test, function name.

Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
 tests/intel/kms_joiner.c | 58 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 086cfeb71..7b8cc87a7 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -74,6 +74,10 @@
  *
  * SUBTEST: switch-modeset-ultra-joiner-big-joiner
  * Description: Verify switching between ultra joiner and big joiner modeset.
+ *
+ * SUBTEST: basic-max-non-joiner
+ * Description: Validate non-joiner mode functionality by enabling corner-case display modes
+ *		that vary across different platforms.
  */
 IGT_TEST_DESCRIPTION("Test joiner / force joiner");
 
@@ -85,6 +89,7 @@ typedef struct {
 	int ultra_joiner_output_count;
 	int non_big_joiner_output_count;
 	int non_ultra_joiner_output_count;
+	int non_joiner_output_count;
 	int mixed_output_count;
 	int output_count;
 	int n_pipes;
@@ -94,6 +99,7 @@ typedef struct {
 	igt_output_t *non_big_joiner_output[IGT_MAX_PIPES];
 	igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
 	igt_output_t *mixed_output[IGT_MAX_PIPES];
+	igt_output_t *non_joiner_output[IGT_MAX_PIPES];
 	enum pipe pipe_seq[IGT_MAX_PIPES];
 	igt_display_t display;
 } data_t;
@@ -491,6 +497,42 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
 	}
 }
 
+static void test_basic_max_non_joiner(data_t *data)
+{
+	int count;
+	enum pipe pipe;
+	igt_output_t **outputs, *output;
+	igt_fb_t fb;
+	igt_plane_t *primary;
+	drmModeModeInfo *mode;
+
+	count = data->non_joiner_output_count;
+	outputs = data->non_joiner_output;
+	igt_display_reset(&data->display);
+
+	for (int i = 0; i < count; i++) {
+		output = outputs[i];
+		mode = igt_output_get_mode(output);
+		for (pipe = 0; pipe < data->n_pipes - 1; pipe++) {
+			igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+				igt_output_set_pipe(output, pipe);
+				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);
+				igt_plane_set_fb(primary, &fb);
+				igt_display_commit2(&data->display, COMMIT_ATOMIC);
+				igt_assert_f(!igt_is_joiner_enabled_for_pipe(data->drm_fd, pipe),
+					     "Joiner enabled on pipe %c", 'A' + pipe);
+
+				igt_display_reset(&data->display);
+				igt_plane_set_fb(primary, NULL);
+				igt_remove_fb(data->drm_fd, &fb);
+			}
+		}
+	}
+}
+
 igt_main
 {
 	bool ultra_joiner_supported, is_dgfx;
@@ -505,6 +547,7 @@ igt_main
 		data.ultra_joiner_output_count = 0;
 		data.non_big_joiner_output_count = 0;
 		data.non_ultra_joiner_output_count = 0;
+		data.non_joiner_output_count = 0;
 		data.mixed_output_count = 0;
 		data.output_count = 0;
 		j = 0;
@@ -523,6 +566,7 @@ igt_main
 
 		for_each_connected_output(&data.display, output) {
 			bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false;
+			bool non_joiner_found = false;
 			drmModeConnector *connector = output->config.connector;
 
 			/*
@@ -533,6 +577,7 @@ igt_main
 			 */
 			bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
 			ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
+			non_joiner_found = non_joiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
 
 			if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
 				force_joiner_supported = true;
@@ -548,6 +593,9 @@ igt_main
 			else if (force_joiner_supported)
 				data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
 
+			if (non_joiner_found)
+				data.non_joiner_output[data.non_joiner_output_count++] = output;
+
 			data.output_count++;
 		}
 		if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) {
@@ -713,6 +761,16 @@ igt_main
 		}
 	}
 
+	igt_describe("Verify the basic modeset on the maximum non-joiner mode across "
+		     "all pipes");
+	igt_subtest_with_dynamic("basic-max-non-joiner") {
+		igt_require_f(data.n_pipes >= 1,
+			      "At least one pipe is required.\n");
+		igt_require_f(data.non_joiner_output_count  > 0,
+			      "No suitable non-joiner mode found\n");
+			test_basic_max_non_joiner(&data);
+	}
+
 	igt_fixture {
 		igt_display_fini(&data.display);
 		drm_close_driver(data.drm_fd);
-- 
2.25.1


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

* RE: [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
  2025-02-12  7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
@ 2025-02-12  7:21 ` B, Jeevan
  2025-02-12  7:36 ` [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe Jeevan B
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 17+ messages in thread
From: B, Jeevan @ 2025-02-12  7:21 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org; +Cc: B S, Karthik

Adding result from local run : 

./build/tests/kms_joiner --r basic-max-non-joiner
IGT-Version: 1.30-gf377e6725 (x86_64) (Linux: 6.14.0-rc2-xe+ x86_64)
Using IGT_SRANDOM=1739350394 for randomisation
Opened device: /dev/dri/card0
Found master pipe A
Found master pipe B
Found master pipe C
DSC not supported on connector DP-4
Starting subtest: basic-max-non-joiner
Starting dynamic subtest: pipe-A-DP-4
Appplying mode = 6144x3456@30
Dynamic subtest pipe-A-DP-4: SUCCESS (1.780s)
Starting dynamic subtest: pipe-B-DP-4
Appplying mode = 6144x3456@30
Dynamic subtest pipe-B-DP-4: SUCCESS (2.241s)
Starting dynamic subtest: pipe-C-DP-4
Appplying mode = 6144x3456@30
Dynamic subtest pipe-C-DP-4: SUCCESS (1.874s)
Starting dynamic subtest: pipe-D-DP-4
Appplying mode = 6144x3456@30
Dynamic subtest pipe-D-DP-4: SUCCESS (1.858s)
Subtest basic-max-non-joiner: SUCCESS (7.761s)

> -----Original Message-----
> From: B, Jeevan <jeevan.b@intel.com>
> Sent: Wednesday, February 12, 2025 1:06 PM
> To: igt-dev@lists.freedesktop.org
> Cc: B S, Karthik <karthik.b.s@intel.com>; B, Jeevan <jeevan.b@intel.com>
> Subject: [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate
> non-joiner mode
> 
> Added new lib changes to find non_joiner_mode and updated test.
> 
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> 
> Jeevan B (3):
>   lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe
>   lib/igt_kms: Add support to check joiner mode limit
>   tests/intel/kms_joiner: Add a new test to validate non-joiner mode
> 
>  lib/igt_kms.c            | 76 ++++++++++++++++++++++++++++++++++++++++
>  lib/igt_kms.h            |  3 ++
>  tests/intel/kms_joiner.c | 65 ++++++++++++++++++++++++++++++++++
>  3 files changed, 144 insertions(+)
> 
> --
> 2.25.1


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

* [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
@ 2025-02-12  7:36 Jeevan B
  2025-02-12  7:21 ` B, Jeevan
                   ` (7 more replies)
  0 siblings, 8 replies; 17+ messages in thread
From: Jeevan B @ 2025-02-12  7:36 UTC (permalink / raw)
  To: igt-dev; +Cc: karthik.b.s, Jeevan B

Added new lib changes to find non_joiner_mode and updated test.

Signed-off-by: Jeevan B <jeevan.b@intel.com>

Jeevan B (3):
  lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe
  lib/igt_kms: Add support to check joiner mode limit
  tests/intel/kms_joiner: Add a new test to validate non-joiner mode

 lib/igt_kms.c            | 76 ++++++++++++++++++++++++++++++++++++++++
 lib/igt_kms.h            |  3 ++
 tests/intel/kms_joiner.c | 65 ++++++++++++++++++++++++++++++++++
 3 files changed, 144 insertions(+)

-- 
2.25.1


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

* [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe
  2025-02-12  7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
  2025-02-12  7:21 ` B, Jeevan
@ 2025-02-12  7:36 ` Jeevan B
  2025-02-12 10:42   ` Karthik B S
  2025-02-12  7:36 ` [PATCH i-g-t 2/3] lib/igt_kms: Add support to check joiner mode limit Jeevan B
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 17+ messages in thread
From: Jeevan B @ 2025-02-12  7:36 UTC (permalink / raw)
  To: igt-dev; +Cc: karthik.b.s, Jeevan B

Added a library change to check if joiner is enabled or not for the
given pipe.

v2: Update function name and logic to check joiner enabled for
    exact pipe.
v3: Update commit message and rename function name and variable
    name.
v4: Update string from %X to %x.

Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
 lib/igt_kms.c | 31 +++++++++++++++++++++++++++++++
 lib/igt_kms.h |  1 +
 2 files changed, 32 insertions(+)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 90f44b4d3..3caba7d77 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6406,6 +6406,37 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
 	return found;
 }
 
+/**
+ * igt_is_joiner_enabled_for_pipe:
+ * @drmfd: A drm file descriptor
+ * @pipe: display pipe
+ *
+ * Returns: True if joiner is enabled, false otherwise.
+ */
+bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe)
+{
+	char buf[16384], master_str[64], slave_str[64];
+	int dir, res;
+	int pipe_mask = 0b11;
+
+
+	dir = igt_debugfs_dir(drmfd);
+	igt_assert(dir >= 0);
+
+	res = igt_debugfs_simple_read(dir, "i915_display_info",
+					    buf, sizeof(buf));
+	close(dir);
+	igt_assert(res >= 0);
+	pipe_mask <<= pipe;
+
+	snprintf(master_str, sizeof(master_str),
+		 "Linked to 0x%x pipes as a master", pipe_mask);
+	snprintf(slave_str, sizeof(slave_str),
+		 "Linked to 0x%x pipes as a slave", pipe_mask);
+
+	return (strstr(buf, master_str) && strstr(buf, slave_str));
+}
+
 /**
  * igt_ultrajoiner_possible:
  * @mode: libdrm mode
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 8810123fb..1cfacf87d 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1245,6 +1245,7 @@ int igt_get_max_dotclock(int fd);
 bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock);
 bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
 			  int max_dotclock, drmModeModeInfo *mode);
+bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe);
 bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock);
 bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector,
 			  int max_dotclock, drmModeModeInfo *mode);
-- 
2.25.1


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

* [PATCH i-g-t 2/3] lib/igt_kms: Add support to check joiner mode limit
  2025-02-12  7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
  2025-02-12  7:21 ` B, Jeevan
  2025-02-12  7:36 ` [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe Jeevan B
@ 2025-02-12  7:36 ` Jeevan B
  2025-02-12 10:46   ` Karthik B S
  2025-02-12  7:36 ` [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 17+ messages in thread
From: Jeevan B @ 2025-02-12  7:36 UTC (permalink / raw)
  To: igt-dev; +Cc: karthik.b.s, Jeevan B

Added library changes to find the highest non-joiner mode.
This helps to get the mode that does not require a big joiner.

v2: Update commit message, create a new library function
    to get max hdisplay and fix condtion for selecting mode.
v3: Update function name.

Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
 lib/igt_kms.c | 45 +++++++++++++++++++++++++++++++++++++++++++++
 lib/igt_kms.h |  2 ++
 2 files changed, 47 insertions(+)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 3caba7d77..e1a74a3ee 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6406,6 +6406,51 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
 	return found;
 }
 
+/**
+ * get_max_hdisplay:
+ * @drm_fd: drm file descriptor
+ *
+ * Returns: The maximum hdisplay supported per pipe.
+ */
+static int get_max_hdisplay(int drm_fd)
+{
+	int dev_id = intel_get_drm_devid(drm_fd);
+
+	return (intel_display_ver(dev_id) >= 30) ? HDISPLAY_6K_PER_PIPE :
+						   HDISPLAY_5K_PER_PIPE;
+}
+
+/**
+ * max_non_joiner_mode_found:
+ * @drm_fd: drm file descriptor
+ * @connector: libdrm connector
+ * @max_dot_clock: max dot clock frequency
+ * @mode: libdrm mode to be filled
+ *
+ * Finds the highest possible display mode that does
+ * not require a big joiner.
+ *
+ * Returns: True if a valid non-joiner mode is found,
+ * false otherwise.
+ */
+bool max_non_joiner_mode_found(int drm_fd, drmModeConnector *connector,
+			   int max_dotclock, drmModeModeInfo *mode)
+{
+	int max_hdisplay = get_max_hdisplay(drm_fd);
+
+	for (int i = 0; i < connector->count_modes; i++) {
+		drmModeModeInfo *current_mode = &connector->modes[i];
+
+		if (current_mode->hdisplay == max_hdisplay &&
+		    current_mode->clock < max_dotclock) {
+			*mode = *current_mode;
+			return true;
+		}
+	}
+
+	return false;
+}
+
 /**
  * igt_is_joiner_enabled_for_pipe:
  * @drmfd: A drm file descriptor
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 1cfacf87d..7227f0b0e 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1245,6 +1245,8 @@ int igt_get_max_dotclock(int fd);
 bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock);
 bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
 			  int max_dotclock, drmModeModeInfo *mode);
+bool max_non_joiner_mode_found(int drm_fd, drmModeConnector *connector,
+			       int max_dotclock, drmModeModeInfo *mode);
 bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe);
 bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock);
 bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector,
-- 
2.25.1


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

* [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
  2025-02-12  7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
                   ` (2 preceding siblings ...)
  2025-02-12  7:36 ` [PATCH i-g-t 2/3] lib/igt_kms: Add support to check joiner mode limit Jeevan B
@ 2025-02-12  7:36 ` Jeevan B
  2025-02-12 10:50   ` Karthik B S
  2025-02-12  8:15 ` ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7) Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 17+ messages in thread
From: Jeevan B @ 2025-02-12  7:36 UTC (permalink / raw)
  To: igt-dev; +Cc: karthik.b.s, Jeevan B

We need to ensure that the system does not enable a joiner for modes
that do not require it. This test runs on all pipes and validates
that the highest available resolution and refresh rate within the
max dot clock limit is selected. The test then forces a modeset and
flip on the given pipe and checks the status using the joiner check.
If the joiner is mistakenly enabled for a non-joiner mode, the test
should fail.

v2: Fix nonjoiner_mode_found to find the required case.
    Remove clk sort and minor fixes.
v3: Rename nonjoiner to non_joiner and minor modifications.
v4: Add joiner check.
v5: Rename test name and function name, Update test description,
    update non_joiner_mode_found logic.
v6: Update commit message and rename test, function name.
v7: Fix mode selection, loop through all pipes instead on
    pipe - 1, update igt description and add igt info to display
    the selected mode.

Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
 tests/intel/kms_joiner.c | 65 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)

diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 086cfeb71..062a0e49d 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -74,6 +74,10 @@
  *
  * SUBTEST: switch-modeset-ultra-joiner-big-joiner
  * Description: Verify switching between ultra joiner and big joiner modeset.
+ *
+ * SUBTEST: basic-max-non-joiner
+ * Description: Validate basic max non-joiner modeset by selecting the max mode
+ *		supported on single pipe.
  */
 IGT_TEST_DESCRIPTION("Test joiner / force joiner");
 
@@ -85,6 +89,7 @@ typedef struct {
 	int ultra_joiner_output_count;
 	int non_big_joiner_output_count;
 	int non_ultra_joiner_output_count;
+	int non_joiner_output_count;
 	int mixed_output_count;
 	int output_count;
 	int n_pipes;
@@ -94,6 +99,7 @@ typedef struct {
 	igt_output_t *non_big_joiner_output[IGT_MAX_PIPES];
 	igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
 	igt_output_t *mixed_output[IGT_MAX_PIPES];
+	igt_output_t *non_joiner_output[IGT_MAX_PIPES];
 	enum pipe pipe_seq[IGT_MAX_PIPES];
 	igt_display_t display;
 } data_t;
@@ -491,6 +497,48 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
 	}
 }
 
+static void test_basic_max_non_joiner(data_t *data)
+{
+	int count;
+	enum pipe pipe;
+	igt_output_t **outputs, *output;
+	igt_fb_t fb;
+	igt_plane_t *primary;
+	drmModeModeInfo mode;
+
+	count = data->non_joiner_output_count;
+	outputs = data->non_joiner_output;
+	igt_display_reset(&data->display);
+
+	for (int i = 0; i < count; i++) {
+		output = outputs[i];
+
+		for (pipe = 0; pipe < data->n_pipes; pipe++) {
+			igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+				igt_output_set_pipe(output, pipe);
+				igt_require(max_non_joiner_mode_found(data->drm_fd,
+								      output->config.connector,
+								      max_dotclock, &mode));
+				igt_output_override_mode(output, &mode);
+				igt_info("Appplying mode = %dx%d@%d\n", mode.hdisplay,
+					 mode.vdisplay, mode.vrefresh);
+				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);
+				igt_plane_set_fb(primary, &fb);
+				igt_display_commit2(&data->display, COMMIT_ATOMIC);
+				igt_assert_f(!igt_is_joiner_enabled_for_pipe(data->drm_fd, pipe),
+					     "Joiner enabled on pipe %c", 'A' + pipe);
+
+				igt_display_reset(&data->display);
+				igt_plane_set_fb(primary, NULL);
+				igt_remove_fb(data->drm_fd, &fb);
+			}
+		}
+	}
+}
+
 igt_main
 {
 	bool ultra_joiner_supported, is_dgfx;
@@ -505,6 +553,7 @@ igt_main
 		data.ultra_joiner_output_count = 0;
 		data.non_big_joiner_output_count = 0;
 		data.non_ultra_joiner_output_count = 0;
+		data.non_joiner_output_count = 0;
 		data.mixed_output_count = 0;
 		data.output_count = 0;
 		j = 0;
@@ -523,6 +572,7 @@ igt_main
 
 		for_each_connected_output(&data.display, output) {
 			bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false;
+			bool non_joiner_found = false;
 			drmModeConnector *connector = output->config.connector;
 
 			/*
@@ -533,6 +583,8 @@ igt_main
 			 */
 			bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
 			ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
+			non_joiner_found = max_non_joiner_mode_found(data.drm_fd, connector,
+								     max_dotclock, &mode);
 
 			if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
 				force_joiner_supported = true;
@@ -548,6 +600,9 @@ igt_main
 			else if (force_joiner_supported)
 				data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
 
+			if (non_joiner_found)
+				data.non_joiner_output[data.non_joiner_output_count++] = output;
+
 			data.output_count++;
 		}
 		if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) {
@@ -713,6 +768,16 @@ igt_main
 		}
 	}
 
+	igt_describe("Verify the basic modeset on the maximum non-joiner mode across "
+		     "all pipes");
+	igt_subtest_with_dynamic("basic-max-non-joiner") {
+		igt_require_f(data.n_pipes >= 1,
+			      "At least one pipe is required.\n");
+		igt_require_f(data.non_joiner_output_count  > 0,
+			      "No suitable non-joiner mode found\n");
+			test_basic_max_non_joiner(&data);
+	}
+
 	igt_fixture {
 		igt_display_fini(&data.display);
 		drm_close_driver(data.drm_fd);
-- 
2.25.1


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

* ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
  2025-02-12  7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
                   ` (3 preceding siblings ...)
  2025-02-12  7:36 ` [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
@ 2025-02-12  8:15 ` Patchwork
  2025-02-12  8:32 ` ✓ i915.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-02-12  8:15 UTC (permalink / raw)
  To: Jeevan B; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
URL   : https://patchwork.freedesktop.org/series/143972/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8228_BAT -> XEIGTPW_12577_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (8 -> 8)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_live_ktest@xe_migrate:
    - bat-adlp-vf:        [PASS][1] -> [SKIP][2] ([Intel XE#1192]) +1 other test skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html

  * igt@xe_vm@shared-pde2-page:
    - bat-adlp-vf:        [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3970])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/bat-adlp-vf/igt@xe_vm@shared-pde2-page.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/bat-adlp-vf/igt@xe_vm@shared-pde2-page.html

  
#### Warnings ####

  * igt@xe_live_ktest@xe_bo:
    - bat-adlp-vf:        [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html

  
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455


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

  * IGT: IGT_8228 -> IGTPW_12577
  * Linux: xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 -> xe-2643-a5fe717b56653a6f5e5b98ed07d5fe54789465c9

  IGTPW_12577: 12577
  IGT_8228: 8228
  xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77
  xe-2643-a5fe717b56653a6f5e5b98ed07d5fe54789465c9: a5fe717b56653a6f5e5b98ed07d5fe54789465c9

== Logs ==

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

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

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

* ✓ i915.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
  2025-02-12  7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
                   ` (4 preceding siblings ...)
  2025-02-12  8:15 ` ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7) Patchwork
@ 2025-02-12  8:32 ` Patchwork
  2025-02-12 10:17 ` ✗ i915.CI.Full: failure " Patchwork
  2025-02-12 10:20 ` ✗ Xe.CI.Full: " Patchwork
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-02-12  8:32 UTC (permalink / raw)
  To: Jeevan B; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
URL   : https://patchwork.freedesktop.org/series/143972/
State : success

== Summary ==

CI Bug Log - changes from IGT_8228 -> IGTPW_12577
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (43 -> 42)
------------------------------

  Additional (1): fi-pnv-d510 
  Missing    (2): fi-hsw-4770 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-dg2-14:         [PASS][1] -> [ABORT][2] ([i915#13571])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html

  * igt@dmabuf@all-tests:
    - bat-apl-1:          [PASS][3] -> [INCOMPLETE][4] ([i915#12904]) +1 other test incomplete
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-apl-1/igt@dmabuf@all-tests.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/bat-apl-1/igt@dmabuf@all-tests.html

  * igt@i915_module_load@load:
    - bat-mtlp-9:         [PASS][5] -> [DMESG-WARN][6] ([i915#13494])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-mtlp-9/igt@i915_module_load@load.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/bat-mtlp-9/igt@i915_module_load@load.html

  * igt@i915_selftest@live:
    - bat-twl-2:          NOTRUN -> [ABORT][7] ([i915#12919] / [i915#13503])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/bat-twl-2/igt@i915_selftest@live.html

  * igt@i915_selftest@live@gt_engines:
    - bat-twl-2:          NOTRUN -> [ABORT][8] ([i915#12919])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/bat-twl-2/igt@i915_selftest@live@gt_engines.html

  * igt@i915_selftest@live@workarounds:
    - bat-mtlp-9:         [PASS][9] -> [DMESG-FAIL][10] ([i915#12061])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/bat-mtlp-9/igt@i915_selftest@live@workarounds.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - fi-pnv-d510:        NOTRUN -> [SKIP][11] +33 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_contexts:
    - bat-twl-1:          [ABORT][12] ([i915#12919]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-twl-1/igt@i915_selftest@live@gt_contexts.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/bat-twl-1/igt@i915_selftest@live@gt_contexts.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [DMESG-FAIL][14] ([i915#12061]) -> [PASS][15] +1 other test pass
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/bat-arlh-3/igt@i915_selftest@live@workarounds.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
  [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
  [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
  [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
  [i915#13571]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13571


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8228 -> IGTPW_12577
  * Linux: CI_DRM_16103 -> CI_DRM_16112

  CI-20190529: 20190529
  CI_DRM_16103: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_16112: a5fe717b56653a6f5e5b98ed07d5fe54789465c9 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12577: 12577
  IGT_8228: 8228

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
  2025-02-12  7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
                   ` (5 preceding siblings ...)
  2025-02-12  8:32 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-02-12 10:17 ` Patchwork
  2025-02-12 14:11   ` B, Jeevan
  2025-02-12 10:20 ` ✗ Xe.CI.Full: " Patchwork
  7 siblings, 1 reply; 17+ messages in thread
From: Patchwork @ 2025-02-12 10:17 UTC (permalink / raw)
  To: Jeevan B; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
URL   : https://patchwork.freedesktop.org/series/143972/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_16112_full -> IGTPW_12577_full
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox:
    - shard-mtlp:         [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-mtlp-6/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html

  * igt@gem_exec_flush@basic-uc-ro-default:
    - shard-snb:          [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-snb7/igt@gem_exec_flush@basic-uc-ro-default.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-snb5/igt@gem_exec_flush@basic-uc-ro-default.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg1:          NOTRUN -> [SKIP][5] +26 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg1:          [PASS][6] -> [SKIP][7] +84 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible.html
    - shard-tglu:         [PASS][8] -> [ABORT][9] +1 other test abort
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-tglu-3/igt@kms_flip@flip-vs-suspend-interruptible.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-9/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a2:
    - shard-rkl:          [PASS][10] -> [INCOMPLETE][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-1/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html

  * {igt@kms_joiner@basic-max-non-joiner} (NEW):
    - shard-tglu:         NOTRUN -> [SKIP][12]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-6/igt@kms_joiner@basic-max-non-joiner.html
    - shard-mtlp:         NOTRUN -> [SKIP][13]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@kms_joiner@basic-max-non-joiner.html
    - shard-dg2:          NOTRUN -> [SKIP][14]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_joiner@basic-max-non-joiner.html
    - shard-rkl:          NOTRUN -> [SKIP][15]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-3/igt@kms_joiner@basic-max-non-joiner.html

  
#### Warnings ####

  * igt@gem_eio@kms:
    - shard-dg1:          [FAIL][16] ([i915#5784]) -> [SKIP][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@gem_eio@kms.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_eio@kms.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-dg1:          [SKIP][18] ([i915#1769] / [i915#3555]) -> [SKIP][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg1:          [SKIP][20] ([i915#4538] / [i915#5286]) -> [SKIP][21] +5 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-dg1:          [SKIP][22] ([i915#3638]) -> [SKIP][23] +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_big_fb@linear-64bpp-rotate-90.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-dg1:          [SKIP][24] ([i915#4538]) -> [SKIP][25] +7 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
    - shard-dg1:          [SKIP][26] ([i915#6095]) -> [SKIP][27] +16 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-12/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg1:          [SKIP][28] ([i915#12313]) -> [SKIP][29] +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_content_protection@atomic:
    - shard-dg1:          [SKIP][30] ([i915#7116] / [i915#9424]) -> [SKIP][31]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_content_protection@atomic.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg1:          [SKIP][32] ([i915#3299]) -> [SKIP][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-1.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg1:          [SKIP][34] ([i915#13049]) -> [SKIP][35] +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-dg1:          [SKIP][36] ([i915#3555]) -> [SKIP][37] +5 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-dg1:          [SKIP][38] ([i915#4103] / [i915#4213]) -> [SKIP][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-dg1:          [SKIP][40] ([i915#3555] / [i915#3840]) -> [SKIP][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_hdr@bpc-switch:
    - shard-dg1:          [SKIP][42] ([i915#3555] / [i915#8228]) -> [SKIP][43] +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_hdr@bpc-switch.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_hdr@bpc-switch.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg1:          [SKIP][44] ([i915#5289]) -> [SKIP][45] +2 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg1:          [SKIP][46] ([i915#8623]) -> [SKIP][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@negative-basic:
    - shard-dg1:          [SKIP][48] ([i915#3555] / [i915#9906]) -> [SKIP][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-18/igt@kms_vrr@negative-basic.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_vrr@negative-basic.html

  
New tests
---------

  New tests have been introduced between CI_DRM_16112_full and IGTPW_12577_full:

### New IGT tests (15) ###

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [3.35] s

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [3.23] s

  * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [3.30] s

  * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [3.39] s

  * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-d-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [3.21] s

  * igt@kms_cursor_edge_walk@128x128-top-edge@pipe-c-hdmi-a-1:
    - Statuses : 1 pass(s)
    - Exec time: [3.46] s

  * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [3.33] s

  * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-d-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [3.23] s

  * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-c-hdmi-a-1:
    - Statuses : 1 pass(s)
    - Exec time: [3.47] s

  * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-c-hdmi-a-1:
    - Statuses : 1 pass(s)
    - Exec time: [3.43] s

  * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-hdmi-a-1:
    - Statuses : 2 pass(s)
    - Exec time: [1.72, 3.73] s

  * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-d-hdmi-a-1:
    - Statuses : 1 pass(s)
    - Exec time: [1.66] s

  * igt@kms_joiner@basic-max-non-joiner:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_setmode@invalid-clone-single-crtc@pipe-a-hdmi-a-1-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.05] s

  * igt@kms_setmode@invalid-clone-single-crtc@pipe-b-hdmi-a-1-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.05] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@device_reset@unbind-reset-rebind:
    - shard-dg1:          NOTRUN -> [ABORT][51] ([i915#11814] / [i915#11815] / [i915#9413])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html

  * igt@drm_fdinfo@all-busy-check-all:
    - shard-mtlp:         NOTRUN -> [SKIP][52] ([i915#8414]) +9 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@drm_fdinfo@all-busy-check-all.html

  * igt@drm_fdinfo@busy-check-all@bcs0:
    - shard-dg1:          NOTRUN -> [SKIP][53] ([i915#8414]) +6 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@drm_fdinfo@busy-check-all@bcs0.html

  * igt@drm_fdinfo@busy-hang@bcs0:
    - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#8414]) +16 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-2/igt@drm_fdinfo@busy-hang@bcs0.html

  * igt@drm_fdinfo@busy-idle@bcs0:
    - shard-dg2-9:        NOTRUN -> [SKIP][55] ([i915#8414]) +8 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@drm_fdinfo@busy-idle@bcs0.html

  * igt@fbdev@read:
    - shard-dg1:          [PASS][56] -> [SKIP][57] ([i915#2582])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-18/igt@fbdev@read.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@fbdev@read.html

  * igt@gem_caching@writes:
    - shard-mtlp:         NOTRUN -> [SKIP][58] ([i915#4873]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@gem_caching@writes.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-rkl:          NOTRUN -> [SKIP][59] ([i915#9323])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html
    - shard-tglu:         NOTRUN -> [SKIP][60] ([i915#9323])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@gem_ccs@block-multicopy-compressed.html
    - shard-mtlp:         NOTRUN -> [SKIP][61] ([i915#9323])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html

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

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-tglu:         NOTRUN -> [SKIP][63] ([i915#3555] / [i915#9323])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy.html
    - shard-mtlp:         NOTRUN -> [SKIP][64] ([i915#3555] / [i915#9323])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy.html
    - shard-rkl:          NOTRUN -> [SKIP][65] ([i915#3555] / [i915#9323])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html
    - shard-dg1:          NOTRUN -> [SKIP][66] ([i915#3555] / [i915#9323])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
    - shard-dg2:          [PASS][67] -> [INCOMPLETE][68] ([i915#13356])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-tglu:         NOTRUN -> [SKIP][69] ([i915#7697])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-2/igt@gem_close_race@multigpu-basic-process.html
    - shard-mtlp:         NOTRUN -> [SKIP][70] ([i915#7697]) +1 other test skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@gem_close_race@multigpu-basic-process.html
    - shard-dg2:          NOTRUN -> [SKIP][71] ([i915#7697])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html
    - shard-rkl:          NOTRUN -> [SKIP][72] ([i915#7697])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@gem_close_race@multigpu-basic-process.html
    - shard-dg1:          NOTRUN -> [SKIP][73] ([i915#7697])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_compute@compute-square:
    - shard-dg2:          NOTRUN -> [FAIL][74] ([i915#13665])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-4/igt@gem_compute@compute-square.html

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-dg2:          NOTRUN -> [ABORT][75] ([i915#13427])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html

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

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-glk:          NOTRUN -> [INCOMPLETE][77] ([i915#12353])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk9/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_ctx_persistence@engines-persistence:
    - shard-snb:          NOTRUN -> [SKIP][78] ([i915#1099]) +2 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-snb1/igt@gem_ctx_persistence@engines-persistence.html

  * igt@gem_ctx_persistence@hang:
    - shard-mtlp:         NOTRUN -> [SKIP][79] ([i915#8555]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@gem_ctx_persistence@hang.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-dg2-9:        NOTRUN -> [SKIP][80] ([i915#8555])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-hang.html

  * igt@gem_ctx_persistence@heartbeat-stop:
    - shard-dg1:          NOTRUN -> [SKIP][81] ([i915#8555])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-stop.html
    - shard-dg2:          NOTRUN -> [SKIP][82] ([i915#8555])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-stop.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglu-1:       NOTRUN -> [SKIP][83] ([i915#280])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@gem_ctx_sseu@engines.html
    - shard-dg1:          NOTRUN -> [SKIP][84] ([i915#280]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@gem_ctx_sseu@engines.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-tglu:         NOTRUN -> [SKIP][85] ([i915#280])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-2/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@wait-1us:
    - shard-mtlp:         [PASS][86] -> [ABORT][87] ([i915#13193]) +3 other tests abort
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-mtlp-2/igt@gem_eio@wait-1us.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@gem_eio@wait-1us.html

  * igt@gem_exec_balancer@bonded-pair:
    - shard-mtlp:         NOTRUN -> [SKIP][88] ([i915#4771])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@gem_exec_balancer@bonded-pair.html

  * igt@gem_exec_balancer@bonded-semaphore:
    - shard-dg1:          NOTRUN -> [SKIP][89] ([i915#4812]) +2 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html
    - shard-mtlp:         NOTRUN -> [SKIP][90] ([i915#4812]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@gem_exec_balancer@bonded-semaphore.html

  * igt@gem_exec_balancer@bonded-true-hang:
    - shard-dg2:          NOTRUN -> [SKIP][91] ([i915#4812]) +1 other test skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-mtlp:         NOTRUN -> [SKIP][92] ([i915#4036])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-3/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-rkl:          NOTRUN -> [SKIP][93] ([i915#4525]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@gem_exec_balancer@parallel-bb-first.html

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

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-tglu:         NOTRUN -> [SKIP][95] ([i915#4525])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-6/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_big@single:
    - shard-tglu:         NOTRUN -> [ABORT][96] ([i915#11713])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-3/igt@gem_exec_big@single.html

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

  * igt@gem_exec_flush@basic-uc-pro-default:
    - shard-dg2:          NOTRUN -> [SKIP][98] ([i915#3539] / [i915#4852]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@gem_exec_flush@basic-uc-pro-default.html

  * igt@gem_exec_flush@basic-uc-prw-default:
    - shard-dg2:          NOTRUN -> [SKIP][99] ([i915#3539])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@gem_exec_flush@basic-uc-prw-default.html

  * igt@gem_exec_flush@basic-uc-ro-default:
    - shard-dg1:          NOTRUN -> [SKIP][100] ([i915#3539] / [i915#4852])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@gem_exec_flush@basic-uc-ro-default.html

  * igt@gem_exec_flush@basic-wb-prw-default:
    - shard-dg2-9:        NOTRUN -> [SKIP][101] ([i915#3539] / [i915#4852])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_exec_flush@basic-wb-prw-default.html

  * igt@gem_exec_reloc@basic-cpu-noreloc:
    - shard-dg2-9:        NOTRUN -> [SKIP][102] ([i915#3281]) +3 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-cpu-read-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][103] ([i915#3281]) +11 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-read-noreloc.html

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

  * igt@gem_exec_reloc@basic-gtt-read:
    - shard-dg2:          NOTRUN -> [SKIP][105] ([i915#3281]) +5 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read.html

  * igt@gem_exec_reloc@basic-wc-read:
    - shard-dg1:          NOTRUN -> [SKIP][106] ([i915#3281]) +7 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][107] ([i915#4537] / [i915#4812])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_exec_schedule@preempt-queue-contexts-chain:
    - shard-dg2:          NOTRUN -> [SKIP][108] ([i915#4537] / [i915#4812])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html

  * igt@gem_exec_schedule@preemptive-hang:
    - shard-rkl:          NOTRUN -> [DMESG-WARN][109] ([i915#12964]) +27 other tests dmesg-warn
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@gem_exec_schedule@preemptive-hang.html

  * igt@gem_exec_schedule@reorder-wide:
    - shard-dg2-9:        NOTRUN -> [SKIP][110] ([i915#4537] / [i915#4812])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_exec_schedule@reorder-wide.html

  * igt@gem_fence_thrash@bo-write-verify-threaded-none:
    - shard-dg1:          NOTRUN -> [SKIP][111] ([i915#4860]) +1 other test skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-threaded-none.html

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

  * igt@gem_fenced_exec_thrash@2-spare-fences:
    - shard-dg2:          NOTRUN -> [SKIP][113] ([i915#4860]) +1 other test skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html

  * igt@gem_fenced_exec_thrash@too-many-fences:
    - shard-dg2-9:        NOTRUN -> [SKIP][114] ([i915#4860])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_fenced_exec_thrash@too-many-fences.html

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

  * igt@gem_lmem_swapping@heavy-random:
    - shard-tglu:         NOTRUN -> [SKIP][116] ([i915#4613]) +3 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-9/igt@gem_lmem_swapping@heavy-random.html

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

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-rkl:          NOTRUN -> [SKIP][118] ([i915#4613]) +4 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@gem_lmem_swapping@parallel-multi.html

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

  * igt@gem_madvise@dontneed-before-exec:
    - shard-mtlp:         NOTRUN -> [SKIP][120] ([i915#3282]) +4 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@gem_madvise@dontneed-before-exec.html

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

  * igt@gem_mmap_gtt@basic-read-write-distinct:
    - shard-mtlp:         NOTRUN -> [SKIP][122] ([i915#4077]) +15 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-4/igt@gem_mmap_gtt@basic-read-write-distinct.html

  * igt@gem_mmap_gtt@hang:
    - shard-dg2-9:        NOTRUN -> [SKIP][123] ([i915#4077]) +6 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_mmap_gtt@hang.html

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

  * igt@gem_mmap_wc@write:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#4083]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-7/igt@gem_mmap_wc@write.html

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

  * igt@gem_partial_pwrite_pread@reads-uncached:
    - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#3282]) +10 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@gem_partial_pwrite_pread@reads-uncached.html

  * igt@gem_partial_pwrite_pread@write:
    - shard-dg1:          NOTRUN -> [SKIP][128] ([i915#3282]) +6 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@gem_partial_pwrite_pread@write.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-display:
    - shard-dg2:          NOTRUN -> [SKIP][129] ([i915#3282]) +6 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html

  * igt@gem_pread@exhaustion:
    - shard-tglu:         NOTRUN -> [WARN][130] ([i915#2658])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-6/igt@gem_pread@exhaustion.html
    - shard-glk:          NOTRUN -> [WARN][131] ([i915#2658])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk7/igt@gem_pread@exhaustion.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-dg1:          NOTRUN -> [SKIP][132] ([i915#4270]) +1 other test skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@create-regular-buffer:
    - shard-dg2-9:        NOTRUN -> [SKIP][133] ([i915#4270])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_pxp@create-regular-buffer.html

  * igt@gem_pxp@fail-invalid-protected-context:
    - shard-dg2:          NOTRUN -> [SKIP][134] ([i915#4270])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@gem_pxp@fail-invalid-protected-context.html

  * igt@gem_pxp@hw-rejects-pxp-buffer:
    - shard-tglu:         NOTRUN -> [SKIP][135] ([i915#13398])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
    - shard-mtlp:         NOTRUN -> [SKIP][136] ([i915#13398]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@gem_pxp@hw-rejects-pxp-buffer.html

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

  * igt@gem_pxp@reject-modify-context-protection-on:
    - shard-rkl:          NOTRUN -> [TIMEOUT][138] ([i915#12917] / [i915#12964]) +4 other tests timeout
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html

  * igt@gem_pxp@verify-pxp-stale-buf-execution:
    - shard-rkl:          [PASS][139] -> [TIMEOUT][140] ([i915#12917] / [i915#12964]) +2 other tests timeout
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-dg2-9:        NOTRUN -> [SKIP][141] ([i915#5190] / [i915#8428]) +1 other test skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][142] ([i915#8428]) +2 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html

  * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#5190] / [i915#8428]) +4 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][144] ([i915#4079])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-dg1:          NOTRUN -> [SKIP][145] ([i915#4079])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
    - shard-mtlp:         NOTRUN -> [SKIP][146] ([i915#4079])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_set_tiling_vs_gtt:
    - shard-dg2-9:        NOTRUN -> [SKIP][147] ([i915#4079])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_set_tiling_vs_gtt.html

  * igt@gem_tiled_partial_pwrite_pread@writes:
    - shard-dg2:          NOTRUN -> [SKIP][148] ([i915#4077]) +12 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@gem_tiled_partial_pwrite_pread@writes.html

  * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
    - shard-dg1:          NOTRUN -> [SKIP][149] ([i915#4077]) +13 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-tglu:         [PASS][150] -> [FAIL][151] ([i915#12941])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-9/igt@gem_tiled_swapping@non-threaded.html

  * igt@gem_userptr_blits@access-control:
    - shard-mtlp:         NOTRUN -> [SKIP][152] ([i915#3297]) +3 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-tglu:         NOTRUN -> [SKIP][153] ([i915#3297])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][154] ([i915#3297])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][155] ([i915#3323])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html

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

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-rkl:          NOTRUN -> [SKIP][157] ([i915#3282] / [i915#3297])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html
    - shard-mtlp:         NOTRUN -> [SKIP][158] ([i915#3282] / [i915#3297])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-3/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-dg2:          NOTRUN -> [SKIP][159] ([i915#3297] / [i915#4880]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
    - shard-dg1:          NOTRUN -> [SKIP][160] ([i915#3297] / [i915#4880])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

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

  * igt@gem_userptr_blits@sd-probe:
    - shard-dg1:          NOTRUN -> [SKIP][162] ([i915#3297] / [i915#4958])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@gem_userptr_blits@sd-probe.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-dg2-9:        NOTRUN -> [SKIP][163] ([i915#3297])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_userptr_blits@unsync-overlap.html
    - shard-dg1:          NOTRUN -> [SKIP][164] ([i915#3297]) +1 other test skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gem_workarounds@suspend-resume:
    - shard-glk:          [PASS][165] -> [INCOMPLETE][166] ([i915#13356])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-glk1/igt@gem_workarounds@suspend-resume.html
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk6/igt@gem_workarounds@suspend-resume.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-rkl:          NOTRUN -> [DMESG-FAIL][167] ([i915#12964])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen3_render_tiledx_blits:
    - shard-dg2:          NOTRUN -> [SKIP][168] +9 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-4/igt@gen3_render_tiledx_blits.html

  * igt@gen3_render_tiledy_blits:
    - shard-mtlp:         NOTRUN -> [SKIP][169] +25 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@gen3_render_tiledy_blits.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          NOTRUN -> [ABORT][170] ([i915#5566])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk1/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-dg2-9:        NOTRUN -> [SKIP][171] ([i915#2856])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gen9_exec_parse@bb-start-cmd.html

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

  * igt@gen9_exec_parse@shadow-peek:
    - shard-dg2:          NOTRUN -> [SKIP][173] ([i915#2856]) +2 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-1/igt@gen9_exec_parse@shadow-peek.html
    - shard-tglu-1:       NOTRUN -> [SKIP][174] ([i915#2527] / [i915#2856])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html

  * igt@gen9_exec_parse@unaligned-jump:
    - shard-mtlp:         NOTRUN -> [SKIP][175] ([i915#2856]) +4 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@gen9_exec_parse@unaligned-jump.html
    - shard-dg1:          NOTRUN -> [SKIP][176] ([i915#2527]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@gen9_exec_parse@unaligned-jump.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-rkl:          NOTRUN -> [SKIP][177] ([i915#2527]) +4 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_fb_tiling:
    - shard-dg2-9:        NOTRUN -> [SKIP][178] ([i915#4881])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@i915_fb_tiling.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          NOTRUN -> [SKIP][179] ([i915#6412])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@i915_module_load@resize-bar.html
    - shard-dg1:          NOTRUN -> [SKIP][180] ([i915#7178])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_freq_api@freq-basic-api:
    - shard-tglu:         NOTRUN -> [SKIP][181] ([i915#8399])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@i915_pm_freq_api@freq-basic-api.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-tglu-1:       NOTRUN -> [SKIP][182] ([i915#6590]) +1 other test skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html

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

  * igt@i915_pm_rpm@gem-evict-pwrite:
    - shard-rkl:          [PASS][184] -> [SKIP][185] ([i915#13328])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-6/igt@i915_pm_rpm@gem-evict-pwrite.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@i915_pm_rpm@gem-evict-pwrite.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][186] ([i915#12797])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk6/igt@i915_pm_rpm@system-suspend.html

  * igt@i915_pm_rps@basic-api:
    - shard-dg1:          NOTRUN -> [SKIP][187] ([i915#11681] / [i915#6621])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@i915_pm_rps@basic-api.html

  * igt@i915_pm_rps@thresholds-idle:
    - shard-mtlp:         NOTRUN -> [SKIP][188] ([i915#11681]) +1 other test skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle.html
    - shard-dg2-9:        NOTRUN -> [SKIP][189] ([i915#11681])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html

  * igt@i915_pm_rps@thresholds-park:
    - shard-dg2:          NOTRUN -> [SKIP][190] ([i915#11681])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@i915_pm_rps@thresholds-park.html
    - shard-dg1:          NOTRUN -> [SKIP][191] ([i915#11681])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@i915_pm_rps@thresholds-park.html

  * igt@i915_power@sanity:
    - shard-rkl:          NOTRUN -> [SKIP][192] ([i915#7984])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@i915_power@sanity.html

  * igt@i915_query@test-query-geometry-subslices:
    - shard-rkl:          NOTRUN -> [SKIP][193] ([i915#5723])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html

  * igt@i915_selftest@mock@memory_region:
    - shard-dg2-9:        NOTRUN -> [DMESG-WARN][194] ([i915#9311]) +1 other test dmesg-warn
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@i915_selftest@mock@memory_region.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-mtlp:         NOTRUN -> [SKIP][195] ([i915#6645])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@i915_suspend@basic-s3-without-i915.html

  * igt@intel_hwmon@hwmon-write:
    - shard-rkl:          NOTRUN -> [SKIP][196] ([i915#7707])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@intel_hwmon@hwmon-write.html
    - shard-tglu:         NOTRUN -> [SKIP][197] ([i915#7707]) +1 other test skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-2/igt@intel_hwmon@hwmon-write.html
    - shard-mtlp:         NOTRUN -> [SKIP][198] ([i915#7707])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
    - shard-mtlp:         NOTRUN -> [SKIP][199] ([i915#4212]) +1 other test skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
    - shard-dg2:          NOTRUN -> [SKIP][200] ([i915#4212]) +1 other test skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html

  * igt@kms_addfb_basic@clobberred-modifier:
    - shard-dg2-9:        NOTRUN -> [SKIP][201] ([i915#4212])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_addfb_basic@clobberred-modifier.html

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

  * igt@kms_addfb_basic@tile-pitch-mismatch:
    - shard-dg1:          NOTRUN -> [SKIP][203] ([i915#4212]) +1 other test skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html

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

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs-cc:
    - shard-rkl:          NOTRUN -> [SKIP][205] ([i915#8709]) +1 other test skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs-cc.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc:
    - shard-dg2:          NOTRUN -> [SKIP][206] ([i915#8709]) +15 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc:
    - shard-tglu:         NOTRUN -> [SKIP][207] ([i915#8709]) +3 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-9/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][208] ([i915#8709]) +7 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
    - shard-tglu-1:       NOTRUN -> [SKIP][209] ([i915#8709]) +3 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs-cc:
    - shard-dg1:          NOTRUN -> [SKIP][210] ([i915#8709]) +3 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs-cc.html

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

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-dg2-9:        NOTRUN -> [SKIP][212] ([i915#1769] / [i915#3555])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-rkl:          NOTRUN -> [SKIP][213] ([i915#1769] / [i915#3555])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][214] -> [FAIL][215] ([i915#11808]) +1 other test fail
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-0:
    - shard-rkl:          NOTRUN -> [SKIP][216] ([i915#5286]) +6 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
    - shard-dg1:          NOTRUN -> [SKIP][217] ([i915#4538] / [i915#5286]) +3 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-tglu:         NOTRUN -> [SKIP][218] ([i915#5286]) +7 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

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

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-dg1:          NOTRUN -> [SKIP][220] ([i915#5286])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-mtlp:         NOTRUN -> [FAIL][221] ([i915#5138])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-dg2-9:        NOTRUN -> [SKIP][222] +3 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#3638]) +1 other test skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][224] ([i915#3638]) +4 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
    - shard-dg2:          NOTRUN -> [SKIP][225] ([i915#4538] / [i915#5190]) +11 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-9:        NOTRUN -> [SKIP][226] ([i915#5190])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

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

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][228] ([i915#4538]) +4 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-mtlp:         NOTRUN -> [SKIP][229] ([i915#6187]) +1 other test skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#5190])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-rkl:          NOTRUN -> [SKIP][231] +24 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglu:         NOTRUN -> [SKIP][232] +89 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][233] ([i915#6095]) +135 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-dg2-9:        NOTRUN -> [SKIP][234] ([i915#10307] / [i915#6095]) +19 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][235] ([i915#12313]) +1 other test skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][236] ([i915#6095]) +74 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg2-9:        NOTRUN -> [SKIP][237] ([i915#12313])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][238] ([i915#6095]) +101 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html

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

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][241] ([i915#12805])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

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

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          [PASS][243] -> [INCOMPLETE][244] ([i915#12796])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-dp-3:
    - shard-dg2:          NOTRUN -> [SKIP][245] ([i915#6095]) +11 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-dp-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][246] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][247] ([i915#10307] / [i915#6095]) +145 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4.html

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

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][249] ([i915#6095]) +64 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html

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

  * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][251] ([i915#4087]) +4 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
    - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#11151] / [i915#7828]) +9 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-dg1:          NOTRUN -> [SKIP][253] ([i915#11151] / [i915#7828]) +11 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
    - shard-mtlp:         NOTRUN -> [SKIP][254] ([i915#11151] / [i915#7828]) +10 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-tglu:         NOTRUN -> [SKIP][255] ([i915#11151] / [i915#7828]) +8 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-tglu-1:       NOTRUN -> [SKIP][256] ([i915#11151] / [i915#7828]) +3 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-rkl:          NOTRUN -> [SKIP][257] ([i915#11151] / [i915#7828]) +11 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-dg2-9:        NOTRUN -> [SKIP][258] ([i915#11151] / [i915#7828]) +2 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [FAIL][259] ([i915#7173])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html

  * igt@kms_content_protection@content-type-change:
    - shard-tglu:         NOTRUN -> [SKIP][260] ([i915#6944] / [i915#9424])
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-9/igt@kms_content_protection@content-type-change.html
    - shard-dg1:          NOTRUN -> [SKIP][261] ([i915#9424])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@lic-type-0:
    - shard-mtlp:         NOTRUN -> [SKIP][262] ([i915#6944] / [i915#9424]) +2 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-8/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][263] ([i915#9424]) +1 other test skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@srm:
    - shard-tglu-1:       NOTRUN -> [SKIP][264] ([i915#6944] / [i915#7116] / [i915#7118])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_content_protection@srm.html
    - shard-dg1:          NOTRUN -> [SKIP][265] ([i915#7116])
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_content_protection@srm.html
    - shard-mtlp:         NOTRUN -> [SKIP][266] ([i915#6944])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@type1:
    - shard-dg1:          NOTRUN -> [SKIP][267] ([i915#7116] / [i915#9424])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-dg1:          NOTRUN -> [SKIP][268] ([i915#3555]) +6 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#13049]) +1 other test skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
    - shard-dg2:          NOTRUN -> [SKIP][270] ([i915#13049]) +2 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
    - shard-rkl:          NOTRUN -> [SKIP][271] ([i915#13049]) +3 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
    - shard-dg1:          NOTRUN -> [SKIP][272] ([i915#13049]) +1 other test skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-9:        NOTRUN -> [SKIP][273] ([i915#13049])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-64x21:
    - shard-mtlp:         NOTRUN -> [SKIP][274] ([i915#8814]) +2 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-tglu:         [PASS][275] -> [FAIL][276] ([i915#13566]) +1 other test fail
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          NOTRUN -> [SKIP][277] ([i915#3555]) +3 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
    - shard-rkl:          NOTRUN -> [SKIP][278] ([i915#3555]) +8 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
    - shard-tglu-1:       NOTRUN -> [SKIP][279] ([i915#3555]) +4 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-mtlp:         NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8814]) +3 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][281] ([i915#9809])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-mtlp:         NOTRUN -> [SKIP][282] ([i915#4213])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-dg1:          NOTRUN -> [SKIP][283] ([i915#4103] / [i915#4213])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

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

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-rkl:          NOTRUN -> [SKIP][286] ([i915#4103])
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
    - shard-tglu:         NOTRUN -> [SKIP][287] ([i915#4103])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

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

  * igt@kms_dp_aux_dev:
    - shard-dg2:          [PASS][289] -> [SKIP][290] ([i915#1257])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg2-11/igt@kms_dp_aux_dev.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@kms_dp_aux_dev.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-rkl:          NOTRUN -> [SKIP][291] ([i915#12402])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
    - shard-dg1:          NOTRUN -> [SKIP][292] ([i915#12402])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@kms_dp_linktrain_fallback@dp-fallback.html
    - shard-tglu:         NOTRUN -> [SKIP][293] ([i915#12402])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
    - shard-mtlp:         NOTRUN -> [SKIP][294] ([i915#12402])
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_draw_crc@draw-method-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][295] ([i915#8812])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-rkl:          NOTRUN -> [SKIP][296] ([i915#3840])
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-tglu:         NOTRUN -> [SKIP][297] ([i915#3840])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-mtlp:         NOTRUN -> [SKIP][298] ([i915#3840] / [i915#9688])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-mtlp:         NOTRUN -> [SKIP][299] ([i915#3840])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

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

  * igt@kms_dsc@dsc-with-formats:
    - shard-mtlp:         NOTRUN -> [SKIP][301] ([i915#3555] / [i915#3840])
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_dsc@dsc-with-formats.html
    - shard-rkl:          NOTRUN -> [SKIP][302] ([i915#3555] / [i915#3840])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-dg1:          NOTRUN -> [SKIP][303] ([i915#3555] / [i915#3840])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats.html
    - shard-tglu-1:       NOTRUN -> [SKIP][304] ([i915#3555] / [i915#3840])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html

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

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

  * igt@kms_feature_discovery@display-2x:
    - shard-dg2-9:        NOTRUN -> [SKIP][308] ([i915#1839])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_feature_discovery@display-2x.html

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

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg1:          NOTRUN -> [SKIP][310] ([i915#9337])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html
    - shard-mtlp:         NOTRUN -> [SKIP][311] ([i915#9337])
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2:          NOTRUN -> [SKIP][312] ([i915#658])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@kms_feature_discovery@psr2.html

  * igt@kms_fence_pin_leak:
    - shard-dg1:          NOTRUN -> [SKIP][313] ([i915#4881])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@kms_fence_pin_leak.html
    - shard-mtlp:         NOTRUN -> [SKIP][314] ([i915#4881])
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_fence_pin_leak.html
    - shard-dg2:          NOTRUN -> [SKIP][315] ([i915#4881])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_fence_pin_leak.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-tglu:         NOTRUN -> [SKIP][316] ([i915#3637]) +7 other tests skip
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][317] ([i915#8381])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][318] ([i915#3637]) +8 other tests skip
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-plain-flip-interruptible:
    - shard-dg2-9:        NOTRUN -> [SKIP][319] ([i915#9934]) +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_flip@2x-plain-flip-interruptible.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-dg1:          NOTRUN -> [SKIP][320] ([i915#9934]) +9 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-dg2:          NOTRUN -> [SKIP][321] ([i915#9934]) +4 other tests skip
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
    - shard-rkl:          NOTRUN -> [SKIP][322] ([i915#9934]) +11 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
    - shard-tglu-1:       NOTRUN -> [SKIP][323] ([i915#3637]) +1 other test skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@basic-flip-vs-modeset:
    - shard-dg1:          [PASS][324] -> [SKIP][325] ([i915#3637])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_flip@basic-flip-vs-modeset.html
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_flip@basic-flip-vs-modeset.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank:
    - shard-rkl:          [PASS][326] -> [FAIL][327] ([i915#11989]) +1 other test fail
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-3/igt@kms_flip@flip-vs-blocking-wf-vblank.html
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-3/igt@kms_flip@flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
    - shard-mtlp:         [PASS][328] -> [FAIL][329] ([i915#11989]) +1 other test fail
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:
    - shard-tglu:         [PASS][330] -> [FAIL][331] ([i915#11989]) +2 other tests fail
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-tglu-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-panning@b-hdmi-a1:
    - shard-glk:          NOTRUN -> [DMESG-WARN][332] ([i915#118]) +1 other test dmesg-warn
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk8/igt@kms_flip@flip-vs-panning@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-rkl:          [PASS][333] -> [INCOMPLETE][334] ([i915#6113])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-1/igt@kms_flip@flip-vs-suspend.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-5/igt@kms_flip@flip-vs-suspend.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][335] ([i915#12745] / [i915#4839])
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk2/igt@kms_flip@flip-vs-suspend.html

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

  * igt@kms_flip@plain-flip-ts-check-interruptible:
    - shard-snb:          [PASS][337] -> [FAIL][338] ([i915#11989]) +5 other tests fail
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-dg1:          NOTRUN -> [SKIP][339] ([i915#2672] / [i915#3555])
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
    - shard-dg1:          NOTRUN -> [SKIP][340] ([i915#2587] / [i915#2672]) +1 other test skip
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][341] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][342] ([i915#8810])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][343] ([i915#2672] / [i915#3555]) +1 other test skip
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
    - shard-tglu-1:       NOTRUN -> [SKIP][344] ([i915#2587] / [i915#2672]) +2 other tests skip
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
    - shard-dg2-9:        NOTRUN -> [SKIP][345] ([i915#2672] / [i915#3555])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-dg2-9:        NOTRUN -> [SKIP][346] ([i915#2672]) +1 other test skip
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][347] ([i915#2672] / [i915#3555])
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][348] ([i915#2672] / [i915#8813]) +3 other tests skip
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][349] ([i915#2672]) +5 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-dg1:          NOTRUN -> [SKIP][351] ([i915#2587] / [i915#2672] / [i915#3555])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][352] ([i915#2587] / [i915#2672]) +5 other tests skip
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][353] ([i915#2587] / [i915#2672] / [i915#3555])
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
    - shard-tglu:         NOTRUN -> [SKIP][354] ([i915#2672] / [i915#3555]) +3 other tests skip
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][355] ([i915#2672] / [i915#3555]) +5 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][356] ([i915#3555] / [i915#8810])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][357] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][358] ([i915#2672]) +4 other tests skip
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
    - shard-dg2-9:        NOTRUN -> [SKIP][359] ([i915#2672] / [i915#3555] / [i915#5190])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][360] ([i915#2672] / [i915#3555] / [i915#8813]) +9 other tests skip
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
    - shard-rkl:          NOTRUN -> [DMESG-WARN][361] ([i915#12917] / [i915#12964])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-dg1:          [PASS][362] -> [SKIP][363] ([i915#4342]) +10 other tests skip
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu:
    - shard-snb:          [PASS][364] -> [SKIP][365] +2 other tests skip
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][366] ([i915#1825]) +48 other tests skip
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][368] ([i915#5354]) +26 other tests skip
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][370] ([i915#8708]) +13 other tests skip
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-dg2:          NOTRUN -> [FAIL][371] ([i915#6880])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
    - shard-rkl:          NOTRUN -> [SKIP][372] ([i915#5439])
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
    - shard-dg1:          NOTRUN -> [SKIP][373] ([i915#5439])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
    - shard-tglu:         NOTRUN -> [SKIP][374] ([i915#5439])
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][375] ([i915#3023]) +29 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-dg1:          NOTRUN -> [SKIP][376] +36 other tests skip
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][377] ([i915#1825]) +38 other tests skip
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
    - shard-tglu-1:       NOTRUN -> [SKIP][378] +30 other tests skip
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
    - shard-dg1:          NOTRUN -> [SKIP][379] ([i915#3458]) +18 other tests skip
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
    - shard-dg2-9:        NOTRUN -> [SKIP][380] ([i915#3458]) +9 other tests skip
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-rkl:          NOTRUN -> [SKIP][381] ([i915#9766])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][382] ([i915#10433] / [i915#3458])
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

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

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][384] ([i915#3458]) +20 other tests skip
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
    - shard-dg2-9:        NOTRUN -> [SKIP][385] ([i915#5354]) +13 other tests skip
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][386] ([i915#4342]) +11 other tests skip
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][387] ([i915#3555] / [i915#8228])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][388] ([i915#3555] / [i915#8228]) +1 other test skip
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][389] ([i915#3555] / [i915#8228])
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-10/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-dg2-9:        NOTRUN -> [SKIP][390] ([i915#12713])
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html

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

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

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][393] ([i915#10656])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_joiner@invalid-modeset-big-joiner.html

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

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][395] ([i915#13522])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          NOTRUN -> [SKIP][396] ([i915#4816])
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
    - shard-rkl:          [PASS][397] -> [DMESG-WARN][398] ([i915#12964]) +29 other tests dmesg-warn
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-8/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][399] ([i915#8825])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_plane@plane-panning-bottom-right-suspend.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][400] ([i915#13026]) +1 other test incomplete
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk7/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane@plane-position-hole-dpms:
    - shard-dg1:          [PASS][401] -> [SKIP][402] ([i915#8825]) +2 other tests skip
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-12/igt@kms_plane@plane-position-hole-dpms.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_plane@plane-position-hole-dpms.html

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

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

  * igt@kms_plane_alpha_blend@alpha-opaque-fb:
    - shard-dg1:          [PASS][405] -> [SKIP][406] ([i915#7294])
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_plane_alpha_blend@alpha-opaque-fb.html

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

  * igt@kms_plane_alpha_blend@constant-alpha-max:
    - shard-dg1:          NOTRUN -> [SKIP][408] ([i915#7294])
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_plane_alpha_blend@constant-alpha-max.html
    - shard-glk:          NOTRUN -> [FAIL][409] ([i915#10647] / [i915#12169])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max.html

  * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][410] ([i915#10647]) +3 other tests fail
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
    - shard-dg2:          NOTRUN -> [SKIP][411] ([i915#12247] / [i915#9423])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
    - shard-rkl:          NOTRUN -> [SKIP][412] ([i915#12247]) +10 other tests skip
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
    - shard-dg1:          NOTRUN -> [SKIP][413] ([i915#12247]) +17 other tests skip
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
    - shard-tglu-1:       NOTRUN -> [SKIP][414] ([i915#12247]) +9 other tests skip
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
    - shard-glk:          NOTRUN -> [SKIP][415] +409 other tests skip
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25:
    - shard-dg2:          NOTRUN -> [SKIP][416] ([i915#12247] / [i915#6953] / [i915#9423])
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
    - shard-rkl:          NOTRUN -> [SKIP][417] ([i915#12247] / [i915#6953])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
  2025-02-12  7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
                   ` (6 preceding siblings ...)
  2025-02-12 10:17 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-02-12 10:20 ` Patchwork
  2025-02-12 14:11   ` B, Jeevan
  7 siblings, 1 reply; 17+ messages in thread
From: Patchwork @ 2025-02-12 10:20 UTC (permalink / raw)
  To: Jeevan B; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
URL   : https://patchwork.freedesktop.org/series/143972/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8228_full -> XEIGTPW_12577_full
====================================================

Summary
-------

  **FAILURE**

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

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cdclk@mode-transition:
    - shard-dg2-set2:     [PASS][1] -> [DMESG-WARN][2] +4 other tests dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_cdclk@mode-transition.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-436/igt@kms_cdclk@mode-transition.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a6.html

  * {igt@kms_joiner@basic-max-non-joiner} (NEW):
    - shard-dg2-set2:     NOTRUN -> [SKIP][4]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_joiner@basic-max-non-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][5]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-3/igt@kms_joiner@basic-max-non-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][6]
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [FAIL][7] ([Intel XE#1178]) -> [INCOMPLETE][8] +1 other test incomplete
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_content_protection@atomic.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_content_protection@atomic.html

  
New tests
---------

  New tests have been introduced between XEIGT_8228_full and XEIGTPW_12577_full:

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

  * igt@kms_joiner@basic-max-non-joiner:
    - Statuses : 3 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@hotunplug-rescan:
    - shard-lnl:          NOTRUN -> [ABORT][9] ([Intel XE#3914])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@core_hotunplug@hotunplug-rescan.html

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][10] ([Intel XE#4172]) +4 other tests dmesg-warn
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-3.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#2550] / [Intel XE#3767]) +7 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#3279])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#316]) +3 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1124]) +8 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#1477])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#1124]) +9 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

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

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [PASS][18] -> [SKIP][19] ([Intel XE#2314] / [Intel XE#2894])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-dg2-set2:     [PASS][20] -> [SKIP][21] ([Intel XE#2191]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][22] ([Intel XE#2191]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#367]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#367]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#367])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#787]) +120 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#2887]) +10 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][28] -> [INCOMPLETE][29] ([Intel XE#3862]) +1 other test incomplete
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

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

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2887]) +10 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html

  * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#314]) +3 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html

  * igt@kms_cdclk@plane-scaling:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#1152]) +3 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color@degamma:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2325]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#306]) +3 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_chamelium_color@gamma.html
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#306]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2252]) +8 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#373]) +11 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#373]) +10 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     NOTRUN -> [FAIL][41] ([Intel XE#1178]) +1 other test fail
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2390])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][43] ([Intel XE#307]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#307])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@uevent@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][45] ([Intel XE#1188])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_content_protection@uevent@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2320]) +5 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2321])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#308])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#2321])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-3/igt@kms_cursor_crc@cursor-random-512x512.html

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

  * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-d-dp-2:
    - shard-bmg:          [PASS][51] -> [DMESG-WARN][52] ([Intel XE#4172]) +13 other tests dmesg-warn
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-d-dp-2.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-d-dp-2.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#309]) +2 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2286])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][55] -> [DMESG-WARN][56] ([Intel XE#877])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
    - shard-dg2-set2:     [PASS][57] -> [SKIP][58] ([Intel XE#309]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-bmg:          [PASS][59] -> [SKIP][60] ([Intel XE#2291]) +3 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#323]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2-set2:     NOTRUN -> [SKIP][62] ([Intel XE#323]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#2244])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-7/igt@kms_dsc@dsc-with-formats.html
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#2244])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_fbcon_fbt@psr:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#776])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_fbcon_fbt@psr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#776])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-bmg:          [PASS][67] -> [SKIP][68] ([Intel XE#2316])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#310]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
    - shard-dg2-set2:     [PASS][70] -> [SKIP][71] ([Intel XE#310]) +3 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][72] ([Intel XE#301] / [Intel XE#3321])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][73] ([Intel XE#301]) +5 other tests fail
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
    - shard-bmg:          NOTRUN -> [FAIL][74] ([Intel XE#3321]) +3 other tests fail
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html

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

  * igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][76] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4.html

  * igt@kms_flip@busy-flip:
    - shard-dg2-set2:     [PASS][77] -> [DMESG-WARN][78] ([Intel XE#1033]) +20 other tests dmesg-warn
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@busy-flip.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_flip@busy-flip.html

  * igt@kms_flip@busy-flip@d-dp4:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][79] ([Intel XE#1033]) +12 other tests dmesg-warn
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_flip@busy-flip@d-dp4.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
    - shard-dg2-set2:     NOTRUN -> [FAIL][80] ([Intel XE#2882])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][81] -> [FAIL][82] ([Intel XE#886]) +2 other tests fail
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
    - shard-dg2-set2:     [PASS][83] -> [FAIL][84] ([Intel XE#301])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][85] -> [INCOMPLETE][86] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html
    - shard-dg2-set2:     [PASS][87] -> [INCOMPLETE][88] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#1397] / [Intel XE#1745])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#1397])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][91] ([Intel XE#455]) +15 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#1401]) +5 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#2380]) +1 other test skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#2293]) +3 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#2311]) +16 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#656]) +5 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-dg2-set2:     NOTRUN -> [SKIP][99] ([Intel XE#651]) +23 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#4141]) +10 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [PASS][101] -> [SKIP][102] ([Intel XE#656]) +2 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#651]) +10 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#2313]) +20 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][106] ([Intel XE#653]) +23 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#656]) +19 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#1450] / [Intel XE#2568])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_invalid_mode@clock-too-high.html

  * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#1450]) +2 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][110] ([Intel XE#2927])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][111] ([Intel XE#2927])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#2927])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_plane@pixel-format:
    - shard-bmg:          [PASS][113] -> [INCOMPLETE][114] ([Intel XE#1035]) +1 other test incomplete
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_plane@pixel-format.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_plane@pixel-format.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][115] ([Intel XE#2393])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html
    - shard-lnl:          NOTRUN -> [SKIP][116] ([Intel XE#599])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][117] ([Intel XE#2705] / [Intel XE#4212]) +1 other test dmesg-warn
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][118] ([Intel XE#4212])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][119] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
    - shard-dg2-set2:     NOTRUN -> [SKIP][120] ([Intel XE#2763]) +8 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html

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

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
    - shard-lnl:          NOTRUN -> [SKIP][122] ([Intel XE#2763]) +15 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [PASS][123] -> [FAIL][124] ([Intel XE#718]) +1 other test fail
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-bmg:          NOTRUN -> [SKIP][125] ([Intel XE#1489])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

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

  * igt@kms_psr@fbc-pr-cursor-blt:
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html

  * igt@kms_psr@fbc-pr-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][128] ([Intel XE#1406]) +3 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@kms_psr@fbc-pr-dpms.html

  * igt@kms_psr@psr2-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][129] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_psr@psr2-basic.html

  * igt@kms_psr@psr2-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#2234])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_psr@psr2-primary-render.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-lnl:          NOTRUN -> [SKIP][131] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][132] ([Intel XE#3414])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-bmg:          [PASS][133] -> [SKIP][134] ([Intel XE#1435])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     NOTRUN -> [SKIP][135] ([Intel XE#362])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-lnl:          [PASS][136] -> [FAIL][137] ([Intel XE#899])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@kms_vrr@flip-dpms:
    - shard-lnl:          NOTRUN -> [FAIL][138] ([Intel XE#1522]) +1 other test fail
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-bmg:          NOTRUN -> [SKIP][139] ([Intel XE#1499]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html
    - shard-lnl:          NOTRUN -> [SKIP][140] ([Intel XE#1499]) +1 other test skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-bmg:          NOTRUN -> [SKIP][141] ([Intel XE#756])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][142] ([Intel XE#756])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
    - shard-lnl:          NOTRUN -> [SKIP][143] ([Intel XE#756])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-bmg:          NOTRUN -> [SKIP][144] ([Intel XE#1091] / [Intel XE#2849])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html

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

  * igt@xe_eudebug@basic-vm-bind-ufence:
    - shard-bmg:          NOTRUN -> [SKIP][146] ([Intel XE#2905]) +7 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-ufence.html

  * igt@xe_eudebug@discovery-race-sigint:
    - shard-bmg:          NOTRUN -> [SKIP][147] ([Intel XE#4259])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@xe_eudebug@discovery-race-sigint.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][148] ([Intel XE#4259])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@xe_eudebug@discovery-race-sigint.html
    - shard-lnl:          NOTRUN -> [SKIP][149] ([Intel XE#4259])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@xe_eudebug@discovery-race-sigint.html

  * igt@xe_eudebug_online@debugger-reopen:
    - shard-dg2-set2:     NOTRUN -> [SKIP][150] ([Intel XE#2905]) +9 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@xe_eudebug_online@debugger-reopen.html

  * igt@xe_eudebug_online@interrupt-other-debuggable:
    - shard-lnl:          NOTRUN -> [SKIP][151] ([Intel XE#2905]) +5 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@xe_eudebug_online@interrupt-other-debuggable.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
    - shard-lnl:          NOTRUN -> [SKIP][152] ([Intel XE#1392]) +5 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html

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

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
    - shard-dg2-set2:     [PASS][154] -> [SKIP][155] ([Intel XE#1392]) +2 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][156] ([Intel XE#288]) +32 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html

  * igt@xe_exec_threads@threads-hang-userptr-rebind-err:
    - shard-lnl:          [PASS][157] -> [INCOMPLETE][158] ([Intel XE#1169])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-6/igt@xe_exec_threads@threads-hang-userptr-rebind-err.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-7/igt@xe_exec_threads@threads-hang-userptr-rebind-err.html

  * igt@xe_mmap@pci-membarrier:
    - shard-lnl:          NOTRUN -> [SKIP][159] ([Intel XE#4045]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@xe_mmap@pci-membarrier.html

  * igt@xe_oa@syncs-userptr-wait-cfg:
    - shard-dg2-set2:     NOTRUN -> [SKIP][160] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@xe_oa@syncs-userptr-wait-cfg.html

  * igt@xe_pat@display-vs-wb-transient:
    - shard-dg2-set2:     NOTRUN -> [SKIP][161] ([Intel XE#1337])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][162] ([Intel XE#2284] / [Intel XE#366])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          NOTRUN -> [SKIP][163] ([Intel XE#2284])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-lnl:          NOTRUN -> [SKIP][164] ([Intel XE#1948])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@xe_pm@d3hot-mmap-vram.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][165] ([Intel XE#944]) +3 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-invalid-size:
    - shard-lnl:          NOTRUN -> [SKIP][166] ([Intel XE#944]) +3 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@xe_query@multigpu-query-invalid-size.html

  * igt@xe_query@multigpu-query-topology:
    - shard-dg2-set2:     NOTRUN -> [SKIP][167] ([Intel XE#944]) +2 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@xe_query@multigpu-query-topology.html

  * igt@xe_sriov_auto_provisioning@fair-allocation:
    - shard-bmg:          NOTRUN -> [SKIP][168] ([Intel XE#4130])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@xe_sriov_auto_provisioning@fair-allocation.html

  
#### Possible fixes ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][169] ([Intel XE#1727] / [Intel XE#4010]) -> [PASS][170]
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-bmg:          [SKIP][171] ([Intel XE#2291]) -> [PASS][172] +1 other test pass
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
    - shard-dg2-set2:     [SKIP][173] ([Intel XE#309]) -> [PASS][174] +6 other tests pass
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_dp_aux_dev:
    - shard-dg2-set2:     [SKIP][175] ([Intel XE#3009]) -> [PASS][176]
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_dp_aux_dev.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@kms_dp_aux_dev.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [SKIP][177] ([Intel XE#3070]) -> [PASS][178]
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [SKIP][179] ([Intel XE#2316]) -> [PASS][180] +3 other tests pass
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
    - shard-dg2-set2:     [SKIP][181] ([Intel XE#310]) -> [PASS][182] +6 other tests pass
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-dg2-set2:     [FAIL][183] ([Intel XE#2882]) -> [PASS][184]
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_flip@2x-plain-flip-ts-check.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@2x-plain-flip-ts-check@ad-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][185] ([Intel XE#2882]) -> [PASS][186] +3 other tests pass
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check@ad-dp2-hdmi-a3.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check@ad-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
    - shard-dg2-set2:     [FAIL][187] ([Intel XE#301]) -> [PASS][188] +2 other tests pass
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
    - shard-bmg:          [FAIL][189] ([Intel XE#3321]) -> [PASS][190] +2 other tests pass
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
    - shard-lnl:          [FAIL][191] ([Intel XE#886]) -> [PASS][192] +8 other tests pass
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html

  * igt@kms_flip@plain-flip-ts-check-interruptible:
    - shard-lnl:          [FAIL][193] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][194]
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][195] ([Intel XE#656]) -> [PASS][196] +9 other tests pass
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-dg2-set2:     [SKIP][197] -> [PASS][198]
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_lease@simple-lease@pipe-d-hdmi-a-3:
    - shard-bmg:          [INCOMPLETE][199] -> [PASS][200] +1 other test pass
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_lease@simple-lease@pipe-d-hdmi-a-3.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_lease@simple-lease@pipe-d-hdmi-a-3.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [DMESG-WARN][201] ([Intel XE#1033]) -> [PASS][202] +34 other tests pass
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-6.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-6.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
    - shard-bmg:          [DMESG-WARN][203] ([Intel XE#877]) -> [PASS][204] +1 other test pass
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
    - shard-bmg:          [DMESG-WARN][205] ([Intel XE#2566] / [Intel XE#4172]) -> [PASS][206]
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-dg2-set2:     [SKIP][207] ([Intel XE#836]) -> [PASS][208]
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-dg2-set2:     [INCOMPLETE][209] ([Intel XE#1727]) -> [PASS][210]
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-dg2-set2:     [SKIP][211] ([Intel XE#455]) -> [PASS][212]
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
    - shard-lnl:          [FAIL][213] ([Intel XE#899]) -> [PASS][214]
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html

  * igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate:
    - shard-bmg:          [DMESG-WARN][215] ([Intel XE#4172]) -> [PASS][216] +46 other tests pass
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html

  * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
    - shard-dg2-set2:     [FAIL][217] ([Intel XE#1999]) -> [PASS][218] +2 other tests pass
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-dg2-set2:     [DMESG-WARN][219] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][220] +2 other tests pass
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s3-vm-bind-userptr:
    - shard-bmg:          [DMESG-WARN][221] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][222] +3 other tests pass
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@xe_pm@s3-vm-bind-userptr.html

  
#### Warnings ####

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][223] ([Intel XE#787]) -> [SKIP][224] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [DMESG-WARN][225] ([Intel XE#4172]) -> [INCOMPLETE][226] ([Intel XE#3862]) +1 other test incomplete
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][227] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][228] ([Intel XE#787]) +14 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     [SKIP][229] ([Intel XE#455]) -> [FAIL][230] ([Intel XE#1188])
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_content_protection@uevent.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_content_protection@uevent.html
    - shard-bmg:          [FAIL][231] ([Intel XE#1188]) -> [SKIP][232] ([Intel XE#2341])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_content_protection@uevent.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     [FAIL][233] -> [SKIP][234] ([Intel XE#308])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-bmg:          [SKIP][235] ([Intel XE#2291]) -> [DMESG-WARN][236] ([Intel XE#877])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-bmg:          [DMESG-WARN][237] ([Intel XE#4172]) -> [SKIP][238] ([Intel XE#2291])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [SKIP][239] ([Intel XE#2316]) -> [FAIL][240] ([Intel XE#3321])
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html
    - shard-dg2-set2:     [FAIL][241] ([Intel XE#301]) -> [SKIP][242] ([Intel XE#310])
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [FAIL][243] ([Intel XE#3321]) -> [SKIP][244] ([Intel XE#2316])
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
    - shard-dg2-set2:     [SKIP][245] ([Intel XE#310]) -> [FAIL][246] ([Intel XE#301])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-dg2-set2:     [DMESG-FAIL][247] ([Intel XE#1033]) -> [FAIL][248] ([Intel XE#301]) +1 other test fail
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][249] ([Intel XE#2311]) -> [SKIP][250] ([Intel XE#2312]) +11 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][251] ([Intel XE#2312]) -> [SKIP][252] ([Intel XE#2311]) +13 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
    - shard-dg2-set2:     [SKIP][253] ([Intel XE#656]) -> [SKIP][254] ([Intel XE#651]) +23 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][255] ([Intel XE#2312]) -> [SKIP][256] ([Intel XE#4141]) +7 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][257] ([Intel XE#4141]) -> [SKIP][258] ([Intel XE#2312]) +3 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen:
    - shard-dg2-set2:     [SKIP][259] ([Intel XE#651]) -> [SKIP][260] ([Intel XE#656]) +6 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][261] ([Intel XE#656]) -> [SKIP][262] ([Intel XE#653]) +17 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][263] ([Intel XE#2313]) -> [SKIP][264] ([Intel XE#2312]) +13 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][265] ([Intel XE#2312]) -> [SKIP][266] ([Intel XE#2313]) +18 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][267] ([Intel XE#653]) -> [SKIP][268] ([Intel XE#656]) +3 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][269] ([Intel XE#3544]) -> [SKIP][270] ([Intel XE#3374] / [Intel XE#3544])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html

  * igt@xe_peer2peer@read:
    - shard-dg2-set2:     [FAIL][271] ([Intel XE#1173]) -> [SKIP][272] ([Intel XE#1061])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_peer2peer@read.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@xe_peer2peer@read.html

  * igt@xe_pm@s4-mocs:
    - shard-bmg:          [ABORT][273] ([Intel XE#4172] / [Intel XE#4268]) -> [ABORT][274] ([Intel XE#4268])
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@xe_pm@s4-mocs.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@xe_pm@s4-mocs.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-dg2-set2:     [ABORT][275] ([Intel XE#1033] / [Intel XE#4268]) -> [ABORT][276] ([Intel XE#4268])
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_pm@s4-vm-bind-prefetch.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@xe_pm@s4-vm-bind-prefetch.html

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

  [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
  [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
  [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914
  [Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
  [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259
  [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8228 -> IGTPW_12577
  * Linux: xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 -> xe-2643-a5fe717b56653a6f5e5b98ed07d5fe54789465c9

  IGTPW_12577: 12577
  IGT_8228: 8228
  xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77
  xe-2643-a5fe717b56653a6f5e5b98ed07d5fe54789465c9: a5fe717b56653a6f5e5b98ed07d5fe54789465c9

== Logs ==

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

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

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

* Re: [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe
  2025-02-12  7:36 ` [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe Jeevan B
@ 2025-02-12 10:42   ` Karthik B S
  0 siblings, 0 replies; 17+ messages in thread
From: Karthik B S @ 2025-02-12 10:42 UTC (permalink / raw)
  To: Jeevan B, igt-dev


On 2/12/2025 1:06 PM, Jeevan B wrote:
> Added a library change to check if joiner is enabled or not for the
> given pipe.
>
> v2: Update function name and logic to check joiner enabled for
>      exact pipe.
> v3: Update commit message and rename function name and variable
>      name.
> v4: Update string from %X to %x.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
>   lib/igt_kms.c | 31 +++++++++++++++++++++++++++++++
>   lib/igt_kms.h |  1 +
>   2 files changed, 32 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index 90f44b4d3..3caba7d77 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6406,6 +6406,37 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
>   	return found;
>   }
>   
> +/**
> + * igt_is_joiner_enabled_for_pipe:
> + * @drmfd: A drm file descriptor
> + * @pipe: display pipe
> + *
> + * Returns: True if joiner is enabled, false otherwise.
> + */
> +bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe)
> +{
> +	char buf[16384], master_str[64], slave_str[64];
> +	int dir, res;
> +	int pipe_mask = 0b11;

This throws up an error with checkpatch. Please use the decimal 
representation or could be defined by using bit wise operators to make 
it more intuitive. (Your call either ways)

Also may be we could add a TODO to move these lib functions to the 
joiner specific library file once we have those patches merged.

With these fixes,

Reviewed-by: Karthik B S <karthik.b.s@intel.com>

> +
> +
> +	dir = igt_debugfs_dir(drmfd);
> +	igt_assert(dir >= 0);
> +
> +	res = igt_debugfs_simple_read(dir, "i915_display_info",
> +					    buf, sizeof(buf));
> +	close(dir);
> +	igt_assert(res >= 0);
> +	pipe_mask <<= pipe;
> +
> +	snprintf(master_str, sizeof(master_str),
> +		 "Linked to 0x%x pipes as a master", pipe_mask);
> +	snprintf(slave_str, sizeof(slave_str),
> +		 "Linked to 0x%x pipes as a slave", pipe_mask);
> +
> +	return (strstr(buf, master_str) && strstr(buf, slave_str));
> +}
> +
>   /**
>    * igt_ultrajoiner_possible:
>    * @mode: libdrm mode
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 8810123fb..1cfacf87d 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1245,6 +1245,7 @@ int igt_get_max_dotclock(int fd);
>   bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock);
>   bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
>   			  int max_dotclock, drmModeModeInfo *mode);
> +bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe);
>   bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock);
>   bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector,
>   			  int max_dotclock, drmModeModeInfo *mode);

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

* Re: [PATCH i-g-t 2/3] lib/igt_kms: Add support to check joiner mode limit
  2025-02-12  7:36 ` [PATCH i-g-t 2/3] lib/igt_kms: Add support to check joiner mode limit Jeevan B
@ 2025-02-12 10:46   ` Karthik B S
  0 siblings, 0 replies; 17+ messages in thread
From: Karthik B S @ 2025-02-12 10:46 UTC (permalink / raw)
  To: Jeevan B, igt-dev

Hi,

On 2/12/2025 1:06 PM, Jeevan B wrote:
> Added library changes to find the highest non-joiner mode.
> This helps to get the mode that does not require a big joiner.
The second sentence seems redundant and could be removed. Also please 
fix the commit subject.
>
> v2: Update commit message, create a new library function
>      to get max hdisplay and fix condtion for selecting mode.
> v3: Update function name.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
>   lib/igt_kms.c | 45 +++++++++++++++++++++++++++++++++++++++++++++
>   lib/igt_kms.h |  2 ++
>   2 files changed, 47 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index 3caba7d77..e1a74a3ee 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6406,6 +6406,51 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
>   	return found;
>   }
>   
> +/**
> + * get_max_hdisplay:
> + * @drm_fd: drm file descriptor
> + *
> + * Returns: The maximum hdisplay supported per pipe.
> + */
> +static int get_max_hdisplay(int drm_fd)

'get_max_hdisplay' -> 'get_max_pipe_hdisplay'

With these minor fixes,

Reviewed-by: Karthik B S <karthik.b.s@intel.com>

> +{
> +	int dev_id = intel_get_drm_devid(drm_fd);
> +
> +	return (intel_display_ver(dev_id) >= 30) ? HDISPLAY_6K_PER_PIPE :
> +						   HDISPLAY_5K_PER_PIPE;
> +}
> +
> +/**
> + * max_non_joiner_mode_found:
> + * @drm_fd: drm file descriptor
> + * @connector: libdrm connector
> + * @max_dot_clock: max dot clock frequency
> + * @mode: libdrm mode to be filled
> + *
> + * Finds the highest possible display mode that does
> + * not require a big joiner.
> + *
> + * Returns: True if a valid non-joiner mode is found,
> + * false otherwise.
> + */
> +bool max_non_joiner_mode_found(int drm_fd, drmModeConnector *connector,
> +			   int max_dotclock, drmModeModeInfo *mode)
> +{
> +	int max_hdisplay = get_max_hdisplay(drm_fd);
> +
> +	for (int i = 0; i < connector->count_modes; i++) {
> +		drmModeModeInfo *current_mode = &connector->modes[i];
> +
> +		if (current_mode->hdisplay == max_hdisplay &&
> +		    current_mode->clock < max_dotclock) {
> +			*mode = *current_mode;
> +			return true;
> +		}
> +	}
> +
> +	return false;
> +}
> +
>   /**
>    * igt_is_joiner_enabled_for_pipe:
>    * @drmfd: A drm file descriptor
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 1cfacf87d..7227f0b0e 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1245,6 +1245,8 @@ int igt_get_max_dotclock(int fd);
>   bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock);
>   bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
>   			  int max_dotclock, drmModeModeInfo *mode);
> +bool max_non_joiner_mode_found(int drm_fd, drmModeConnector *connector,
> +			       int max_dotclock, drmModeModeInfo *mode);
>   bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe);
>   bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock);
>   bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector,

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

* Re: [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
  2025-02-12  7:36 ` [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
@ 2025-02-12 10:50   ` Karthik B S
  0 siblings, 0 replies; 17+ messages in thread
From: Karthik B S @ 2025-02-12 10:50 UTC (permalink / raw)
  To: Jeevan B, igt-dev

Hi,

Please mention 'max-non-joiner mode' in subtest.

With this update,

Reviewed-by: Karthik B S <karthik.b.s@intel.com>

On 2/12/2025 1:06 PM, Jeevan B wrote:
> We need to ensure that the system does not enable a joiner for modes
> that do not require it. This test runs on all pipes and validates
> that the highest available resolution and refresh rate within the
> max dot clock limit is selected. The test then forces a modeset and
> flip on the given pipe and checks the status using the joiner check.
> If the joiner is mistakenly enabled for a non-joiner mode, the test
> should fail.
>
> v2: Fix nonjoiner_mode_found to find the required case.
>      Remove clk sort and minor fixes.
> v3: Rename nonjoiner to non_joiner and minor modifications.
> v4: Add joiner check.
> v5: Rename test name and function name, Update test description,
>      update non_joiner_mode_found logic.
> v6: Update commit message and rename test, function name.
> v7: Fix mode selection, loop through all pipes instead on
>      pipe - 1, update igt description and add igt info to display
>      the selected mode.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
>   tests/intel/kms_joiner.c | 65 ++++++++++++++++++++++++++++++++++++++++
>   1 file changed, 65 insertions(+)
>
> diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
> index 086cfeb71..062a0e49d 100644
> --- a/tests/intel/kms_joiner.c
> +++ b/tests/intel/kms_joiner.c
> @@ -74,6 +74,10 @@
>    *
>    * SUBTEST: switch-modeset-ultra-joiner-big-joiner
>    * Description: Verify switching between ultra joiner and big joiner modeset.
> + *
> + * SUBTEST: basic-max-non-joiner
> + * Description: Validate basic max non-joiner modeset by selecting the max mode
> + *		supported on single pipe.
>    */
>   IGT_TEST_DESCRIPTION("Test joiner / force joiner");
>   
> @@ -85,6 +89,7 @@ typedef struct {
>   	int ultra_joiner_output_count;
>   	int non_big_joiner_output_count;
>   	int non_ultra_joiner_output_count;
> +	int non_joiner_output_count;
>   	int mixed_output_count;
>   	int output_count;
>   	int n_pipes;
> @@ -94,6 +99,7 @@ typedef struct {
>   	igt_output_t *non_big_joiner_output[IGT_MAX_PIPES];
>   	igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
>   	igt_output_t *mixed_output[IGT_MAX_PIPES];
> +	igt_output_t *non_joiner_output[IGT_MAX_PIPES];
>   	enum pipe pipe_seq[IGT_MAX_PIPES];
>   	igt_display_t display;
>   } data_t;
> @@ -491,6 +497,48 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
>   	}
>   }
>   
> +static void test_basic_max_non_joiner(data_t *data)
> +{
> +	int count;
> +	enum pipe pipe;
> +	igt_output_t **outputs, *output;
> +	igt_fb_t fb;
> +	igt_plane_t *primary;
> +	drmModeModeInfo mode;
> +
> +	count = data->non_joiner_output_count;
> +	outputs = data->non_joiner_output;
> +	igt_display_reset(&data->display);
> +
> +	for (int i = 0; i < count; i++) {
> +		output = outputs[i];
> +
> +		for (pipe = 0; pipe < data->n_pipes; pipe++) {
> +			igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
> +				igt_output_set_pipe(output, pipe);
> +				igt_require(max_non_joiner_mode_found(data->drm_fd,
> +								      output->config.connector,
> +								      max_dotclock, &mode));
> +				igt_output_override_mode(output, &mode);
> +				igt_info("Appplying mode = %dx%d@%d\n", mode.hdisplay,
> +					 mode.vdisplay, mode.vrefresh);
> +				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);
> +				igt_plane_set_fb(primary, &fb);
> +				igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +				igt_assert_f(!igt_is_joiner_enabled_for_pipe(data->drm_fd, pipe),
> +					     "Joiner enabled on pipe %c", 'A' + pipe);
> +
> +				igt_display_reset(&data->display);
> +				igt_plane_set_fb(primary, NULL);
> +				igt_remove_fb(data->drm_fd, &fb);
> +			}
> +		}
> +	}
> +}
> +
>   igt_main
>   {
>   	bool ultra_joiner_supported, is_dgfx;
> @@ -505,6 +553,7 @@ igt_main
>   		data.ultra_joiner_output_count = 0;
>   		data.non_big_joiner_output_count = 0;
>   		data.non_ultra_joiner_output_count = 0;
> +		data.non_joiner_output_count = 0;
>   		data.mixed_output_count = 0;
>   		data.output_count = 0;
>   		j = 0;
> @@ -523,6 +572,7 @@ igt_main
>   
>   		for_each_connected_output(&data.display, output) {
>   			bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false;
> +			bool non_joiner_found = false;
>   			drmModeConnector *connector = output->config.connector;
>   
>   			/*
> @@ -533,6 +583,8 @@ igt_main
>   			 */
>   			bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
>   			ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
> +			non_joiner_found = max_non_joiner_mode_found(data.drm_fd, connector,
> +								     max_dotclock, &mode);
>   
>   			if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
>   				force_joiner_supported = true;
> @@ -548,6 +600,9 @@ igt_main
>   			else if (force_joiner_supported)
>   				data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
>   
> +			if (non_joiner_found)
> +				data.non_joiner_output[data.non_joiner_output_count++] = output;
> +
>   			data.output_count++;
>   		}
>   		if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) {
> @@ -713,6 +768,16 @@ igt_main
>   		}
>   	}
>   
> +	igt_describe("Verify the basic modeset on the maximum non-joiner mode across "
> +		     "all pipes");
> +	igt_subtest_with_dynamic("basic-max-non-joiner") {
> +		igt_require_f(data.n_pipes >= 1,
> +			      "At least one pipe is required.\n");
> +		igt_require_f(data.non_joiner_output_count  > 0,
> +			      "No suitable non-joiner mode found\n");
> +			test_basic_max_non_joiner(&data);
> +	}
> +
>   	igt_fixture {
>   		igt_display_fini(&data.display);
>   		drm_close_driver(data.drm_fd);

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

* RE: ✗ Xe.CI.Full: failure for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
  2025-02-12 10:20 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-02-12 14:11   ` B, Jeevan
  0 siblings, 0 replies; 17+ messages in thread
From: B, Jeevan @ 2025-02-12 14:11 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org

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

Failure is not related to the patch, Please re-report.

Thanks
Jeevan B


From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Wednesday, February 12, 2025 3:50 PM
To: B, Jeevan <jeevan.b@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.Full: failure for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)

Patch Details
Series:
tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
URL:
https://patchwork.freedesktop.org/series/143972/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/index.html
CI Bug Log - changes from XEIGT_8228_full -> XEIGTPW_12577_full
Summary

FAILURE

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

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

Participating hosts (4 -> 4)

No changes in participating hosts

Possible new issues

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

IGT changes
Possible regressions

  *   igt@kms_cdclk@mode-transition:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_cdclk@mode-transition.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-436/igt@kms_cdclk@mode-transition.html> +4 other tests dmesg-warn

  *   igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a6:

     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a6.html>

  *   {igt@kms_joiner@basic-max-non-joiner} (NEW):

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_joiner@basic-max-non-joiner.html>
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-3/igt@kms_joiner@basic-max-non-joiner.html>
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html>

Warnings

  *   igt@kms_content_protection@atomic:

     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_content_protection@atomic.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_content_protection@atomic.html> +1 other test incomplete

New tests

New tests have been introduced between XEIGT_8228_full and XEIGTPW_12577_full:

New IGT tests (1)

  *   igt@kms_joiner@basic-max-non-joiner:

     *   Statuses : 3 skip(s)
     *   Exec time: [0.0] s

Known issues

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

IGT changes
Issues hit

  *   igt@core_hotunplug@hotunplug-rescan:

     *   shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@core_hotunplug@hotunplug-rescan.html> (Intel XE#3914<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914>)

  *   igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-3:

     *   shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-3.html> (Intel XE#4172<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172>) +4 other tests dmesg-warn

  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs.html> (Intel XE#2550<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550> / Intel XE#3767<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767>) +7 other tests skip

  *   igt@kms_atomic@plane-primary-overlay-mutable-zpos:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (Intel XE#3279<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279>)

  *   igt@kms_big_fb@x-tiled-16bpp-rotate-270:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +3 other tests skip

  *   igt@kms_big_fb@y-tiled-32bpp-rotate-180:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +8 other tests skip

  *   igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (Intel XE#1477<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477>)

  *   igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +9 other tests skip

  *   igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +7 other tests skip

  *   igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>)

  *   igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +1 other test skip

  *   igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +1 other test skip

  *   igt@kms_bw@linear-tiling-1-displays-2560x1440p:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 other test skip
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 other test skip

  *   igt@kms_bw@linear-tiling-2-displays-2160x1440p:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>)

  *   igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +120 other tests skip

  *   igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +10 other tests skip

  *   igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> (Intel XE#3862<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862>) +1 other test incomplete

  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +3 other tests skip

  *   igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +35 other tests skip

  *   igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +10 other tests skip

  *   igt@kms_cdclk@mode-transition@pipe-d-dp-4:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html> (Intel XE#314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) +3 other tests skip

  *   igt@kms_cdclk@plane-scaling:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@kms_cdclk@plane-scaling.html> (Intel XE#1152<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152>) +3 other tests skip

  *   igt@kms_chamelium_color@degamma:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_chamelium_color@degamma.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) +1 other test skip

  *   igt@kms_chamelium_color@gamma:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_chamelium_color@gamma.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +3 other tests skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_chamelium_color@gamma.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +1 other test skip

  *   igt@kms_chamelium_edid@dp-edid-resolution-list:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +8 other tests skip

  *   igt@kms_chamelium_hpd@vga-hpd:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +11 other tests skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +10 other tests skip

  *   igt@kms_content_protection@atomic-dpms:

     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +1 other test fail

  *   igt@kms_content_protection@dp-mst-type-1:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390>)
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) +1 other test skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)

  *   igt@kms_content_protection@uevent@pipe-a-dp-4:

     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_content_protection@uevent@pipe-a-dp-4.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>)

  *   igt@kms_cursor_crc@cursor-offscreen-128x42:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +5 other tests skip

  *   igt@kms_cursor_crc@cursor-random-512x512:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>)
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x512.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-3/igt@kms_cursor_crc@cursor-random-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>)

  *   igt@kms_cursor_crc@cursor-random-max-size:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@kms_cursor_crc@cursor-random-max-size.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +6 other tests skip

  *   igt@kms_cursor_edge_walk@256x256-left-edge@pipe-d-dp-2:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-d-dp-2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-d-dp-2.html> (Intel XE#4172<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172>) +13 other tests dmesg-warn

  *   igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +2 other tests skip

  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)

  *   igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +1 other test skip

  *   igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +3 other tests skip

  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +1 other test skip

  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +1 other test skip

  *   igt@kms_dsc@dsc-with-formats:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-7/igt@kms_dsc@dsc-with-formats.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_dsc@dsc-with-formats.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>)

  *   igt@kms_fbcon_fbt@psr:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>)
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>)

  *   igt@kms_flip@2x-absolute-wf_vblank-interruptible:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)

  *   igt@kms_flip@2x-blocking-absolute-wf_vblank:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) +1 other test skip

  *   igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) +3 other tests skip

  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:

     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)

  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:

     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +5 other tests fail

  *   igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:

     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +3 other tests fail

  *   igt@kms_flip@2x-flip-vs-rmfb:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +3 other tests skip

  *   igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4:

     *   shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) +1 other test incomplete

  *   igt@kms_flip@busy-flip:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@busy-flip.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_flip@busy-flip.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) +20 other tests dmesg-warn

  *   igt@kms_flip@busy-flip@d-dp4:

     *   shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_flip@busy-flip@d-dp4.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) +12 other tests dmesg-warn

  *   igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:

     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)

  *   igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +2 other tests fail

  *   igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>)

  *   igt@kms_flip@flip-vs-suspend-interruptible:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) +1 other test incomplete
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) +1 other test incomplete

  *   igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>)

  *   igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>)

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +15 other tests skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +5 other tests skip

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +3 other tests skip

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +5 other tests skip

  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test skip

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +3 other tests skip

  *   igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +16 other tests skip
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +5 other tests skip

  *   igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +23 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +10 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +2 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +2 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +10 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +20 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +23 other tests skip

  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +19 other tests skip

  *   igt@kms_invalid_mode@clock-too-high:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_invalid_mode@clock-too-high.html> (Intel XE#1450<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450> / Intel XE#2568<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568>)

  *   igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html> (Intel XE#1450<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450>) +2 other tests skip

  *   igt@kms_joiner@invalid-modeset-ultra-joiner:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)

  *   igt@kms_plane@pixel-format:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_plane@pixel-format.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_plane@pixel-format.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035>) +1 other test incomplete

  *   igt@kms_plane_lowres@tiling-yf:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html> (Intel XE#2393<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_plane_lowres@tiling-yf.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>)

  *   igt@kms_plane_scaling@intel-max-src-size:

     *   shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#4212<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212>) +1 other test dmesg-warn

  *   igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:

     *   shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html> (Intel XE#4212<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212>)

  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +5 other tests skip

  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +8 other tests skip

  *   igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +4 other tests skip

  *   igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +15 other tests skip

  *   igt@kms_pm_dc@dc5-dpms:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) +1 other test fail

  *   igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>)

  *   igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +3 other tests skip

  *   igt@kms_psr@fbc-pr-cursor-blt:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +10 other tests skip

  *   igt@kms_psr@fbc-pr-dpms:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@kms_psr@fbc-pr-dpms.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +3 other tests skip

  *   igt@kms_psr@psr2-basic:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_psr@psr2-basic.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +15 other tests skip

  *   igt@kms_psr@psr2-primary-render:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_psr@psr2-primary-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234>)

  *   igt@kms_rotation_crc@bad-tiling:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@kms_rotation_crc@bad-tiling.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> / Intel XE#3904<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>) +1 other test skip

  *   igt@kms_rotation_crc@primary-rotation-270:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-270.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>)

  *   igt@kms_setmode@invalid-clone-single-crtc:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)

  *   igt@kms_tiled_display@basic-test-pattern:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#362<https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>)

  *   igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>)

  *   igt@kms_vrr@flip-dpms:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_vrr@flip-dpms.html> (Intel XE#1522<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522>) +1 other test fail

  *   igt@kms_vrr@seamless-rr-switch-drrs:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-drrs.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip

  *   igt@kms_writeback@writeback-fb-id-xrgb2101010:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)

  *   igt@sriov_basic@enable-vfs-autoprobe-off:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)

  *   igt@xe_compute_preempt@compute-preempt:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html> (Intel XE#1280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip

  *   igt@xe_eudebug@basic-vm-bind-ufence:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-ufence.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +7 other tests skip

  *   igt@xe_eudebug@discovery-race-sigint:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@xe_eudebug@discovery-race-sigint.html> (Intel XE#4259<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259>)
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@xe_eudebug@discovery-race-sigint.html> (Intel XE#4259<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-6/igt@xe_eudebug@discovery-race-sigint.html> (Intel XE#4259<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259>)

  *   igt@xe_eudebug_online@debugger-reopen:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@xe_eudebug_online@debugger-reopen.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +9 other tests skip

  *   igt@xe_eudebug_online@interrupt-other-debuggable:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@xe_eudebug_online@interrupt-other-debuggable.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +5 other tests skip

  *   igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +5 other tests skip

  *   igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +3 other tests skip

  *   igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +2 other tests skip

  *   igt@xe_exec_fault_mode@once-bindexecqueue-imm:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +32 other tests skip

  *   igt@xe_exec_threads@threads-hang-userptr-rebind-err:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-6/igt@xe_exec_threads@threads-hang-userptr-rebind-err.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-7/igt@xe_exec_threads@threads-hang-userptr-rebind-err.html> (Intel XE#1169<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169>)

  *   igt@xe_mmap@pci-membarrier:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@xe_mmap@pci-membarrier.html> (Intel XE#4045<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045>) +1 other test skip

  *   igt@xe_oa@syncs-userptr-wait-cfg:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@xe_oa@syncs-userptr-wait-cfg.html> (Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541> / Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) +7 other tests skip

  *   igt@xe_pat@display-vs-wb-transient:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html> (Intel XE#1337<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337>)

  *   igt@xe_pm@d3cold-basic-exec:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-2/igt@xe_pm@d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>)

  *   igt@xe_pm@d3cold-mocs:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@xe_pm@d3cold-mocs.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)

  *   igt@xe_pm@d3hot-mmap-vram:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@xe_pm@d3hot-mmap-vram.html> (Intel XE#1948<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948>)

  *   igt@xe_query@multigpu-query-invalid-cs-cycles:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip

  *   igt@xe_query@multigpu-query-invalid-size:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-5/igt@xe_query@multigpu-query-invalid-size.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip

  *   igt@xe_query@multigpu-query-topology:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@xe_query@multigpu-query-topology.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +2 other tests skip

  *   igt@xe_sriov_auto_provisioning@fair-allocation:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@xe_sriov_auto_provisioning@fair-allocation.html> (Intel XE#4130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130>)

Possible fixes

  *   igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:

     *   shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#4010<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html>

  *   igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> +1 other test pass

  *   igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html> +6 other tests pass

  *   igt@kms_dp_aux_dev:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_dp_aux_dev.html> (Intel XE#3009<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@kms_dp_aux_dev.html>

  *   igt@kms_dp_linktrain_fallback@dp-fallback:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html> (Intel XE#3070<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html>

  *   igt@kms_flip@2x-plain-flip-fb-recreate:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html> +3 other tests pass
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@kms_flip@2x-plain-flip-fb-recreate.html> +6 other tests pass

  *   igt@kms_flip@2x-plain-flip-ts-check:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_flip@2x-plain-flip-ts-check.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_flip@2x-plain-flip-ts-check.html>

  *   igt@kms_flip@2x-plain-flip-ts-check@ad-dp2-hdmi-a3:

     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check@ad-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check@ad-dp2-hdmi-a3.html> +3 other tests pass

  *   igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html> +2 other tests pass

  *   igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:

     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html> +2 other tests pass

  *   igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html> +8 other tests pass

  *   igt@kms_flip@plain-flip-ts-check-interruptible:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html>

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html> +9 other tests pass

  *   igt@kms_joiner@basic-force-big-joiner:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_joiner@basic-force-big-joiner.html>

  *   igt@kms_lease@simple-lease@pipe-d-hdmi-a-3:

     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_lease@simple-lease@pipe-d-hdmi-a-3.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_lease@simple-lease@pipe-d-hdmi-a-3.html> +1 other test pass

  *   igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-6:

     *   shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-6.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-434/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-6.html> +34 other tests pass

  *   igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html> +1 other test pass

  *   igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html> (Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#4172<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html>

  *   igt@kms_pm_rpm@dpms-non-lpsp:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html> (Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_pm_rpm@dpms-non-lpsp.html>

  *   igt@kms_rotation_crc@multiplane-rotation-cropping-top:

     *   shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html>

  *   igt@kms_setmode@clone-exclusive-crtc:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_setmode@clone-exclusive-crtc.html>

  *   igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html>

  *   igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html> (Intel XE#4172<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html> +46 other tests pass

  *   igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html> (Intel XE#1999<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html> +2 other tests pass

  *   igt@xe_pm@s3-vm-bind-unbind-all:

     *   shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html> +2 other tests pass

  *   igt@xe_pm@s3-vm-bind-userptr:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html> (Intel XE#4172<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@xe_pm@s3-vm-bind-userptr.html> +3 other tests pass

Warnings

  *   igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +4 other tests skip

  *   igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#4172<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#3862<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862>) +1 other test incomplete

  *   igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +14 other tests skip

  *   igt@kms_content_protection@uevent:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_content_protection@uevent.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_content_protection@uevent.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>)
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_content_protection@uevent.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_content_protection@uevent.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)

  *   igt@kms_cursor_crc@cursor-onscreen-512x512:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x512.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>)

  *   igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)

  *   igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html> (Intel XE#4172<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>)

  *   igt@kms_flip@2x-flip-vs-expired-vblank:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)
     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>)

  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:

     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>)

  *   igt@kms_flip@flip-vs-expired-vblank-interruptible:

     *   shard-dg2-set2: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +1 other test fail

  *   igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +11 other tests skip

  *   igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +13 other tests skip

  *   igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +23 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +7 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +3 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +6 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +17 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +13 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +18 other tests skip

  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +3 other tests skip

  *   igt@kms_hdr@brightness-with-hdr:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)

  *   igt@xe_peer2peer@read:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_peer2peer@read.html> (Intel XE#1173<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-432/igt@xe_peer2peer@read.html> (Intel XE#1061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061>)

  *   igt@xe_pm@s4-mocs:

     *   shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@xe_pm@s4-mocs.html> (Intel XE#4172<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172> / Intel XE#4268<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-bmg-4/igt@xe_pm@s4-mocs.html> (Intel XE#4268<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268>)

  *   igt@xe_pm@s4-vm-bind-prefetch:

     *   shard-dg2-set2: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_pm@s4-vm-bind-prefetch.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#4268<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12577/shard-dg2-433/igt@xe_pm@s4-vm-bind-prefetch.html> (Intel XE#4268<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268>)

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

Build changes

  *   IGT: IGT_8228 -> IGTPW_12577
  *   Linux: xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 -> xe-2643-a5fe717b56653a6f5e5b98ed07d5fe54789465c9

IGTPW_12577: 12577
IGT_8228: 8228
xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77
xe-2643-a5fe717b56653a6f5e5b98ed07d5fe54789465c9: a5fe717b56653a6f5e5b98ed07d5fe54789465c9

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

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

* RE: ✗ i915.CI.Full: failure for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
  2025-02-12 10:17 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-02-12 14:11   ` B, Jeevan
  0 siblings, 0 replies; 17+ messages in thread
From: B, Jeevan @ 2025-02-12 14:11 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org

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

Failure is not related to the patch, Please re-report.

Thanks
Jeevan B


From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Wednesday, February 12, 2025 3:47 PM
To: B, Jeevan <jeevan.b@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ i915.CI.Full: failure for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)

Patch Details
Series:
tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7)
URL:
https://patchwork.freedesktop.org/series/143972/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/index.html
CI Bug Log - changes from CI_DRM_16112_full -> IGTPW_12577_full
Summary

FAILURE

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

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12577_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_12577/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_12577_full:

IGT changes
Possible regressions

  *   igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox:

     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-mtlp-6/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html>

  *   igt@gem_exec_flush@basic-uc-ro-default:

     *   shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-snb7/igt@gem_exec_flush@basic-uc-ro-default.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-snb5/igt@gem_exec_flush@basic-uc-ro-default.html>

  *   igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> +26 other tests skip

  *   igt@kms_flip@flip-vs-suspend-interruptible:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible.html> +84 other tests skip
     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-tglu-3/igt@kms_flip@flip-vs-suspend-interruptible.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-9/igt@kms_flip@flip-vs-suspend-interruptible.html> +1 other test abort

  *   igt@kms_flip@flip-vs-suspend@a-hdmi-a2:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-1/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html>

  *   {igt@kms_joiner@basic-max-non-joiner} (NEW):

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-6/igt@kms_joiner@basic-max-non-joiner.html>
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@kms_joiner@basic-max-non-joiner.html>
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_joiner@basic-max-non-joiner.html>
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-3/igt@kms_joiner@basic-max-non-joiner.html>

Warnings

  *   igt@gem_eio@kms:

     *   shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@gem_eio@kms.html> ([i915#5784]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_eio@kms.html>

  *   igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> ([i915#1769] / [i915#3555]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html>

  *   igt@kms_big_fb@4-tiled-8bpp-rotate-90:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> ([i915#4538] / [i915#5286]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> +5 other tests skip

  *   igt@kms_big_fb@linear-64bpp-rotate-90:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_big_fb@linear-64bpp-rotate-90.html> ([i915#3638]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-90.html> +1 other test skip

  *   igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html> ([i915#4538]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html> +7 other tests skip

  *   igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-12/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html> ([i915#6095]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html> +16 other tests skip

  *   igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html> ([i915#12313]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html> +2 other tests skip

  *   igt@kms_content_protection@atomic:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_content_protection@atomic.html> ([i915#7116] / [i915#9424]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_content_protection@atomic.html>

  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-1.html> ([i915#3299]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_content_protection@dp-mst-lic-type-1.html>

  *   igt@kms_cursor_crc@cursor-random-512x512:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html> ([i915#13049]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_cursor_crc@cursor-random-512x512.html> +2 other tests skip

  *   igt@kms_cursor_crc@cursor-rapid-movement-32x10:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> ([i915#3555]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> +5 other tests skip

  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> ([i915#4103] / [i915#4213]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html>

  *   igt@kms_dsc@dsc-with-formats:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html> ([i915#3555] / [i915#3840]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_dsc@dsc-with-formats.html>

  *   igt@kms_hdr@bpc-switch:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_hdr@bpc-switch.html> ([i915#3555] / [i915#8228]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_hdr@bpc-switch.html> +1 other test skip

  *   igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> ([i915#5289]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> +2 other tests skip

  *   igt@kms_tiled_display@basic-test-pattern:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html> ([i915#8623]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern.html>

  *   igt@kms_vrr@negative-basic:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-18/igt@kms_vrr@negative-basic.html> ([i915#3555] / [i915#9906]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_vrr@negative-basic.html>

New tests

New tests have been introduced between CI_DRM_16112_full and IGTPW_12577_full:

New IGT tests (15)

  *   igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-hdmi-a-4:

     *   Statuses : 1 pass(s)
     *   Exec time: [3.35] s

  *   igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-hdmi-a-4:

     *   Statuses : 1 pass(s)
     *   Exec time: [3.23] s

  *   igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-hdmi-a-4:

     *   Statuses : 1 pass(s)
     *   Exec time: [3.30] s

  *   igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-vga-1:

     *   Statuses : 1 pass(s)
     *   Exec time: [3.39] s

  *   igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-d-hdmi-a-4:

     *   Statuses : 1 pass(s)
     *   Exec time: [3.21] s

  *   igt@kms_cursor_edge_walk@128x128-top-edge@pipe-c-hdmi-a-1:

     *   Statuses : 1 pass(s)
     *   Exec time: [3.46] s

  *   igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-4:

     *   Statuses : 1 pass(s)
     *   Exec time: [3.33] s

  *   igt@kms_cursor_edge_walk@256x256-left-edge@pipe-d-hdmi-a-4:

     *   Statuses : 1 pass(s)
     *   Exec time: [3.23] s

  *   igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-c-hdmi-a-1:

     *   Statuses : 1 pass(s)
     *   Exec time: [3.47] s

  *   igt@kms_cursor_edge_walk@256x256-top-edge@pipe-c-hdmi-a-1:

     *   Statuses : 1 pass(s)
     *   Exec time: [3.43] s

  *   igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-hdmi-a-1:

     *   Statuses : 2 pass(s)
     *   Exec time: [1.72, 3.73] s

  *   igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-d-hdmi-a-1:

     *   Statuses : 1 pass(s)
     *   Exec time: [1.66] s

  *   igt@kms_joiner@basic-max-non-joiner:

     *   Statuses : 7 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_setmode@invalid-clone-single-crtc@pipe-a-hdmi-a-1-hdmi-a-2:

     *   Statuses : 1 pass(s)
     *   Exec time: [0.05] s

  *   igt@kms_setmode@invalid-clone-single-crtc@pipe-b-hdmi-a-1-hdmi-a-2:

     *   Statuses : 1 pass(s)
     *   Exec time: [0.05] s

Known issues

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

IGT changes
Issues hit

  *   igt@device_reset@unbind-cold-reset-rebind:

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

  *   igt@device_reset@unbind-reset-rebind:

     *   shard-dg1: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html> ([i915#11814] / [i915#11815] / [i915#9413])

  *   igt@drm_fdinfo@all-busy-check-all:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@drm_fdinfo@all-busy-check-all.html> ([i915#8414]) +9 other tests skip

  *   igt@drm_fdinfo@busy-check-all@bcs0:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@drm_fdinfo@busy-check-all@bcs0.html> ([i915#8414]) +6 other tests skip

  *   igt@drm_fdinfo@busy-hang@bcs0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-2/igt@drm_fdinfo@busy-hang@bcs0.html> ([i915#8414]) +16 other tests skip

  *   igt@drm_fdinfo@busy-idle@bcs0:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@drm_fdinfo@busy-idle@bcs0.html> ([i915#8414]) +8 other tests skip

  *   igt@fbdev@read:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-18/igt@fbdev@read.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@fbdev@read.html> ([i915#2582])

  *   igt@gem_caching@writes:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@gem_caching@writes.html> ([i915#4873]) +1 other test skip

  *   igt@gem_ccs@block-multicopy-compressed:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html> ([i915#9323])
     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@gem_ccs@block-multicopy-compressed.html> ([i915#9323])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html> ([i915#9323])

  *   igt@gem_ccs@block-multicopy-inplace:

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

  *   igt@gem_ccs@ctrl-surf-copy:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy.html> ([i915#3555] / [i915#9323])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy.html> ([i915#3555] / [i915#9323])
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html> ([i915#3555] / [i915#9323])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy.html> ([i915#3555] / [i915#9323])

  *   igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> ([i915#13356])

  *   igt@gem_close_race@multigpu-basic-process:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-2/igt@gem_close_race@multigpu-basic-process.html> ([i915#7697])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@gem_close_race@multigpu-basic-process.html> ([i915#7697]) +1 other test skip
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html> ([i915#7697])
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@gem_close_race@multigpu-basic-process.html> ([i915#7697])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html> ([i915#7697])

  *   igt@gem_compute@compute-square:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-4/igt@gem_compute@compute-square.html> ([i915#13665])

  *   igt@gem_create@create-ext-cpu-access-big:

     *   shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html> ([i915#13427])

  *   igt@gem_create@create-ext-set-pat:

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

  *   igt@gem_ctx_isolation@preservation-s3@bcs0:

     *   shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk9/igt@gem_ctx_isolation@preservation-s3@bcs0.html> ([i915#12353])

  *   igt@gem_ctx_persistence@engines-persistence:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-snb1/igt@gem_ctx_persistence@engines-persistence.html> ([i915#1099]) +2 other tests skip

  *   igt@gem_ctx_persistence@hang:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@gem_ctx_persistence@hang.html> ([i915#8555]) +1 other test skip

  *   igt@gem_ctx_persistence@heartbeat-hang:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-hang.html> ([i915#8555])

  *   igt@gem_ctx_persistence@heartbeat-stop:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-stop.html> ([i915#8555])
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-stop.html> ([i915#8555])

  *   igt@gem_ctx_sseu@engines:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@gem_ctx_sseu@engines.html> ([i915#280])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@gem_ctx_sseu@engines.html> ([i915#280]) +1 other test skip

  *   igt@gem_ctx_sseu@mmap-args:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-2/igt@gem_ctx_sseu@mmap-args.html> ([i915#280])

  *   igt@gem_eio@wait-1us:

     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-mtlp-2/igt@gem_eio@wait-1us.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@gem_eio@wait-1us.html> ([i915#13193]) +3 other tests abort

  *   igt@gem_exec_balancer@bonded-pair:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@gem_exec_balancer@bonded-pair.html> ([i915#4771])

  *   igt@gem_exec_balancer@bonded-semaphore:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html> ([i915#4812]) +2 other tests skip
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@gem_exec_balancer@bonded-semaphore.html> ([i915#4812]) +1 other test skip

  *   igt@gem_exec_balancer@bonded-true-hang:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html> ([i915#4812]) +1 other test skip

  *   igt@gem_exec_balancer@invalid-bonds:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-3/igt@gem_exec_balancer@invalid-bonds.html> ([i915#4036])

  *   igt@gem_exec_balancer@parallel-bb-first:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@gem_exec_balancer@parallel-bb-first.html> ([i915#4525]) +2 other tests skip

  *   igt@gem_exec_balancer@parallel-ordering:

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

  *   igt@gem_exec_balancer@parallel-out-fence:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-6/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])

  *   igt@gem_exec_big@single:

     *   shard-tglu: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-3/igt@gem_exec_big@single.html> ([i915#11713])

  *   igt@gem_exec_capture@capture-invisible@smem0:

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

  *   igt@gem_exec_flush@basic-uc-pro-default:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@gem_exec_flush@basic-uc-pro-default.html> ([i915#3539] / [i915#4852]) +1 other test skip

  *   igt@gem_exec_flush@basic-uc-prw-default:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@gem_exec_flush@basic-uc-prw-default.html> ([i915#3539])

  *   igt@gem_exec_flush@basic-uc-ro-default:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@gem_exec_flush@basic-uc-ro-default.html> ([i915#3539] / [i915#4852])

  *   igt@gem_exec_flush@basic-wb-prw-default:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_exec_flush@basic-wb-prw-default.html> ([i915#3539] / [i915#4852])

  *   igt@gem_exec_reloc@basic-cpu-noreloc:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-noreloc.html> ([i915#3281]) +3 other tests skip

  *   igt@gem_exec_reloc@basic-cpu-read-noreloc:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-read-noreloc.html> ([i915#3281]) +11 other tests skip

  *   igt@gem_exec_reloc@basic-gtt-cpu:

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

  *   igt@gem_exec_reloc@basic-gtt-read:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read.html> ([i915#3281]) +5 other tests skip

  *   igt@gem_exec_reloc@basic-wc-read:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read.html> ([i915#3281]) +7 other tests skip

  *   igt@gem_exec_schedule@preempt-queue-chain:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html> ([i915#4537] / [i915#4812])

  *   igt@gem_exec_schedule@preempt-queue-contexts-chain:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html> ([i915#4537] / [i915#4812])

  *   igt@gem_exec_schedule@preemptive-hang:

     *   shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@gem_exec_schedule@preemptive-hang.html> ([i915#12964]) +27 other tests dmesg-warn

  *   igt@gem_exec_schedule@reorder-wide:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_exec_schedule@reorder-wide.html> ([i915#4537] / [i915#4812])

  *   igt@gem_fence_thrash@bo-write-verify-threaded-none:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-threaded-none.html> ([i915#4860]) +1 other test skip

  *   igt@gem_fence_thrash@bo-write-verify-x:

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

  *   igt@gem_fenced_exec_thrash@2-spare-fences:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html> ([i915#4860]) +1 other test skip

  *   igt@gem_fenced_exec_thrash@too-many-fences:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_fenced_exec_thrash@too-many-fences.html> ([i915#4860])

  *   igt@gem_lmem_swapping@heavy-multi:

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

  *   igt@gem_lmem_swapping@heavy-random:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-9/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613]) +3 other tests skip

  *   igt@gem_lmem_swapping@heavy-verify-multi-ccs:

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

  *   igt@gem_lmem_swapping@parallel-multi:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@gem_lmem_swapping@parallel-multi.html> ([i915#4613]) +4 other tests skip

  *   igt@gem_lmem_swapping@parallel-random-verify:

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

  *   igt@gem_madvise@dontneed-before-exec:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@gem_madvise@dontneed-before-exec.html> ([i915#3282]) +4 other tests skip

  *   igt@gem_mmap@bad-size:

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

  *   igt@gem_mmap_gtt@basic-read-write-distinct:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-4/igt@gem_mmap_gtt@basic-read-write-distinct.html> ([i915#4077]) +15 other tests skip

  *   igt@gem_mmap_gtt@hang:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_mmap_gtt@hang.html> ([i915#4077]) +6 other tests skip

  *   igt@gem_mmap_wc@read:

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

  *   igt@gem_mmap_wc@write:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-7/igt@gem_mmap_wc@write.html> ([i915#4083]) +1 other test skip

  *   igt@gem_mmap_wc@write-gtt-read-wc:

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

  *   igt@gem_partial_pwrite_pread@reads-uncached:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@gem_partial_pwrite_pread@reads-uncached.html> ([i915#3282]) +10 other tests skip

  *   igt@gem_partial_pwrite_pread@write:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@gem_partial_pwrite_pread@write.html> ([i915#3282]) +6 other tests skip

  *   igt@gem_partial_pwrite_pread@writes-after-reads-display:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> ([i915#3282]) +6 other tests skip

  *   igt@gem_pread@exhaustion:

     *   shard-tglu: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-6/igt@gem_pread@exhaustion.html> ([i915#2658])
     *   shard-glk: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk7/igt@gem_pread@exhaustion.html> ([i915#2658])

  *   igt@gem_pxp@create-protected-buffer:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_pxp@create-protected-buffer.html> ([i915#4270]) +1 other test skip

  *   igt@gem_pxp@create-regular-buffer:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_pxp@create-regular-buffer.html> ([i915#4270])

  *   igt@gem_pxp@fail-invalid-protected-context:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@gem_pxp@fail-invalid-protected-context.html> ([i915#4270])

  *   igt@gem_pxp@hw-rejects-pxp-buffer:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-buffer.html> ([i915#13398])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@gem_pxp@hw-rejects-pxp-buffer.html> ([i915#13398]) +1 other test skip

  *   igt@gem_pxp@hw-rejects-pxp-context:

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

  *   igt@gem_pxp@reject-modify-context-protection-on:

     *   shard-rkl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html> ([i915#12917] / [i915#12964]) +4 other tests timeout

  *   igt@gem_pxp@verify-pxp-stale-buf-execution:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html> ([i915#12917] / [i915#12964]) +2 other tests timeout

  *   igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html> ([i915#5190] / [i915#8428]) +1 other test skip

  *   igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html> ([i915#8428]) +2 other tests skip

  *   igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html> ([i915#5190] / [i915#8428]) +4 other tests skip

  *   igt@gem_set_tiling_vs_blt@tiled-to-tiled:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> ([i915#4079])

  *   igt@gem_set_tiling_vs_blt@untiled-to-tiled:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> ([i915#4079])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> ([i915#4079])

  *   igt@gem_set_tiling_vs_gtt:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_set_tiling_vs_gtt.html> ([i915#4079])

  *   igt@gem_tiled_partial_pwrite_pread@writes:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@gem_tiled_partial_pwrite_pread@writes.html> ([i915#4077]) +12 other tests skip

  *   igt@gem_tiled_partial_pwrite_pread@writes-after-reads:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html> ([i915#4077]) +13 other tests skip

  *   igt@gem_tiled_swapping@non-threaded:

     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-9/igt@gem_tiled_swapping@non-threaded.html> ([i915#12941])

  *   igt@gem_userptr_blits@access-control:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@gem_userptr_blits@access-control.html> ([i915#3297]) +3 other tests skip

  *   igt@gem_userptr_blits@coherency-sync:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@gem_userptr_blits@coherency-sync.html> ([i915#3297])

  *   igt@gem_userptr_blits@coherency-unsync:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@gem_userptr_blits@coherency-unsync.html> ([i915#3297])

  *   igt@gem_userptr_blits@dmabuf-sync:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html> ([i915#3323])

  *   igt@gem_userptr_blits@dmabuf-unsync:

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

  *   igt@gem_userptr_blits@forbidden-operations:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html> ([i915#3282] / [i915#3297])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-3/igt@gem_userptr_blits@forbidden-operations.html> ([i915#3282] / [i915#3297])

  *   igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> ([i915#3297] / [i915#4880]) +1 other test skip
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> ([i915#3297] / [i915#4880])

  *   igt@gem_userptr_blits@readonly-unsync:

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

  *   igt@gem_userptr_blits@sd-probe:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@gem_userptr_blits@sd-probe.html> ([i915#3297] / [i915#4958])

  *   igt@gem_userptr_blits@unsync-overlap:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gem_userptr_blits@unsync-overlap.html> ([i915#3297])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@gem_userptr_blits@unsync-overlap.html> ([i915#3297]) +1 other test skip

  *   igt@gem_workarounds@suspend-resume:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-glk1/igt@gem_workarounds@suspend-resume.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk6/igt@gem_workarounds@suspend-resume.html> ([i915#13356])

  *   igt@gem_workarounds@suspend-resume-fd:

     *   shard-rkl: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html> ([i915#12964])

  *   igt@gen3_render_tiledx_blits:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-4/igt@gen3_render_tiledx_blits.html> +9 other tests skip

  *   igt@gen3_render_tiledy_blits:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@gen3_render_tiledy_blits.html> +25 other tests skip

  *   igt@gen9_exec_parse@allowed-single:

     *   shard-glk: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk1/igt@gen9_exec_parse@allowed-single.html> ([i915#5566])

  *   igt@gen9_exec_parse@bb-start-cmd:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@gen9_exec_parse@bb-start-cmd.html> ([i915#2856])

  *   igt@gen9_exec_parse@cmd-crossing-page:

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

  *   igt@gen9_exec_parse@shadow-peek:

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

  *   igt@gen9_exec_parse@unaligned-jump:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@gen9_exec_parse@unaligned-jump.html> ([i915#2856]) +4 other tests skip
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@gen9_exec_parse@unaligned-jump.html> ([i915#2527]) +1 other test skip

  *   igt@gen9_exec_parse@valid-registers:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html> ([i915#2527]) +4 other tests skip

  *   igt@i915_fb_tiling:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@i915_fb_tiling.html> ([i915#4881])

  *   igt@i915_module_load@resize-bar:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@i915_module_load@resize-bar.html> ([i915#6412])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@i915_module_load@resize-bar.html> ([i915#7178])

  *   igt@i915_pm_freq_api@freq-basic-api:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@i915_pm_freq_api@freq-basic-api.html> ([i915#8399])

  *   igt@i915_pm_freq_mult@media-freq@gt0:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html> ([i915#6590]) +1 other test skip

  *   igt@i915_pm_rc6_residency@rc6-fence:

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

  *   igt@i915_pm_rpm@gem-evict-pwrite:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-6/igt@i915_pm_rpm@gem-evict-pwrite.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@i915_pm_rpm@gem-evict-pwrite.html> ([i915#13328])

  *   igt@i915_pm_rpm@system-suspend:

     *   shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk6/igt@i915_pm_rpm@system-suspend.html> ([i915#12797])

  *   igt@i915_pm_rps@basic-api:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@i915_pm_rps@basic-api.html> ([i915#11681] / [i915#6621])

  *   igt@i915_pm_rps@thresholds-idle:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle.html> ([i915#11681]) +1 other test skip
     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html> ([i915#11681])

  *   igt@i915_pm_rps@thresholds-park:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@i915_pm_rps@thresholds-park.html> ([i915#11681])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@i915_pm_rps@thresholds-park.html> ([i915#11681])

  *   igt@i915_power@sanity:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@i915_power@sanity.html> ([i915#7984])

  *   igt@i915_query@test-query-geometry-subslices:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html> ([i915#5723])

  *   igt@i915_selftest@mock@memory_region:

     *   shard-dg2-9: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@i915_selftest@mock@memory_region.html> ([i915#9311]) +1 other test dmesg-warn

  *   igt@i915_suspend@basic-s3-without-i915:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@i915_suspend@basic-s3-without-i915.html> ([i915#6645])

  *   igt@intel_hwmon@hwmon-write:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@intel_hwmon@hwmon-write.html> ([i915#7707])
     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-2/igt@intel_hwmon@hwmon-write.html> ([i915#7707]) +1 other test skip
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@intel_hwmon@hwmon-write.html> ([i915#7707])

  *   igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> ([i915#4212]) +1 other test skip
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> ([i915#4212]) +1 other test skip

  *   igt@kms_addfb_basic@clobberred-modifier:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_addfb_basic@clobberred-modifier.html> ([i915#4212])

  *   igt@kms_addfb_basic@invalid-smem-bo-on-discrete:

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

  *   igt@kms_addfb_basic@tile-pitch-mismatch:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html> ([i915#4212]) +1 other test skip

  *   igt@kms_async_flips@async-flip-suspend-resume:

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

  *   igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs-cc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs-cc.html> ([i915#8709]) +1 other test skip

  *   igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc.html> ([i915#8709]) +15 other tests skip

  *   igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-9/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc.html> ([i915#8709]) +3 other tests skip

  *   igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs.html> ([i915#8709]) +7 other tests skip

  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html> ([i915#8709]) +3 other tests skip

  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs-cc:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs-cc.html> ([i915#8709]) +3 other tests skip

  *   igt@kms_atomic_transition@plane-all-modeset-transition:

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

  *   igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:

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

  *   igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:

     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html> ([i915#11808]) +1 other test fail

  *   igt@kms_big_fb@4-tiled-16bpp-rotate-0:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> ([i915#5286]) +6 other tests skip

  *   igt@kms_big_fb@4-tiled-16bpp-rotate-180:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> ([i915#4538] / [i915#5286]) +3 other tests skip

  *   igt@kms_big_fb@4-tiled-32bpp-rotate-270:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html> ([i915#5286]) +7 other tests skip

  *   igt@kms_big_fb@4-tiled-64bpp-rotate-90:

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

  *   igt@kms_big_fb@4-tiled-addfb-size-overflow:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-overflow.html> ([i915#5286])

  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:

     *   shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> ([i915#5138])

  *   igt@kms_big_fb@x-tiled-16bpp-rotate-90:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> +3 other tests skip
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> ([i915#3638]) +1 other test skip

  *   igt@kms_big_fb@y-tiled-64bpp-rotate-270:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> ([i915#3638]) +4 other tests skip

  *   igt@kms_big_fb@y-tiled-8bpp-rotate-180:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html> ([i915#4538] / [i915#5190]) +11 other tests skip

  *   igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> ([i915#5190])

  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:

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

  *   igt@kms_big_fb@yf-tiled-64bpp-rotate-90:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> ([i915#4538]) +4 other tests skip

  *   igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> ([i915#6187]) +1 other test skip

  *   igt@kms_big_fb@yf-tiled-addfb-size-overflow:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> ([i915#5190])

  *   igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html> +24 other tests skip

  *   igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> +89 other tests skip

  *   igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html> ([i915#6095]) +135 other tests skip

  *   igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html> ([i915#10307] / [i915#6095]) +19 other tests skip

  *   igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> ([i915#12313]) +1 other test skip

  *   igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html> ([i915#6095]) +74 other tests skip

  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> ([i915#12313])

  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html> ([i915#6095]) +101 other tests skip

  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:

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

  *   igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:

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

  *   igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> ([i915#12805])

  *   igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2:

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

  *   igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html> ([i915#12796])

  *   igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-dp-3:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-dp-3.html> ([i915#6095]) +11 other tests skip

  *   igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html> ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip

  *   igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4.html> ([i915#10307] / [i915#6095]) +145 other tests skip

  *   igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:

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

  *   igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html> ([i915#6095]) +64 other tests skip

  *   igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:

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

  *   igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html> ([i915#4087]) +4 other tests skip

  *   igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html> ([i915#11151] / [i915#7828]) +9 other tests skip

  *   igt@kms_chamelium_frames@dp-crc-single:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_chamelium_frames@dp-crc-single.html> ([i915#11151] / [i915#7828]) +11 other tests skip

  *   igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html> ([i915#11151] / [i915#7828]) +10 other tests skip

  *   igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html> ([i915#11151] / [i915#7828]) +8 other tests skip

  *   igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html> ([i915#11151] / [i915#7828]) +3 other tests skip

  *   igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html> ([i915#11151] / [i915#7828]) +11 other tests skip

  *   igt@kms_chamelium_hpd@vga-hpd-without-ddc:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html> ([i915#11151] / [i915#7828]) +2 other tests skip

  *   igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html> ([i915#7173])

  *   igt@kms_content_protection@content-type-change:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-9/igt@kms_content_protection@content-type-change.html> ([i915#6944] / [i915#9424])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-13/igt@kms_content_protection@content-type-change.html> ([i915#9424])

  *   igt@kms_content_protection@lic-type-0:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-8/igt@kms_content_protection@lic-type-0.html> ([i915#6944] / [i915#9424]) +2 other tests skip

  *   igt@kms_content_protection@lic-type-1:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@kms_content_protection@lic-type-1.html> ([i915#9424]) +1 other test skip

  *   igt@kms_content_protection@srm:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_content_protection@srm.html> ([i915#6944] / [i915#7116] / [i915#7118])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_content_protection@srm.html> ([i915#7116])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-7/igt@kms_content_protection@srm.html> ([i915#6944])

  *   igt@kms_content_protection@type1:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_content_protection@type1.html> ([i915#7116] / [i915#9424])

  *   igt@kms_cursor_crc@cursor-offscreen-32x32:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html> ([i915#3555]) +6 other tests skip

  *   igt@kms_cursor_crc@cursor-offscreen-512x170:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html> ([i915#13049]) +1 other test skip
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html> ([i915#13049]) +2 other tests skip
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html> ([i915#13049]) +3 other tests skip
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x170.html> ([i915#13049]) +1 other test skip

  *   igt@kms_cursor_crc@cursor-offscreen-512x512:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html> ([i915#13049])

  *   igt@kms_cursor_crc@cursor-rapid-movement-64x21:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html> ([i915#8814]) +2 other tests skip

  *   igt@kms_cursor_crc@cursor-sliding-256x85:

     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-256x85.html> ([i915#13566]) +1 other test fail

  *   igt@kms_cursor_crc@cursor-sliding-32x10:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html> ([i915#3555]) +3 other tests skip
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-32x10.html> ([i915#3555]) +8 other tests skip
     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html> ([i915#3555]) +4 other tests skip

  *   igt@kms_cursor_crc@cursor-sliding-32x32:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x32.html> ([i915#3555] / [i915#8814]) +3 other tests skip

  *   igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> ([i915#9809])

  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> ([i915#4213])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> ([i915#4103] / [i915#4213])

  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:

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

  *   igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:

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

  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> ([i915#4103])
     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> ([i915#4103])

  *   igt@kms_dirtyfb@drrs-dirtyfb-ioctl:

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

  *   igt@kms_dp_aux_dev:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg2-11/igt@kms_dp_aux_dev.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@kms_dp_aux_dev.html> ([i915#1257])

  *   igt@kms_dp_linktrain_fallback@dp-fallback:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html> ([i915#12402])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@kms_dp_linktrain_fallback@dp-fallback.html> ([i915#12402])
     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@kms_dp_linktrain_fallback@dp-fallback.html> ([i915#12402])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_dp_linktrain_fallback@dp-fallback.html> ([i915#12402])

  *   igt@kms_draw_crc@draw-method-mmap-wc:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html> ([i915#8812])

  *   igt@kms_dsc@dsc-fractional-bpp:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html> ([i915#3840])
     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp.html> ([i915#3840])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html> ([i915#3840] / [i915#9688])

  *   igt@kms_dsc@dsc-fractional-bpp-with-bpc:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> ([i915#3840])

  *   igt@kms_dsc@dsc-with-bpc-formats:

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

  *   igt@kms_dsc@dsc-with-formats:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_dsc@dsc-with-formats.html> ([i915#3555] / [i915#3840])
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html> ([i915#3555] / [i915#3840])

  *   igt@kms_dsc@dsc-with-output-formats:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats.html> ([i915#3555] / [i915#3840])
     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html> ([i915#3555] / [i915#3840])

  *   igt@kms_fbcon_fbt@fbc-suspend:

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

  *   igt@kms_fbcon_fbt@psr:

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

  *   igt@kms_feature_discovery@display-2x:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_feature_discovery@display-2x.html> ([i915#1839])

  *   igt@kms_feature_discovery@display-4x:

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

  *   igt@kms_feature_discovery@dp-mst:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html> ([i915#9337])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@kms_feature_discovery@dp-mst.html> ([i915#9337])

  *   igt@kms_feature_discovery@psr2:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@kms_feature_discovery@psr2.html> ([i915#658])

  *   igt@kms_fence_pin_leak:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-12/igt@kms_fence_pin_leak.html> ([i915#4881])
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_fence_pin_leak.html> ([i915#4881])
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_fence_pin_leak.html> ([i915#4881])

  *   igt@kms_flip@2x-blocking-absolute-wf_vblank:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html> ([i915#3637]) +7 other tests skip

  *   igt@kms_flip@2x-flip-vs-fences-interruptible:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html> ([i915#8381])

  *   igt@kms_flip@2x-flip-vs-suspend-interruptible:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> ([i915#3637]) +8 other tests skip

  *   igt@kms_flip@2x-plain-flip-interruptible:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_flip@2x-plain-flip-interruptible.html> ([i915#9934]) +1 other test skip

  *   igt@kms_flip@2x-plain-flip-ts-check-interruptible:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html> ([i915#9934]) +9 other tests skip

  *   igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html> ([i915#9934]) +4 other tests skip
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html> ([i915#9934]) +11 other tests skip
     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html> ([i915#3637]) +1 other test skip

  *   igt@kms_flip@basic-flip-vs-modeset:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_flip@basic-flip-vs-modeset.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_flip@basic-flip-vs-modeset.html> ([i915#3637])

  *   igt@kms_flip@flip-vs-blocking-wf-vblank:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-3/igt@kms_flip@flip-vs-blocking-wf-vblank.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-3/igt@kms_flip@flip-vs-blocking-wf-vblank.html> ([i915#11989]) +1 other test fail

  *   igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:

     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html> ([i915#11989]) +1 other test fail

  *   igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:

     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-tglu-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html> ([i915#11989]) +2 other tests fail

  *   igt@kms_flip@flip-vs-panning@b-hdmi-a1:

     *   shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk8/igt@kms_flip@flip-vs-panning@b-hdmi-a1.html> ([i915#118]) +1 other test dmesg-warn

  *   igt@kms_flip@flip-vs-suspend:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-1/igt@kms_flip@flip-vs-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-5/igt@kms_flip@flip-vs-suspend.html> ([i915#6113])
     *   shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk2/igt@kms_flip@flip-vs-suspend.html> ([i915#12745] / [i915#4839])

  *   igt@kms_flip@flip-vs-suspend@a-hdmi-a1:

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

  *   igt@kms_flip@plain-flip-ts-check-interruptible:

     *   shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html> ([i915#11989]) +5 other tests fail

  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> ([i915#2672] / [i915#3555])

  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +1 other test skip

  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip

  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html> ([i915#8810])

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> ([i915#2672] / [i915#3555]) +1 other test skip

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +2 other tests skip

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html> ([i915#2672] / [i915#3555])

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> ([i915#2672]) +1 other test skip

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> ([i915#2672] / [i915#3555])

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html> ([i915#2672] / [i915#8813]) +3 other tests skip

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> ([i915#2672]) +5 other tests skip

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:

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

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> ([i915#2587] / [i915#2672] / [i915#3555])

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +5 other tests skip

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html> ([i915#2587] / [i915#2672] / [i915#3555])

  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html> ([i915#2672] / [i915#3555]) +3 other tests skip

  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> ([i915#2672] / [i915#3555]) +5 other tests skip

  *   igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html> ([i915#3555] / [i915#8810])

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html> ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html> ([i915#2672]) +4 other tests skip

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html> ([i915#2672] / [i915#3555] / [i915#5190])

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> ([i915#2672] / [i915#3555] / [i915#8813]) +9 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:

     *   shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html> ([i915#12917] / [i915#12964])

  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html> ([i915#4342]) +10 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu:

     *   shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html> +2 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> ([i915#1825]) +48 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:

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

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html> ([i915#5354]) +26 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:

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

  *   igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html> ([i915#8708]) +13 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-tiling-4:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html> ([i915#6880])
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html> ([i915#5439])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html> ([i915#5439])
     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html> ([i915#5439])

  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html> ([i915#3023]) +29 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> +36 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html> ([i915#1825]) +38 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html> +30 other tests skip
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html> ([i915#3458]) +18 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html> ([i915#3458]) +9 other tests skip

  *   igt@kms_frontbuffer_tracking@pipe-fbc-rte:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> ([i915#9766])

  *   igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html> ([i915#10433] / [i915#3458])

  *   igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:

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

  *   igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> ([i915#3458]) +20 other tests skip

  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html> ([i915#5354]) +13 other tests skip

  *   igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html> ([i915#4342]) +11 other tests skip

  *   igt@kms_hdr@bpc-switch-dpms:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms.html> ([i915#3555] / [i915#8228])
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html> ([i915#3555] / [i915#8228]) +1 other test skip
     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-10/igt@kms_hdr@bpc-switch-dpms.html> ([i915#3555] / [i915#8228])

  *   igt@kms_hdr@brightness-with-hdr:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html> ([i915#12713])

  *   igt@kms_hdr@static-toggle-dpms:

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

  *   igt@kms_joiner@basic-force-ultra-joiner:

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

  *   igt@kms_joiner@invalid-modeset-big-joiner:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_joiner@invalid-modeset-big-joiner.html> ([i915#10656])

  *   igt@kms_joiner@invalid-modeset-force-big-joiner:

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

  *   igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> ([i915#13522])

  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> ([i915#4816])

  *   igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-rkl-8/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html> ([i915#12964]) +29 other tests dmesg-warn

  *   igt@kms_plane@plane-panning-bottom-right-suspend:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_plane@plane-panning-bottom-right-suspend.html> ([i915#8825])
     *   shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk7/igt@kms_plane@plane-panning-bottom-right-suspend.html> ([i915#13026]) +1 other test incomplete

  *   igt@kms_plane@plane-position-hole-dpms:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-12/igt@kms_plane@plane-position-hole-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_plane@plane-position-hole-dpms.html> ([i915#8825]) +2 other tests skip

  *   igt@kms_plane_alpha_blend@alpha-basic:

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

  *   igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:

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

  *   igt@kms_plane_alpha_blend@alpha-opaque-fb:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16112/shard-dg1-14/igt@kms_plane_alpha_blend@alpha-opaque-fb.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_plane_alpha_blend@alpha-opaque-fb.html> ([i915#7294])

  *   igt@kms_plane_alpha_blend@alpha-transparent-fb:

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

  *   igt@kms_plane_alpha_blend@constant-alpha-max:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-15/igt@kms_plane_alpha_blend@constant-alpha-max.html> ([i915#7294])
     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max.html> ([i915#10647] / [i915#12169])

  *   igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html> ([i915#10647]) +3 other tests fail

  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> ([i915#12247] / [i915#9423])

  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html> ([i915#12247]) +10 other tests skip

  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html> ([i915#12247]) +17 other tests skip

  *   igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html> ([i915#12247]) +9 other tests skip

  *   igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-glk3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html> +409 other tests skip

  *   igt@kms_plane_scaling@planes-downscale-factor-0-25:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25.html> ([i915#12247] / [i915#6953] / [i915#9423])

  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12577/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.> ([i915#12247] / [i915#6953])

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

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

end of thread, other threads:[~2025-02-12 14:12 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-12  7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-02-12  7:21 ` B, Jeevan
2025-02-12  7:36 ` [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe Jeevan B
2025-02-12 10:42   ` Karthik B S
2025-02-12  7:36 ` [PATCH i-g-t 2/3] lib/igt_kms: Add support to check joiner mode limit Jeevan B
2025-02-12 10:46   ` Karthik B S
2025-02-12  7:36 ` [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-02-12 10:50   ` Karthik B S
2025-02-12  8:15 ` ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev7) Patchwork
2025-02-12  8:32 ` ✓ i915.CI.BAT: " Patchwork
2025-02-12 10:17 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-12 14:11   ` B, Jeevan
2025-02-12 10:20 ` ✗ Xe.CI.Full: " Patchwork
2025-02-12 14:11   ` B, Jeevan
  -- strict thread matches above, loose matches on Subject: below --
2025-02-10 18:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-02-10 18:36 ` [PATCH i-g-t 3/3] " Jeevan B
2025-02-04 18:27 [PATCH i-g-t 0/3] " Jeevan B
2025-02-04 18:27 ` [PATCH i-g-t 3/3] " Jeevan B
2025-02-07  8:25   ` Karthik B S

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