Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs
  2024-06-13 13:07 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
@ 2024-06-13 13:07 ` Kunal Joshi
  2024-06-13 14:48   ` Aurabindo Pillai
  0 siblings, 1 reply; 13+ messages in thread
From: Kunal Joshi @ 2024-06-13 13:07 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi, Aurabindo Pillai

forcing DP connector doesn't work well and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.

Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
 tests/kms_bw.c | 41 +++++++++++++++++++++++++++++++++++------
 1 file changed, 35 insertions(+), 6 deletions(-)

diff --git a/tests/kms_bw.c b/tests/kms_bw.c
index 05f7e79ad..bbf374612 100644
--- a/tests/kms_bw.c
+++ b/tests/kms_bw.c
@@ -48,6 +48,19 @@
  * @2560x1440p:       2560x1440 resolution
  * @3840x2160p:       3840x2160 resolution
  * @2160x1440p:       2160x1440 resolution
+ *
+ * SUBTEST: connected-linear-tiling-%d-displays-%s
+ * Description: bw test with %arg[2]
+ *
+ * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
+ *
+ * arg[2]:
+ *
+ * @1920x1080p:       1920x1080 resolution
+ * @2560x1440p:       2560x1440 resolution
+ * @3840x2160p:       3840x2160 resolution
+ * @2160x1440p:       2160x1440 resolution
+ *
  */
 
 /* Common test data. */
@@ -55,6 +68,7 @@ typedef struct data {
         igt_display_t display;
         igt_plane_t *primary[IGT_MAX_PIPES];
         igt_output_t *output[IGT_MAX_PIPES];
+	igt_output_t *connected_output[IGT_MAX_PIPES];
         igt_pipe_t *pipe[IGT_MAX_PIPES];
         igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES];
         drmModeModeInfo mode[IGT_MAX_PIPES];
@@ -62,6 +76,7 @@ typedef struct data {
         int w[IGT_MAX_PIPES];
         int h[IGT_MAX_PIPES];
         int fd;
+	int connected_outputs;
 } data_t;
 
 static drmModeModeInfo test_mode[] = {
@@ -108,6 +123,7 @@ static void test_init(data_t *data)
 	igt_display_t *display = &data->display;
 	int i, max_pipes = display->n_pipes;
 	igt_output_t *output;
+	data->connected_outputs = 0;
 
 	for_each_pipe(display, i) {
 		data->pipe_id[i] = i;
@@ -124,12 +140,12 @@ static void test_init(data_t *data)
 			continue;
 
 		output = &display->outputs[i];
-
 		data->output[i] = output;
 
 		/* Only allow physically connected displays for the tests. */
 		if (!igt_output_is_connected(output))
 			continue;
+		data->connected_output[data->connected_outputs++] = output;
 
 		igt_assert(kmstest_get_connector_default_mode(
 			data->fd, output->config.connector, &data->mode[i]));
@@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output,
 	igt_output_override_mode(output, mode);
 }
 
-static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) {
+static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) {
 	igt_display_t *display = &data->display;
 	igt_output_t *output;
 	struct igt_fb buffer[IGT_MAX_PIPES];
@@ -189,11 +205,15 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 	igt_skip_on_f(pipe >= num_pipes,
                       "ASIC does not have %d pipes\n", pipe);
 
+        igt_skip_on_f(physical && pipe > data->connected_outputs ,
+                      "Only %d connected need %d pipes\n",data->connected_outputs, pipe);
+
+
 	test_init(data);
 
 	/* create buffers */
 	for (i = 0; i <= pipe; i++) {
-		output = data->output[i];
+		output = physical ? data->connected_output[i] : data->output[i];
 		if (!output) {
 			continue;
 		}
@@ -219,7 +239,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 	igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
 
 	for (i = 0; i <= pipe; i++) {
-		output = data->output[i];
+		output = physical ? data->connected_output[i] : data->output[i];
 		if (!output) {
 			continue;
 		}
@@ -230,7 +250,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 	}
 
 	for (i = pipe; i >= 0; i--) {
-		output = data->output[i];
+		output = physical ? data->connected_output[i] : data->output[i];
 		if (!output)
 			continue;
 
@@ -265,10 +285,19 @@ igt_main
 		for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
 			igt_subtest_f("linear-tiling-%d-displays-%s", i+1,
 			      test_mode[j].name)
-			run_test_linear_tiling(&data, i, &test_mode[j]);
+			run_test_linear_tiling(&data, i, &test_mode[j], false);
 		}
 	}
 
+        for (i = 0; i < IGT_MAX_PIPES; i++) {
+                for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
+                        igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1,
+                              test_mode[j].name)
+                        run_test_linear_tiling(&data, i, &test_mode[j], true);
+                }
+        }
+
+
 	igt_fixture
 	{
 		igt_display_fini(&data.display);
-- 
2.25.1


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

* Re: [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs
  2024-06-13 13:07 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
@ 2024-06-13 14:48   ` Aurabindo Pillai
  0 siblings, 0 replies; 13+ messages in thread
From: Aurabindo Pillai @ 2024-06-13 14:48 UTC (permalink / raw)
  To: Kunal Joshi, igt-dev



On 6/13/24 9:07 AM, Kunal Joshi wrote:
> forcing DP connector doesn't work well and tests are skipping
> with unsupported mode, add new test which runs test on connected
> outputs only.
> 
> Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
>   tests/kms_bw.c | 41 +++++++++++++++++++++++++++++++++++------
>   1 file changed, 35 insertions(+), 6 deletions(-)
> 
> diff --git a/tests/kms_bw.c b/tests/kms_bw.c
> index 05f7e79ad..bbf374612 100644
> --- a/tests/kms_bw.c
> +++ b/tests/kms_bw.c
> @@ -48,6 +48,19 @@
>    * @2560x1440p:       2560x1440 resolution
>    * @3840x2160p:       3840x2160 resolution
>    * @2160x1440p:       2160x1440 resolution
> + *
> + * SUBTEST: connected-linear-tiling-%d-displays-%s
> + * Description: bw test with %arg[2]
> + *
> + * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
> + *
> + * arg[2]:
> + *
> + * @1920x1080p:       1920x1080 resolution
> + * @2560x1440p:       2560x1440 resolution
> + * @3840x2160p:       3840x2160 resolution
> + * @2160x1440p:       2160x1440 resolution
> + *
>    */
>   
>   /* Common test data. */
> @@ -55,6 +68,7 @@ typedef struct data {
>           igt_display_t display;
>           igt_plane_t *primary[IGT_MAX_PIPES];
>           igt_output_t *output[IGT_MAX_PIPES];
> +	igt_output_t *connected_output[IGT_MAX_PIPES];
>           igt_pipe_t *pipe[IGT_MAX_PIPES];
>           igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES];
>           drmModeModeInfo mode[IGT_MAX_PIPES];
> @@ -62,6 +76,7 @@ typedef struct data {
>           int w[IGT_MAX_PIPES];
>           int h[IGT_MAX_PIPES];
>           int fd;
> +	int connected_outputs;
>   } data_t;
>   
>   static drmModeModeInfo test_mode[] = {
> @@ -108,6 +123,7 @@ static void test_init(data_t *data)
>   	igt_display_t *display = &data->display;
>   	int i, max_pipes = display->n_pipes;
>   	igt_output_t *output;
> +	data->connected_outputs = 0;
>   
>   	for_each_pipe(display, i) {
>   		data->pipe_id[i] = i;
> @@ -124,12 +140,12 @@ static void test_init(data_t *data)
>   			continue;
>   
>   		output = &display->outputs[i];
> -
>   		data->output[i] = output;
>   
>   		/* Only allow physically connected displays for the tests. */
>   		if (!igt_output_is_connected(output))
>   			continue;
> +		data->connected_output[data->connected_outputs++] = output;
>   
>   		igt_assert(kmstest_get_connector_default_mode(
>   			data->fd, output->config.connector, &data->mode[i]));
> @@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output,
>   	igt_output_override_mode(output, mode);
>   }
>   
> -static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) {
> +static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) {
>   	igt_display_t *display = &data->display;
>   	igt_output_t *output;
>   	struct igt_fb buffer[IGT_MAX_PIPES];
> @@ -189,11 +205,15 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
>   	igt_skip_on_f(pipe >= num_pipes,
>                         "ASIC does not have %d pipes\n", pipe);
>   
> +        igt_skip_on_f(physical && pipe > data->connected_outputs ,
> +                      "Only %d connected need %d pipes\n",data->connected_outputs, pipe);
> +
> +
>   	test_init(data);
>   
>   	/* create buffers */
>   	for (i = 0; i <= pipe; i++) {
> -		output = data->output[i];
> +		output = physical ? data->connected_output[i] : data->output[i];
>   		if (!output) {
>   			continue;
>   		}
> @@ -219,7 +239,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
>   	igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
>   
>   	for (i = 0; i <= pipe; i++) {
> -		output = data->output[i];
> +		output = physical ? data->connected_output[i] : data->output[i];
>   		if (!output) {
>   			continue;
>   		}
> @@ -230,7 +250,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
>   	}
>   
>   	for (i = pipe; i >= 0; i--) {
> -		output = data->output[i];
> +		output = physical ? data->connected_output[i] : data->output[i];
>   		if (!output)
>   			continue;
>   
> @@ -265,10 +285,19 @@ igt_main
>   		for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
>   			igt_subtest_f("linear-tiling-%d-displays-%s", i+1,
>   			      test_mode[j].name)
> -			run_test_linear_tiling(&data, i, &test_mode[j]);
> +			run_test_linear_tiling(&data, i, &test_mode[j], false);
>   		}
>   	}
>   
> +        for (i = 0; i < IGT_MAX_PIPES; i++) {
> +                for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
> +                        igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1,
> +                              test_mode[j].name)
> +                        run_test_linear_tiling(&data, i, &test_mode[j], true);
> +                }
> +        }
> +
> +
>   	igt_fixture
>   	{
>   		igt_display_fini(&data.display);


Thanks! The patch is:

Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>

-- 


Thanks & Regards,
Aurabindo Pillai

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

* [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs
  2024-06-17 16:10 [PATCH i-g-t 0/2] " Kunal Joshi
@ 2024-06-17 16:10 ` Kunal Joshi
  2024-06-17 16:11   ` Pillai, Aurabindo
  0 siblings, 1 reply; 13+ messages in thread
From: Kunal Joshi @ 2024-06-17 16:10 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi, Aurabindo Pillai

forcing DP connector doesn't work well and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.

v2: added debug print for better clarity of skips on unsupported mode

Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
---
 tests/kms_bw.c | 43 +++++++++++++++++++++++++++++++++++++------
 1 file changed, 37 insertions(+), 6 deletions(-)

diff --git a/tests/kms_bw.c b/tests/kms_bw.c
index 05f7e79ad..9f376bfe3 100644
--- a/tests/kms_bw.c
+++ b/tests/kms_bw.c
@@ -48,6 +48,19 @@
  * @2560x1440p:       2560x1440 resolution
  * @3840x2160p:       3840x2160 resolution
  * @2160x1440p:       2160x1440 resolution
+ *
+ * SUBTEST: connected-linear-tiling-%d-displays-%s
+ * Description: bw test with %arg[2]
+ *
+ * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
+ *
+ * arg[2]:
+ *
+ * @1920x1080p:       1920x1080 resolution
+ * @2560x1440p:       2560x1440 resolution
+ * @3840x2160p:       3840x2160 resolution
+ * @2160x1440p:       2160x1440 resolution
+ *
  */
 
 /* Common test data. */
@@ -55,6 +68,7 @@ typedef struct data {
         igt_display_t display;
         igt_plane_t *primary[IGT_MAX_PIPES];
         igt_output_t *output[IGT_MAX_PIPES];
+	igt_output_t *connected_output[IGT_MAX_PIPES];
         igt_pipe_t *pipe[IGT_MAX_PIPES];
         igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES];
         drmModeModeInfo mode[IGT_MAX_PIPES];
@@ -62,6 +76,7 @@ typedef struct data {
         int w[IGT_MAX_PIPES];
         int h[IGT_MAX_PIPES];
         int fd;
+	int connected_outputs;
 } data_t;
 
 static drmModeModeInfo test_mode[] = {
@@ -108,6 +123,7 @@ static void test_init(data_t *data)
 	igt_display_t *display = &data->display;
 	int i, max_pipes = display->n_pipes;
 	igt_output_t *output;
+	data->connected_outputs = 0;
 
 	for_each_pipe(display, i) {
 		data->pipe_id[i] = i;
@@ -124,12 +140,12 @@ static void test_init(data_t *data)
 			continue;
 
 		output = &display->outputs[i];
-
 		data->output[i] = output;
 
 		/* Only allow physically connected displays for the tests. */
 		if (!igt_output_is_connected(output))
 			continue;
+		data->connected_output[data->connected_outputs++] = output;
 
 		igt_assert(kmstest_get_connector_default_mode(
 			data->fd, output->config.connector, &data->mode[i]));
@@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output,
 	igt_output_override_mode(output, mode);
 }
 
-static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) {
+static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) {
 	igt_display_t *display = &data->display;
 	igt_output_t *output;
 	struct igt_fb buffer[IGT_MAX_PIPES];
@@ -189,11 +205,15 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 	igt_skip_on_f(pipe >= num_pipes,
                       "ASIC does not have %d pipes\n", pipe);
 
+        igt_skip_on_f(physical && pipe > data->connected_outputs ,
+                      "Only %d connected need %d pipes\n",data->connected_outputs, pipe);
+
+
 	test_init(data);
 
 	/* create buffers */
 	for (i = 0; i <= pipe; i++) {
-		output = data->output[i];
+		output = physical ? data->connected_output[i] : data->output[i];
 		if (!output) {
 			continue;
 		}
@@ -208,6 +228,8 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 		igt_output_set_pipe(output, i);
 
 		igt_plane_set_fb(data->primary[i], &buffer[i]);
+		igt_info("Assigning pipe %s to output %s with mode %s",
+				 kmstest_pipe_name(i), igt_output_name(output), mode->name);
 	}
 
 	ret = igt_display_try_commit_atomic(display,
@@ -219,7 +241,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 	igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
 
 	for (i = 0; i <= pipe; i++) {
-		output = data->output[i];
+		output = physical ? data->connected_output[i] : data->output[i];
 		if (!output) {
 			continue;
 		}
@@ -230,7 +252,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 	}
 
 	for (i = pipe; i >= 0; i--) {
-		output = data->output[i];
+		output = physical ? data->connected_output[i] : data->output[i];
 		if (!output)
 			continue;
 
@@ -265,10 +287,19 @@ igt_main
 		for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
 			igt_subtest_f("linear-tiling-%d-displays-%s", i+1,
 			      test_mode[j].name)
-			run_test_linear_tiling(&data, i, &test_mode[j]);
+			run_test_linear_tiling(&data, i, &test_mode[j], false);
 		}
 	}
 
+        for (i = 0; i < IGT_MAX_PIPES; i++) {
+                for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
+                        igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1,
+                              test_mode[j].name)
+                        run_test_linear_tiling(&data, i, &test_mode[j], true);
+                }
+        }
+
+
 	igt_fixture
 	{
 		igt_display_fini(&data.display);
-- 
2.25.1


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

* Re: [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs
  2024-06-17 16:10 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
@ 2024-06-17 16:11   ` Pillai, Aurabindo
  0 siblings, 0 replies; 13+ messages in thread
From: Pillai, Aurabindo @ 2024-06-17 16:11 UTC (permalink / raw)
  To: Kunal Joshi, igt-dev@lists.freedesktop.org

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

[AMD Official Use Only - AMD Internal Distribution Only]

Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>

--

Regards,
Aurabindo
________________________________
From: Kunal Joshi <kunal1.joshi@intel.com>
Sent: Monday, June 17, 2024 12:10 PM
To: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Cc: Kunal Joshi <kunal1.joshi@intel.com>; Pillai, Aurabindo <Aurabindo.Pillai@amd.com>
Subject: [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs

forcing DP connector doesn't work well and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.

v2: added debug print for better clarity of skips on unsupported mode

Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
---
 tests/kms_bw.c | 43 +++++++++++++++++++++++++++++++++++++------
 1 file changed, 37 insertions(+), 6 deletions(-)

diff --git a/tests/kms_bw.c b/tests/kms_bw.c
index 05f7e79ad..9f376bfe3 100644
--- a/tests/kms_bw.c
+++ b/tests/kms_bw.c
@@ -48,6 +48,19 @@
  * @2560x1440p:       2560x1440 resolution
  * @3840x2160p:       3840x2160 resolution
  * @2160x1440p:       2160x1440 resolution
+ *
+ * SUBTEST: connected-linear-tiling-%d-displays-%s
+ * Description: bw test with %arg[2]
+ *
+ * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
+ *
+ * arg[2]:
+ *
+ * @1920x1080p:       1920x1080 resolution
+ * @2560x1440p:       2560x1440 resolution
+ * @3840x2160p:       3840x2160 resolution
+ * @2160x1440p:       2160x1440 resolution
+ *
  */

 /* Common test data. */
@@ -55,6 +68,7 @@ typedef struct data {
         igt_display_t display;
         igt_plane_t *primary[IGT_MAX_PIPES];
         igt_output_t *output[IGT_MAX_PIPES];
+       igt_output_t *connected_output[IGT_MAX_PIPES];
         igt_pipe_t *pipe[IGT_MAX_PIPES];
         igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES];
         drmModeModeInfo mode[IGT_MAX_PIPES];
@@ -62,6 +76,7 @@ typedef struct data {
         int w[IGT_MAX_PIPES];
         int h[IGT_MAX_PIPES];
         int fd;
+       int connected_outputs;
 } data_t;

 static drmModeModeInfo test_mode[] = {
@@ -108,6 +123,7 @@ static void test_init(data_t *data)
         igt_display_t *display = &data->display;
         int i, max_pipes = display->n_pipes;
         igt_output_t *output;
+       data->connected_outputs = 0;

         for_each_pipe(display, i) {
                 data->pipe_id[i] = i;
@@ -124,12 +140,12 @@ static void test_init(data_t *data)
                         continue;

                 output = &display->outputs[i];
-
                 data->output[i] = output;

                 /* Only allow physically connected displays for the tests. */
                 if (!igt_output_is_connected(output))
                         continue;
+               data->connected_output[data->connected_outputs++] = output;

                 igt_assert(kmstest_get_connector_default_mode(
                         data->fd, output->config.connector, &data->mode[i]));
@@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output,
         igt_output_override_mode(output, mode);
 }

-static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) {
+static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) {
         igt_display_t *display = &data->display;
         igt_output_t *output;
         struct igt_fb buffer[IGT_MAX_PIPES];
@@ -189,11 +205,15 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
         igt_skip_on_f(pipe >= num_pipes,
                       "ASIC does not have %d pipes\n", pipe);

+        igt_skip_on_f(physical && pipe > data->connected_outputs ,
+                      "Only %d connected need %d pipes\n",data->connected_outputs, pipe);
+
+
         test_init(data);

         /* create buffers */
         for (i = 0; i <= pipe; i++) {
-               output = data->output[i];
+               output = physical ? data->connected_output[i] : data->output[i];
                 if (!output) {
                         continue;
                 }
@@ -208,6 +228,8 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
                 igt_output_set_pipe(output, i);

                 igt_plane_set_fb(data->primary[i], &buffer[i]);
+               igt_info("Assigning pipe %s to output %s with mode %s",
+                                kmstest_pipe_name(i), igt_output_name(output), mode->name);
         }

         ret = igt_display_try_commit_atomic(display,
@@ -219,7 +241,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
         igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);

         for (i = 0; i <= pipe; i++) {
-               output = data->output[i];
+               output = physical ? data->connected_output[i] : data->output[i];
                 if (!output) {
                         continue;
                 }
@@ -230,7 +252,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
         }

         for (i = pipe; i >= 0; i--) {
-               output = data->output[i];
+               output = physical ? data->connected_output[i] : data->output[i];
                 if (!output)
                         continue;

@@ -265,10 +287,19 @@ igt_main
                 for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
                         igt_subtest_f("linear-tiling-%d-displays-%s", i+1,
                               test_mode[j].name)
-                       run_test_linear_tiling(&data, i, &test_mode[j]);
+                       run_test_linear_tiling(&data, i, &test_mode[j], false);
                 }
         }

+        for (i = 0; i < IGT_MAX_PIPES; i++) {
+                for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
+                        igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1,
+                              test_mode[j].name)
+                        run_test_linear_tiling(&data, i, &test_mode[j], true);
+                }
+        }
+
+
         igt_fixture
         {
                 igt_display_fini(&data.display);
--
2.25.1


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

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

* [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only
@ 2024-06-19  8:04 Kunal Joshi
  2024-06-19  8:04 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Kunal Joshi @ 2024-06-19  8:04 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi

forcing DP connector doesn't work well on intel HW and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.

Kunal Joshi (2):
  tests/kms_bw: add subtest for only connected outputs
  HAX patch do not merge

 tests/intel-ci/fast-feedback.testlist    | 64 +++++++++++++++++++++++
 tests/intel-ci/xe-fast-feedback.testlist | 66 ++++++++++++++++++++++++
 tests/kms_bw.c                           | 48 +++++++++++++----
 3 files changed, 169 insertions(+), 9 deletions(-)

-- 
2.25.1


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

* [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs
  2024-06-19  8:04 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
@ 2024-06-19  8:04 ` Kunal Joshi
  2024-06-23 16:26   ` [i-g-t,1/2] " Joshi, Kunal1
  2024-06-26  5:01   ` Joshi, Kunal1
  2024-06-19  8:04 ` [PATCH i-g-t 2/2] HAX patch do not merge Kunal Joshi
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 13+ messages in thread
From: Kunal Joshi @ 2024-06-19  8:04 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi, Aurabindo Pillai

forcing DP connector doesn't work well and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.

v2: added debug print for better clarity of skips on unsupported mode

v3: added new line in info
    moved skip after test_init
    updated test_init logic based on physical flag

Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
---
 tests/kms_bw.c | 48 +++++++++++++++++++++++++++++++++++++++---------
 1 file changed, 39 insertions(+), 9 deletions(-)

diff --git a/tests/kms_bw.c b/tests/kms_bw.c
index 05f7e79ad..2c42acbdc 100644
--- a/tests/kms_bw.c
+++ b/tests/kms_bw.c
@@ -48,6 +48,19 @@
  * @2560x1440p:       2560x1440 resolution
  * @3840x2160p:       3840x2160 resolution
  * @2160x1440p:       2160x1440 resolution
+ *
+ * SUBTEST: connected-linear-tiling-%d-displays-%s
+ * Description: bw test with %arg[2]
+ *
+ * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
+ *
+ * arg[2]:
+ *
+ * @1920x1080p:       1920x1080 resolution
+ * @2560x1440p:       2560x1440 resolution
+ * @3840x2160p:       3840x2160 resolution
+ * @2160x1440p:       2160x1440 resolution
+ *
  */
 
 /* Common test data. */
@@ -55,6 +68,7 @@ typedef struct data {
         igt_display_t display;
         igt_plane_t *primary[IGT_MAX_PIPES];
         igt_output_t *output[IGT_MAX_PIPES];
+	igt_output_t *connected_output[IGT_MAX_PIPES];
         igt_pipe_t *pipe[IGT_MAX_PIPES];
         igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES];
         drmModeModeInfo mode[IGT_MAX_PIPES];
@@ -62,6 +76,7 @@ typedef struct data {
         int w[IGT_MAX_PIPES];
         int h[IGT_MAX_PIPES];
         int fd;
+	int connected_outputs;
 } data_t;
 
 static drmModeModeInfo test_mode[] = {
@@ -103,11 +118,12 @@ static drmModeModeInfo test_mode[] = {
 
 };
 
-static void test_init(data_t *data)
+static void test_init(data_t *data, bool physical)
 {
 	igt_display_t *display = &data->display;
 	int i, max_pipes = display->n_pipes;
 	igt_output_t *output;
+	data->connected_outputs = 0;
 
 	for_each_pipe(display, i) {
 		data->pipe_id[i] = i;
@@ -120,16 +136,16 @@ static void test_init(data_t *data)
 	}
 
 	for (i = 0; i < display->n_outputs && i < max_pipes; i++) {
-		if (!data->pipe[i])
+		if (!data->pipe[i] && !physical)
 			continue;
 
 		output = &display->outputs[i];
-
 		data->output[i] = output;
 
 		/* Only allow physically connected displays for the tests. */
 		if (!igt_output_is_connected(output))
 			continue;
+		data->connected_output[data->connected_outputs++] = output;
 
 		igt_assert(kmstest_get_connector_default_mode(
 			data->fd, output->config.connector, &data->mode[i]));
@@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output,
 	igt_output_override_mode(output, mode);
 }
 
-static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) {
+static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) {
 	igt_display_t *display = &data->display;
 	igt_output_t *output;
 	struct igt_fb buffer[IGT_MAX_PIPES];
@@ -189,11 +205,14 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 	igt_skip_on_f(pipe >= num_pipes,
                       "ASIC does not have %d pipes\n", pipe);
 
-	test_init(data);
+	test_init(data, physical);
+
+	igt_skip_on_f(physical && pipe >= data->connected_outputs,
+		      "Only %d connected need %d connected\n",data->connected_outputs, pipe+1);
 
 	/* create buffers */
 	for (i = 0; i <= pipe; i++) {
-		output = data->output[i];
+		output = physical ? data->connected_output[i] : data->output[i];
 		if (!output) {
 			continue;
 		}
@@ -208,6 +227,8 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 		igt_output_set_pipe(output, i);
 
 		igt_plane_set_fb(data->primary[i], &buffer[i]);
+		igt_info("Assigning pipe %s to output %s with mode %s\n",
+			 kmstest_pipe_name(i), igt_output_name(output), mode->name);
 	}
 
 	ret = igt_display_try_commit_atomic(display,
@@ -219,7 +240,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 	igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
 
 	for (i = 0; i <= pipe; i++) {
-		output = data->output[i];
+		output = physical ? data->connected_output[i] : data->output[i];
 		if (!output) {
 			continue;
 		}
@@ -230,7 +251,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
 	}
 
 	for (i = pipe; i >= 0; i--) {
-		output = data->output[i];
+		output = physical ? data->connected_output[i] : data->output[i];
 		if (!output)
 			continue;
 
@@ -265,10 +286,19 @@ igt_main
 		for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
 			igt_subtest_f("linear-tiling-%d-displays-%s", i+1,
 			      test_mode[j].name)
-			run_test_linear_tiling(&data, i, &test_mode[j]);
+			run_test_linear_tiling(&data, i, &test_mode[j], false);
 		}
 	}
 
+        for (i = 0; i < IGT_MAX_PIPES; i++) {
+                for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
+                        igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1,
+                              test_mode[j].name)
+                        run_test_linear_tiling(&data, i, &test_mode[j], true);
+                }
+        }
+
+
 	igt_fixture
 	{
 		igt_display_fini(&data.display);
-- 
2.25.1


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

* [PATCH i-g-t 2/2] HAX patch do not merge
  2024-06-19  8:04 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
  2024-06-19  8:04 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
@ 2024-06-19  8:04 ` Kunal Joshi
  2024-06-19 19:30 ` ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 13+ messages in thread
From: Kunal Joshi @ 2024-06-19  8:04 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi

---
 tests/intel-ci/fast-feedback.testlist    | 64 +++++++++++++++++++++++
 tests/intel-ci/xe-fast-feedback.testlist | 66 ++++++++++++++++++++++++
 2 files changed, 130 insertions(+)

diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..65a7fe663 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -1,6 +1,70 @@
 # Try to load the driver if it's not available yet.
 igt@i915_module_load@load
 
+igt@kms_bw@linear-tiling-1-displays-1920x1080p
+igt@kms_bw@linear-tiling-1-displays-2560x1440p
+igt@kms_bw@linear-tiling-1-displays-3840x2160p
+igt@kms_bw@linear-tiling-1-displays-2160x1440p
+igt@kms_bw@linear-tiling-2-displays-1920x1080p
+igt@kms_bw@linear-tiling-2-displays-2560x1440p
+igt@kms_bw@linear-tiling-2-displays-3840x2160p
+igt@kms_bw@linear-tiling-2-displays-2160x1440p
+igt@kms_bw@linear-tiling-3-displays-1920x1080p
+igt@kms_bw@linear-tiling-3-displays-2560x1440p
+igt@kms_bw@linear-tiling-3-displays-3840x2160p
+igt@kms_bw@linear-tiling-3-displays-2160x1440p
+igt@kms_bw@linear-tiling-4-displays-1920x1080p
+igt@kms_bw@linear-tiling-4-displays-2560x1440p
+igt@kms_bw@linear-tiling-4-displays-3840x2160p
+igt@kms_bw@linear-tiling-4-displays-2160x1440p
+igt@kms_bw@linear-tiling-5-displays-1920x1080p
+igt@kms_bw@linear-tiling-5-displays-2560x1440p
+igt@kms_bw@linear-tiling-5-displays-3840x2160p
+igt@kms_bw@linear-tiling-5-displays-2160x1440p
+igt@kms_bw@linear-tiling-6-displays-1920x1080p
+igt@kms_bw@linear-tiling-6-displays-2560x1440p
+igt@kms_bw@linear-tiling-6-displays-3840x2160p
+igt@kms_bw@linear-tiling-6-displays-2160x1440p
+igt@kms_bw@linear-tiling-7-displays-1920x1080p
+igt@kms_bw@linear-tiling-7-displays-2560x1440p
+igt@kms_bw@linear-tiling-7-displays-3840x2160p
+igt@kms_bw@linear-tiling-7-displays-2160x1440p
+igt@kms_bw@linear-tiling-8-displays-1920x1080p
+igt@kms_bw@linear-tiling-8-displays-2560x1440p
+igt@kms_bw@linear-tiling-8-displays-3840x2160p
+igt@kms_bw@linear-tiling-8-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-5-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-5-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-6-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-6-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-6-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-7-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-7-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-7-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-8-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-8-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p
 # Keep alphabetically sorted by default
 igt@core_auth@basic-auth
 igt@debugfs_test@read_all_entries
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index aa98b37e6..207edcab8 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -1,6 +1,72 @@
 # Should be the first test
 igt@xe_module_load@load
 
+igt@kms_bw@linear-tiling-1-displays-1920x1080p
+igt@kms_bw@linear-tiling-1-displays-2560x1440p
+igt@kms_bw@linear-tiling-1-displays-3840x2160p
+igt@kms_bw@linear-tiling-1-displays-2160x1440p
+igt@kms_bw@linear-tiling-2-displays-1920x1080p
+igt@kms_bw@linear-tiling-2-displays-2560x1440p
+igt@kms_bw@linear-tiling-2-displays-3840x2160p
+igt@kms_bw@linear-tiling-2-displays-2160x1440p
+igt@kms_bw@linear-tiling-3-displays-1920x1080p
+igt@kms_bw@linear-tiling-3-displays-2560x1440p
+igt@kms_bw@linear-tiling-3-displays-3840x2160p
+igt@kms_bw@linear-tiling-3-displays-2160x1440p
+igt@kms_bw@linear-tiling-4-displays-1920x1080p
+igt@kms_bw@linear-tiling-4-displays-2560x1440p
+igt@kms_bw@linear-tiling-4-displays-3840x2160p
+igt@kms_bw@linear-tiling-4-displays-2160x1440p
+igt@kms_bw@linear-tiling-5-displays-1920x1080p
+igt@kms_bw@linear-tiling-5-displays-2560x1440p
+igt@kms_bw@linear-tiling-5-displays-3840x2160p
+igt@kms_bw@linear-tiling-5-displays-2160x1440p
+igt@kms_bw@linear-tiling-6-displays-1920x1080p
+igt@kms_bw@linear-tiling-6-displays-2560x1440p
+igt@kms_bw@linear-tiling-6-displays-3840x2160p
+igt@kms_bw@linear-tiling-6-displays-2160x1440p
+igt@kms_bw@linear-tiling-7-displays-1920x1080p
+igt@kms_bw@linear-tiling-7-displays-2560x1440p
+igt@kms_bw@linear-tiling-7-displays-3840x2160p
+igt@kms_bw@linear-tiling-7-displays-2160x1440p
+igt@kms_bw@linear-tiling-8-displays-1920x1080p
+igt@kms_bw@linear-tiling-8-displays-2560x1440p
+igt@kms_bw@linear-tiling-8-displays-3840x2160p
+igt@kms_bw@linear-tiling-8-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-5-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-5-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-6-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-6-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-6-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-7-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-7-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-7-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-8-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-8-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p
+
+
 igt@fbdev@eof
 igt@fbdev@info
 igt@fbdev@nullptr
-- 
2.25.1


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

* ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only
  2024-06-19  8:04 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
  2024-06-19  8:04 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
  2024-06-19  8:04 ` [PATCH i-g-t 2/2] HAX patch do not merge Kunal Joshi
@ 2024-06-19 19:30 ` Patchwork
  2024-06-19 19:30 ` ✗ Fi.CI.BAT: failure " Patchwork
  2024-06-20  2:51 ` ✓ CI.xeFULL: success " Patchwork
  4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-06-19 19:30 UTC (permalink / raw)
  To: Kunal Joshi; +Cc: igt-dev

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

== Series Details ==

Series: add subtest in kms_bw for connected outputs only
URL   : https://patchwork.freedesktop.org/series/135049/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_7893_BAT -> XEIGTPW_11280_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (5 -> 5)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p} (NEW):
    - bat-adlp-7:         NOTRUN -> [SKIP][1] +11 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/bat-adlp-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
    - bat-dg2-oem2:       NOTRUN -> [SKIP][2] +11 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/bat-dg2-oem2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * {igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p} (NEW):
    - {bat-lnl-1}:        NOTRUN -> [SKIP][3] +11 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/bat-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  
New tests
---------

  New tests have been introduced between XEIGT_7893_BAT and XEIGTPW_11280_BAT:

### New IGT tests (16) ###

  * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
    - Statuses : 3 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.48] s

  * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
    - Statuses : 3 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.49] s

  * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
    - Statuses : 3 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.49] s

  * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
    - Statuses : 3 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.55] s

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * {igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p} (NEW):
    - bat-atsm-2:         NOTRUN -> [SKIP][4] ([Intel XE#1024]) +31 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/bat-atsm-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - bat-adlp-7:         NOTRUN -> [SKIP][5] ([Intel XE#367]) +8 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/bat-adlp-7/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][6] ([Intel XE#367]) +15 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/bat-dg2-oem2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - bat-pvc-2:          NOTRUN -> [SKIP][7] ([Intel XE#1024]) +31 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/bat-pvc-2/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

  
#### Possible fixes ####

  * igt@kms_frontbuffer_tracking@basic:
    - bat-adlp-7:         [DMESG-FAIL][8] ([Intel XE#324]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html

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

  [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367


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

  * IGT: IGT_7893 -> IGTPW_11280

  IGTPW_11280: 57f4b82dfe38488fca5b1c3f1fe173b46efb28d1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7893: a1840ca4270b765883d3b71a710b6af85ded8235 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1500-66d8ec4c6e7d124a021a3a8d038ed9e739cc9359: 66d8ec4c6e7d124a021a3a8d038ed9e739cc9359

== Logs ==

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

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

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

* ✗ Fi.CI.BAT: failure for add subtest in kms_bw for connected outputs only
  2024-06-19  8:04 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
                   ` (2 preceding siblings ...)
  2024-06-19 19:30 ` ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only Patchwork
@ 2024-06-19 19:30 ` Patchwork
  2024-06-20  2:51 ` ✓ CI.xeFULL: success " Patchwork
  4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-06-19 19:30 UTC (permalink / raw)
  To: Kunal Joshi; +Cc: igt-dev

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

== Series Details ==

Series: add subtest in kms_bw for connected outputs only
URL   : https://patchwork.freedesktop.org/series/135049/
State : failure

== Summary ==

CI Bug Log - changes from IGT_7893 -> IGTPW_11280
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_11280 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_11280, 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_11280/index.html

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

  Additional (3): fi-cfl-8109u bat-mtlp-8 fi-elk-e7500 
  Missing    (3): bat-mtlp-6 fi-snb-2520m bat-jsl-3 

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p} (NEW):
    - bat-dg2-14:         NOTRUN -> [SKIP][1] +63 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-dg2-14/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html

  * {igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p} (NEW):
    - bat-arls-5:         NOTRUN -> [SKIP][2] +59 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-arls-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * {igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p} (NEW):
    - bat-dg2-8:          NOTRUN -> [SKIP][3] +55 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-dg2-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
    - bat-adls-6:         NOTRUN -> [SKIP][4] +48 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-adls-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * {igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p} (NEW):
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][5] +57 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-tgl-1115g4/igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p.html

  * {igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p} (NEW):
    - bat-arlh-2:         NOTRUN -> [SKIP][6] +63 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-arlh-2/igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p.html

  * {igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p} (NEW):
    - bat-adln-1:         NOTRUN -> [SKIP][7] +52 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-adln-1/igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - bat-adlp-6:         NOTRUN -> [SKIP][8] +48 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-adlp-6/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-3840x2160p:
    - bat-arls-1:         NOTRUN -> [SKIP][9] +59 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-arls-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html

  * {igt@kms_bw@linear-tiling-5-displays-2160x1440p} (NEW):
    - bat-mtlp-8:         NOTRUN -> [SKIP][10] +63 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-mtlp-8/igt@kms_bw@linear-tiling-5-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-6-displays-1920x1080p (NEW):
    - fi-rkl-11600:       NOTRUN -> [SKIP][11] +57 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-rkl-11600/igt@kms_bw@linear-tiling-6-displays-1920x1080p.html

  * {igt@kms_bw@linear-tiling-6-displays-2160x1440p} (NEW):
    - {bat-rpls-4}:       NOTRUN -> [SKIP][12] +44 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-rpls-4/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html
    - {bat-twl-1}:        NOTRUN -> [SKIP][13] +43 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-twl-1/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html
    - bat-rplp-1:         NOTRUN -> [SKIP][14] +55 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-rplp-1/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html

  * {igt@kms_bw@linear-tiling-7-displays-1920x1080p} (NEW):
    - bat-arls-2:         NOTRUN -> [SKIP][15] +55 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-arls-2/igt@kms_bw@linear-tiling-7-displays-1920x1080p.html

  * {igt@kms_bw@linear-tiling-7-displays-2560x1440p} (NEW):
    - bat-dg1-7:          NOTRUN -> [SKIP][16] +60 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-dg1-7/igt@kms_bw@linear-tiling-7-displays-2560x1440p.html
    - bat-adlp-9:         NOTRUN -> [SKIP][17] +55 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-adlp-9/igt@kms_bw@linear-tiling-7-displays-2560x1440p.html

  * {igt@kms_bw@linear-tiling-7-displays-3840x2160p} (NEW):
    - bat-arlh-1:         NOTRUN -> [SKIP][18] +55 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-arlh-1/igt@kms_bw@linear-tiling-7-displays-3840x2160p.html
    - {bat-mtlp-9}:       NOTRUN -> [SKIP][19] +39 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-mtlp-9/igt@kms_bw@linear-tiling-7-displays-3840x2160p.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - {bat-rpls-4}:       NOTRUN -> [SKIP][20] +15 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-rpls-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
    - {bat-twl-1}:        NOTRUN -> [SKIP][21] +8 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-twl-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-3840x2160p:
    - {bat-mtlp-9}:       NOTRUN -> [SKIP][22] +15 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-mtlp-9/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html

  
New tests
---------

  New tests have been introduced between IGT_7893 and IGTPW_11280:

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

  * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
    - Statuses : 24 pass(s) 14 skip(s)
    - Exec time: [0.0, 1.29] s

  * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
    - Statuses : 22 pass(s) 16 skip(s)
    - Exec time: [0.0, 1.59] s

  * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
    - Statuses : 21 pass(s) 17 skip(s)
    - Exec time: [0.0, 1.61] s

  * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
    - Statuses : 1 dmesg-warn(s) 13 pass(s) 24 skip(s)
    - Exec time: [0.0, 5.09] s

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - Statuses : 4 pass(s) 34 skip(s)
    - Exec time: [0.0, 2.19] s

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - Statuses : 4 pass(s) 34 skip(s)
    - Exec time: [0.0, 1.98] s

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - Statuses : 1 dmesg-warn(s) 3 pass(s) 34 skip(s)
    - Exec time: [0.0, 5.52] s

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - Statuses : 2 pass(s) 36 skip(s)
    - Exec time: [0.0, 0.81] s

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-5-displays-2560x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-5-displays-3840x2160p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-6-displays-1920x1080p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-6-displays-2560x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-6-displays-3840x2160p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-7-displays-1920x1080p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-7-displays-2160x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@connected-linear-tiling-7-displays-2560x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-8-displays-2560x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-8-displays-3840x2160p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-5-displays-1920x1080p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@linear-tiling-5-displays-2160x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-5-displays-2560x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_bw@linear-tiling-5-displays-3840x2160p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-6-displays-1920x1080p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-6-displays-2160x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-6-displays-2560x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-6-displays-3840x2160p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-7-displays-1920x1080p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-7-displays-2160x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-7-displays-2560x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-7-displays-3840x2160p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-8-displays-1920x1080p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-8-displays-2160x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-8-displays-2560x1440p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@linear-tiling-8-displays-3840x2160p:
    - Statuses : 38 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@gem_huc_copy@huc-copy:
    - fi-cfl-8109u:       NOTRUN -> [SKIP][24] ([i915#2190])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html

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

  * igt@gem_lmem_swapping@verify-random:
    - fi-cfl-8109u:       NOTRUN -> [SKIP][26] ([i915#4613]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html

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

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

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

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

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

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

  * {igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p} (NEW):
    - {bat-mtlp-9}:       NOTRUN -> [SKIP][33] ([i915#10580]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-mtlp-9/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html

  * {igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p} (NEW):
    - fi-elk-e7500:       NOTRUN -> [SKIP][34] +83 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-elk-e7500/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
    - bat-kbl-2:          NOTRUN -> [SKIP][35] +63 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-kbl-2/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
    - {bat-mtlp-9}:       NOTRUN -> [DMESG-WARN][36] ([i915#11009]) +1 other test dmesg-warn
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-mtlp-9/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html

  * {igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p} (NEW):
    - fi-kbl-guc:         NOTRUN -> [SKIP][37] +63 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-kbl-guc/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * {igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p} (NEW):
    - bat-dg2-9:          NOTRUN -> [SKIP][38] ([i915#9197]) +63 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-dg2-9/igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p.html
    - fi-kbl-x1275:       NOTRUN -> [SKIP][39] +63 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-kbl-x1275/igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p.html
    - bat-adlp-11:        NOTRUN -> [SKIP][40] ([i915#10470]) +63 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-adlp-11/igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p.html

  * {igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p} (NEW):
    - fi-cfl-8700k:       NOTRUN -> [SKIP][41] +57 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-cfl-8700k/igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-2160x1440p:
    - fi-blb-e6850:       NOTRUN -> [SKIP][42] +63 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-blb-e6850/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - bat-adlm-1:         NOTRUN -> [SKIP][43] ([i915#9900]) +63 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-adlm-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - fi-cfl-8109u:       NOTRUN -> [SKIP][44] +59 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-cfl-8109u/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - fi-pnv-d510:        NOTRUN -> [SKIP][45] +63 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-pnv-d510/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - fi-cfl-guc:         NOTRUN -> [SKIP][46] +57 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-cfl-guc/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-2560x1440p:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][47] +63 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-bsw-n3050/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-5-displays-3840x2160p (NEW):
    - fi-ivb-3770:        NOTRUN -> [SKIP][48] +55 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-ivb-3770/igt@kms_bw@linear-tiling-5-displays-3840x2160p.html

  * {igt@kms_bw@linear-tiling-6-displays-2160x1440p} (NEW):
    - fi-kbl-7567u:       NOTRUN -> [SKIP][49] +55 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-kbl-7567u/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html
    - {bat-apl-1}:        NOTRUN -> [SKIP][50] +47 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-apl-1/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-6-displays-2560x1440p (NEW):
    - fi-ilk-650:         NOTRUN -> [SKIP][51] +55 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-ilk-650/igt@kms_bw@linear-tiling-6-displays-2560x1440p.html

  * {igt@kms_bw@linear-tiling-7-displays-2560x1440p} (NEW):
    - fi-glk-j4005:       NOTRUN -> [SKIP][52] +47 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/fi-glk-j4005/igt@kms_bw@linear-tiling-7-displays-2560x1440p.html

  * {igt@kms_bw@linear-tiling-7-displays-3840x2160p} (NEW):
    - bat-atsm-1:         NOTRUN -> [SKIP][53] ([i915#6078]) +63 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-atsm-1/igt@kms_bw@linear-tiling-7-displays-3840x2160p.html

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

  * igt@kms_dsc@dsc-basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][55] ([i915#3555] / [i915#3840] / [i915#9159])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-mtlp-8/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-mtlp-8:         NOTRUN -> [SKIP][56]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html

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

  * igt@kms_frontbuffer_tracking@basic:
    - bat-arls-2:         [PASS][58] -> [DMESG-WARN][59] ([i915#7507])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7893/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html

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

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

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

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

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

  
#### Possible fixes ####

  * igt@i915_selftest@live@hangcheck:
    - {bat-mtlp-9}:       [DMESG-WARN][65] ([i915#11349]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7893/bat-mtlp-9/igt@i915_selftest@live@hangcheck.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-mtlp-9/igt@i915_selftest@live@hangcheck.html

  * igt@kms_busy@basic@flip:
    - {bat-apl-1}:        [DMESG-WARN][67] ([i915#180] / [i915#1982]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7893/bat-apl-1/igt@kms_busy@basic@flip.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-apl-1/igt@kms_busy@basic@flip.html

  * igt@kms_flip@basic-flip-vs-modeset@a-dp6:
    - {bat-mtlp-9}:       [DMESG-FAIL][69] ([i915#11009]) -> [PASS][70] +1 other test pass
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7893/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@a-dp6.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@a-dp6.html

  * igt@kms_hdmi_inject@inject-audio:
    - {bat-mtlp-9}:       [DMESG-WARN][71] ([i915#11009]) -> [PASS][72] +1 other test pass
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7893/bat-mtlp-9/igt@kms_hdmi_inject@inject-audio.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11280/bat-mtlp-9/igt@kms_hdmi_inject@inject-audio.html

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

  [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
  [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470
  [i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580
  [i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009
  [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
  [i915#11395]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11395
  [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
  [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
  [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
  [i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#7507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7507
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
  [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
  [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7893 -> IGTPW_11280

  CI-20190529: 20190529
  CI_DRM_14973: 66d8ec4c6e7d124a021a3a8d038ed9e739cc9359 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11280: 57f4b82dfe38488fca5b1c3f1fe173b46efb28d1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7893: a1840ca4270b765883d3b71a710b6af85ded8235 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ CI.xeFULL: success for add subtest in kms_bw for connected outputs only
  2024-06-19  8:04 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
                   ` (3 preceding siblings ...)
  2024-06-19 19:30 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-06-20  2:51 ` Patchwork
  4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-06-20  2:51 UTC (permalink / raw)
  To: Kunal Joshi; +Cc: igt-dev

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

== Series Details ==

Series: add subtest in kms_bw for connected outputs only
URL   : https://patchwork.freedesktop.org/series/135049/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_7893_full -> XEIGTPW_11280_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (3 -> 3)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p} (NEW):
    - shard-dg2-set2:     NOTRUN -> [SKIP][1] +1 other test skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html

  * {igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p} (NEW):
    - {shard-lnl}:        NOTRUN -> [SKIP][2] +9 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_psr@fbc-psr-suspend@edp-1:
    - {shard-lnl}:        [PASS][3] -> [DMESG-WARN][4] +2 other tests dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-lnl-3/igt@kms_psr@fbc-psr-suspend@edp-1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-3/igt@kms_psr@fbc-psr-suspend@edp-1.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - {shard-lnl}:        NOTRUN -> [DMESG-WARN][5] +4 other tests dmesg-warn
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@xe_query@query-topology:
    - {shard-lnl}:        [PASS][6] -> [INCOMPLETE][7]
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-lnl-4/igt@xe_query@query-topology.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-6/igt@xe_query@query-topology.html

  
New tests
---------

  New tests have been introduced between XEIGT_7893_full and XEIGTPW_11280_full:

### New IGT tests (28) ###

  * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.01, 0.48] s

  * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.02, 0.49] s

  * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.02, 0.51] s

  * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.03, 0.56] s

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - Statuses : 2 skip(s)
    - Exec time: [0.0, 0.02] s

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - Statuses : 2 skip(s)
    - Exec time: [0.0, 0.03] s

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - Statuses : 2 skip(s)
    - Exec time: [0.0, 0.03] s

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - Statuses : 2 skip(s)
    - Exec time: [0.0, 0.04] s

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cdclk@mode-transition-all-outputs:
    - Statuses : 2 skip(s)
    - Exec time: [0.13, 0.34] s

  * igt@kms_cdclk@mode-transition@pipe-a-edp-1:
    - Statuses : 1 skip(s)
    - Exec time: [0.34] s

  * igt@kms_cdclk@mode-transition@pipe-b-edp-1:
    - Statuses : 1 skip(s)
    - Exec time: [0.00] s

  * igt@kms_cdclk@mode-transition@pipe-c-edp-1:
    - Statuses : 1 skip(s)
    - Exec time: [0.00] s

  * igt@kms_cdclk@plane-scaling@pipe-a-edp-1:
    - Statuses : 1 skip(s)
    - Exec time: [0.35] s

  * igt@kms_cdclk@plane-scaling@pipe-b-edp-1:
    - Statuses : 1 skip(s)
    - Exec time: [0.00] s

  * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
    - Statuses : 1 skip(s)
    - Exec time: [0.00] s

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [1.53] s

  * igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [1.56] s

  * igt@kms_dsc@dsc-with-formats:
    - Statuses : 1 skip(s)
    - Exec time: [0.00] s

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [10.17] s

  * igt@xe_waitfence@abstime:
    - Statuses : 2 pass(s)
    - Exec time: [0.00, 0.01] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][9] ([Intel XE#1124] / [Intel XE#1201])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html

  * {igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p} (NEW):
    - shard-dg2-set2:     NOTRUN -> [SKIP][10] ([Intel XE#1201]) +13 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +5 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#787]) +20 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_cdclk@mode-transition-all-outputs (NEW):
    - {shard-lnl}:        NOTRUN -> [SKIP][13] ([Intel XE#314])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-3/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@plane-scaling@pipe-b-edp-1 (NEW):
    - {shard-lnl}:        NOTRUN -> [SKIP][14] ([Intel XE#1152]) +2 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-7/igt@kms_cdclk@plane-scaling@pipe-b-edp-1.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#373])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-433/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium_frames@hdmi-frame-dump:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#373])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_chamelium_frames@hdmi-frame-dump.html

  * igt@kms_content_protection@srm@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][17] ([Intel XE#1178]) +1 other test fail
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#323])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][19] ([Intel XE#1214] / [Intel XE#282]) +3 other tests dmesg-warn
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html

  * igt@kms_cursor_legacy@forked-move@pipe-b:
    - shard-dg2-set2:     [PASS][20] -> [DMESG-WARN][21] ([Intel XE#282]) +4 other tests dmesg-warn
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-436/igt@kms_cursor_legacy@forked-move@pipe-b.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_cursor_legacy@forked-move@pipe-b.html

  * igt@kms_cursor_legacy@single-bo@pipe-a:
    - shard-dg2-set2:     [PASS][22] -> [DMESG-WARN][23] ([Intel XE#1214] / [Intel XE#282]) +3 other tests dmesg-warn
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_cursor_legacy@single-bo@pipe-a.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-434/igt@kms_cursor_legacy@single-bo@pipe-a.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#776])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#651])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#651]) +8 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#653]) +4 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html

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

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

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [PASS][30] -> [SKIP][31] ([Intel XE#1201] / [Intel XE#455])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-435/igt@kms_hdr@invalid-hdr.html

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

  * igt@kms_psr@fbc-pr-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#929]) +5 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_psr@fbc-pr-dpms.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#327])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-dg2-set2:     [PASS][35] -> [DMESG-WARN][36] ([Intel XE#1214] / [Intel XE#1551]) +1 other test dmesg-warn
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-464/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#288])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm.html

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

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     NOTRUN -> [TIMEOUT][39] ([Intel XE#2105])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_live_ktest@xe_dma_buf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][40] ([Intel XE#1192] / [Intel XE#1201])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@xe_live_ktest@xe_dma_buf.html

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

  * igt@xe_pm@d3cold-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#366])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@s2idle-d3hot-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][43] ([Intel XE#1195] / [Intel XE#1358])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-464/igt@xe_pm@s2idle-d3hot-basic-exec.html

  
#### Possible fixes ####

  * igt@kms_addfb_basic@too-wide:
    - {shard-lnl}:        [INCOMPLETE][44] ([Intel XE#1573]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-lnl-1/igt@kms_addfb_basic@too-wide.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-1/igt@kms_addfb_basic@too-wide.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - {shard-lnl}:        [FAIL][46] ([Intel XE#1659]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
    - {shard-lnl}:        [DMESG-WARN][48] -> [PASS][49] +1 other test pass
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-lnl-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html

  * igt@kms_cursor_legacy@forked-bo@all-pipes:
    - shard-dg2-set2:     [DMESG-WARN][50] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][51] +2 other tests pass
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-463/igt@kms_cursor_legacy@forked-bo@all-pipes.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_cursor_legacy@forked-bo@all-pipes.html

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset:
    - shard-dg2-set2:     [INCOMPLETE][52] ([Intel XE#1195]) -> [PASS][53] +1 other test pass
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-464/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-435/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
    - shard-dg2-set2:     [INCOMPLETE][54] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [FAIL][56] ([Intel XE#361]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - {shard-lnl}:        [DMESG-FAIL][58] ([Intel XE#1620]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-lnl-3/igt@kms_pm_rpm@system-suspend-modeset.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-4/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_universal_plane@cursor-fb-leak:
    - shard-dg2-set2:     [FAIL][60] ([Intel XE#771] / [Intel XE#899]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_universal_plane@cursor-fb-leak.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - {shard-lnl}:        [FAIL][62] ([Intel XE#899]) -> [PASS][63] +1 other test pass
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [FAIL][64] ([Intel XE#899]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html

  * igt@xe_evict@evict-beng-large-multi-vm-cm:
    - shard-dg2-set2:     [FAIL][66] ([Intel XE#1600]) -> [PASS][67] +1 other test pass
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@xe_evict@evict-beng-large-multi-vm-cm.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html

  * igt@xe_evict@evict-beng-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][68] ([Intel XE#1195] / [Intel XE#1473]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-434/igt@xe_evict@evict-beng-threads-large.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-434/igt@xe_evict@evict-beng-threads-large.html

  * igt@xe_evict@evict-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][70] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][71] +1 other test pass
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-466/igt@xe_evict@evict-threads-large.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@xe_evict@evict-threads-large.html

  * igt@xe_exec_threads@threads-shared-vm-rebind:
    - {shard-lnl}:        [FAIL][72] -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-lnl-6/igt@xe_exec_threads@threads-shared-vm-rebind.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-5/igt@xe_exec_threads@threads-shared-vm-rebind.html

  * igt@xe_gt_freq@freq_fixed_exec:
    - shard-dg2-set2:     [FAIL][74] ([Intel XE#1414]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@xe_gt_freq@freq_fixed_exec.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-435/igt@xe_gt_freq@freq_fixed_exec.html

  * igt@xe_module_load@reload-no-display:
    - shard-dg2-set2:     [DMESG-WARN][76] -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@xe_module_load@reload-no-display.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-463/igt@xe_module_load@reload-no-display.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-dg2-set2:     [DMESG-WARN][78] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - {shard-lnl}:        [ABORT][80] ([Intel XE#1794]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-4/igt@xe_pm@s4-vm-bind-userptr.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - {shard-lnl}:        [FAIL][82] ([Intel XE#958]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][84] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][85] ([Intel XE#316]) +4 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][86] ([Intel XE#316]) -> [SKIP][87] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-464/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][88] ([Intel XE#1124]) -> [SKIP][89] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-464/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][90] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][91] ([Intel XE#1124]) +4 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][92] ([Intel XE#367]) -> [SKIP][93] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][94] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][95] ([Intel XE#787]) +69 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

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

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][98] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][99] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +15 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][100] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][101] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-464/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-dg2-set2:     [SKIP][102] ([Intel XE#306]) -> [SKIP][103] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-464/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-dg2-set2:     [SKIP][104] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][105] ([Intel XE#306]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-463/igt@kms_chamelium_color@ctm-negative.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-dg2-set2:     [SKIP][106] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][107] ([Intel XE#373]) +4 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium_hpd@vga-hpd-after-hibernate:
    - shard-dg2-set2:     [SKIP][108] ([Intel XE#373]) -> [SKIP][109] ([Intel XE#1201] / [Intel XE#373]) +5 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     [SKIP][110] ([Intel XE#307]) -> [SKIP][111] ([Intel XE#1201] / [Intel XE#307])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-dg2-set2:     [SKIP][112] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][113] ([Intel XE#308]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-dg2-set2:     [DMESG-WARN][114] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][115] ([Intel XE#1214] / [Intel XE#282]) +1 other test dmesg-warn
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-435/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-dg2-set2:     [SKIP][116] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][117] ([Intel XE#323])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-dg2-set2:     [DMESG-WARN][118] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][119] ([Intel XE#282]) +2 other tests dmesg-warn
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@single-bo@all-pipes:
    - shard-dg2-set2:     [DMESG-WARN][120] ([Intel XE#282]) -> [DMESG-WARN][121] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_cursor_legacy@single-bo@all-pipes.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-434/igt@kms_cursor_legacy@single-bo@all-pipes.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     [SKIP][122] ([Intel XE#1138]) -> [SKIP][123] ([Intel XE#1138] / [Intel XE#1201])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_feature_discovery@display-4x.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][124] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][125] ([Intel XE#1135])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-466/igt@kms_feature_discovery@psr1.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [DMESG-WARN][126] -> [DMESG-WARN][127] ([Intel XE#1214]) +1 other test dmesg-warn
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [INCOMPLETE][128] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#2049]) -> [DMESG-WARN][129] ([Intel XE#1214] / [Intel XE#1551])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][130] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][131] ([Intel XE#651]) +17 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][132] ([Intel XE#651]) -> [SKIP][133] ([Intel XE#1201] / [Intel XE#651]) +19 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     [SKIP][134] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][135] ([Intel XE#653]) +16 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

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

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     [SKIP][138] ([Intel XE#1158] / [Intel XE#1201]) -> [SKIP][139] ([Intel XE#1158])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][140] ([Intel XE#653]) -> [SKIP][141] ([Intel XE#1201] / [Intel XE#653]) +18 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
    - shard-dg2-set2:     [FAIL][142] ([Intel XE#616]) -> [DMESG-FAIL][143] ([Intel XE#1551]) +1 other test dmesg-fail
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-435/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-dg2-set2:     [SKIP][144] ([Intel XE#455]) -> [SKIP][145] ([Intel XE#1201] / [Intel XE#455]) +14 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_plane_multiple@tiling-y.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
    - shard-dg2-set2:     [SKIP][146] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][147] ([Intel XE#455] / [Intel XE#498]) +1 other test skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][148] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][149] ([Intel XE#498]) +2 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][150] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][151] ([Intel XE#305] / [Intel XE#455]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][152] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][153] ([Intel XE#305]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
    - shard-dg2-set2:     [SKIP][154] ([Intel XE#305] / [Intel XE#455]) -> [SKIP][155] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +3 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][156] ([Intel XE#305]) -> [SKIP][157] ([Intel XE#1201] / [Intel XE#305]) +8 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-dg2-set2:     [SKIP][158] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][159] ([Intel XE#929]) +12 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-blt.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     [SKIP][160] ([Intel XE#929]) -> [SKIP][161] ([Intel XE#1201] / [Intel XE#929]) +12 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html

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

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-dg2-set2:     [SKIP][164] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][165] ([Intel XE#327])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][166] ([Intel XE#1127]) -> [SKIP][167] ([Intel XE#1127] / [Intel XE#1201])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][168] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][169] ([Intel XE#1127])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][170] ([Intel XE#1729]) -> [SKIP][171] ([Intel XE#1201] / [Intel XE#362])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][172] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][173] ([Intel XE#455]) +10 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-433/igt@kms_vrr@flipline.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@kms_vrr@flipline.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#756]) -> [SKIP][175] ([Intel XE#1201] / [Intel XE#756]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-463/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-dg2-set2:     [SKIP][176] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][177] ([Intel XE#1091])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-464/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-on.html

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

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-dg2-set2:     [SKIP][180] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][181] ([Intel XE#1123])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][182] ([Intel XE#1123]) -> [SKIP][183] ([Intel XE#1123] / [Intel XE#1201]) +1 other test skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_evict@evict-beng-cm-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][184] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][185] ([Intel XE#1473] / [Intel XE#392])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-466/igt@xe_evict@evict-beng-cm-threads-large.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-463/igt@xe_evict@evict-beng-cm-threads-large.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][186] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [DMESG-FAIL][187] ([Intel XE#482])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
    - shard-dg2-set2:     [SKIP][188] ([Intel XE#288]) -> [SKIP][189] ([Intel XE#1201] / [Intel XE#288]) +16 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][190] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][191] ([Intel XE#288]) +15 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_media_fill@media-fill:
    - shard-dg2-set2:     [SKIP][192] ([Intel XE#1201] / [Intel XE#560]) -> [SKIP][193] ([Intel XE#560])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-435/igt@xe_media_fill@media-fill.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@xe_media_fill@media-fill.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][194] ([Intel XE#366]) -> [SKIP][195] ([Intel XE#1201] / [Intel XE#366])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     [SKIP][196] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][197] ([Intel XE#366])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-435/igt@xe_pm@d3cold-mmap-vram.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@s3-vm-bind-prefetch:
    - shard-dg2-set2:     [DMESG-WARN][198] ([Intel XE#1214] / [Intel XE#569]) -> [INCOMPLETE][199] ([Intel XE#1195] / [Intel XE#569])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-436/igt@xe_pm@s3-vm-bind-prefetch.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-dg2-set2:     [SKIP][200] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][201] ([Intel XE#944]) +1 other test skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-435/igt@xe_query@multigpu-query-cs-cycles.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-432/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-dg2-set2:     [SKIP][202] ([Intel XE#944]) -> [SKIP][203] ([Intel XE#1201] / [Intel XE#944])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-432/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-433/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  * igt@xe_wedged@basic-wedged:
    - shard-dg2-set2:     [SKIP][204] ([Intel XE#1130] / [Intel XE#1201]) -> [DMESG-WARN][205] ([Intel XE#1214] / [Intel XE#1760])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7893/shard-dg2-463/igt@xe_wedged@basic-wedged.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11280/shard-dg2-434/igt@xe_wedged@basic-wedged.html

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

  [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#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [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#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
  [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
  [Intel XE#1414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1414
  [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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
  [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
  [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
  [Intel XE#1573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1573
  [Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595
  [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
  [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
  [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1899
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2097
  [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
  [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
  [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482
  [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#660]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/660
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958


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

  * IGT: IGT_7893 -> IGTPW_11280

  IGTPW_11280: 57f4b82dfe38488fca5b1c3f1fe173b46efb28d1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7893: a1840ca4270b765883d3b71a710b6af85ded8235 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1500-66d8ec4c6e7d124a021a3a8d038ed9e739cc9359: 66d8ec4c6e7d124a021a3a8d038ed9e739cc9359

== Logs ==

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

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

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

* Re: [i-g-t,1/2] tests/kms_bw: add subtest for only connected outputs
  2024-06-19  8:04 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
@ 2024-06-23 16:26   ` Joshi, Kunal1
  2024-06-26  5:01   ` Joshi, Kunal1
  1 sibling, 0 replies; 13+ messages in thread
From: Joshi, Kunal1 @ 2024-06-23 16:26 UTC (permalink / raw)
  To: igt-dev; +Cc: Aurabindo Pillai

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

Hello Aurabindo, Thanks for reviewing, had done some minor changes after 
this was rb'ed, can you please ack those? Thanks and Regards Kunal Joshi

On 6/19/2024 1:34 PM, Kunal Joshi wrote:
> forcing DP connector doesn't work well and tests are skipping
> with unsupported mode, add new test which runs test on connected
> outputs only.
>
> v2: added debug print for better clarity of skips on unsupported mode
>
> v3: added new line in info
>      moved skip after test_init
>      updated test_init logic based on physical flag
>
> Cc: Aurabindo Pillai<aurabindo.pillai@amd.com>
> Signed-off-by: Kunal Joshi<kunal1.joshi@intel.com>
> Reviewed-by: Aurabindo Pillai<aurabindo.pillai@amd.com>
> ---
>   tests/kms_bw.c | 48 +++++++++++++++++++++++++++++++++++++++---------
>   1 file changed, 39 insertions(+), 9 deletions(-)
>
> diff --git a/tests/kms_bw.c b/tests/kms_bw.c
> index 05f7e79ad..2c42acbdc 100644
> --- a/tests/kms_bw.c
> +++ b/tests/kms_bw.c
> @@ -48,6 +48,19 @@
>    * @2560x1440p:       2560x1440 resolution
>    * @3840x2160p:       3840x2160 resolution
>    * @2160x1440p:       2160x1440 resolution
> + *
> + * SUBTEST: connected-linear-tiling-%d-displays-%s
> + * Description: bw test with %arg[2]
> + *
> + * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
> + *
> + * arg[2]:
> + *
> + * @1920x1080p:       1920x1080 resolution
> + * @2560x1440p:       2560x1440 resolution
> + * @3840x2160p:       3840x2160 resolution
> + * @2160x1440p:       2160x1440 resolution
> + *
>    */
>   
>   /* Common test data. */
> @@ -55,6 +68,7 @@ typedef struct data {
>           igt_display_t display;
>           igt_plane_t *primary[IGT_MAX_PIPES];
>           igt_output_t *output[IGT_MAX_PIPES];
> +	igt_output_t *connected_output[IGT_MAX_PIPES];
>           igt_pipe_t *pipe[IGT_MAX_PIPES];
>           igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES];
>           drmModeModeInfo mode[IGT_MAX_PIPES];
> @@ -62,6 +76,7 @@ typedef struct data {
>           int w[IGT_MAX_PIPES];
>           int h[IGT_MAX_PIPES];
>           int fd;
> +	int connected_outputs;
>   } data_t;
>   
>   static drmModeModeInfo test_mode[] = {
> @@ -103,11 +118,12 @@ static drmModeModeInfo test_mode[] = {
>   
>   };
>   
> -static void test_init(data_t *data)
> +static void test_init(data_t *data, bool physical)
>   {
>   	igt_display_t *display = &data->display;
>   	int i, max_pipes = display->n_pipes;
>   	igt_output_t *output;
> +	data->connected_outputs = 0;
>   
>   	for_each_pipe(display, i) {
>   		data->pipe_id[i] = i;
> @@ -120,16 +136,16 @@ static void test_init(data_t *data)
>   	}
>   
>   	for (i = 0; i < display->n_outputs && i < max_pipes; i++) {
> -		if (!data->pipe[i])
> +		if (!data->pipe[i] && !physical)
>   			continue;
>   
>   		output = &display->outputs[i];
> -
>   		data->output[i] = output;
>   
>   		/* Only allow physically connected displays for the tests. */
>   		if (!igt_output_is_connected(output))
>   			continue;
> +		data->connected_output[data->connected_outputs++] = output;
>   
>   		igt_assert(kmstest_get_connector_default_mode(
>   			data->fd, output->config.connector, &data->mode[i]));
> @@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output,
>   	igt_output_override_mode(output, mode);
>   }
>   
> -static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) {
> +static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) {
>   	igt_display_t *display = &data->display;
>   	igt_output_t *output;
>   	struct igt_fb buffer[IGT_MAX_PIPES];
> @@ -189,11 +205,14 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
>   	igt_skip_on_f(pipe >= num_pipes,
>                         "ASIC does not have %d pipes\n", pipe);
>   
> -	test_init(data);
> +	test_init(data, physical);
> +
> +	igt_skip_on_f(physical && pipe >= data->connected_outputs,
> +		      "Only %d connected need %d connected\n",data->connected_outputs, pipe+1);
>   
>   	/* create buffers */
>   	for (i = 0; i <= pipe; i++) {
> -		output = data->output[i];
> +		output = physical ? data->connected_output[i] : data->output[i];
>   		if (!output) {
>   			continue;
>   		}
> @@ -208,6 +227,8 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
>   		igt_output_set_pipe(output, i);
>   
>   		igt_plane_set_fb(data->primary[i], &buffer[i]);
> +		igt_info("Assigning pipe %s to output %s with mode %s\n",
> +			 kmstest_pipe_name(i), igt_output_name(output), mode->name);
>   	}
>   
>   	ret = igt_display_try_commit_atomic(display,
> @@ -219,7 +240,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
>   	igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
>   
>   	for (i = 0; i <= pipe; i++) {
> -		output = data->output[i];
> +		output = physical ? data->connected_output[i] : data->output[i];
>   		if (!output) {
>   			continue;
>   		}
> @@ -230,7 +251,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
>   	}
>   
>   	for (i = pipe; i >= 0; i--) {
> -		output = data->output[i];
> +		output = physical ? data->connected_output[i] : data->output[i];
>   		if (!output)
>   			continue;
>   
> @@ -265,10 +286,19 @@ igt_main
>   		for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
>   			igt_subtest_f("linear-tiling-%d-displays-%s", i+1,
>   			      test_mode[j].name)
> -			run_test_linear_tiling(&data, i, &test_mode[j]);
> +			run_test_linear_tiling(&data, i, &test_mode[j], false);
>   		}
>   	}
>   
> +        for (i = 0; i < IGT_MAX_PIPES; i++) {
> +                for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
> +                        igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1,
> +                              test_mode[j].name)
> +                        run_test_linear_tiling(&data, i, &test_mode[j], true);
> +                }
> +        }
> +
> +
>   	igt_fixture
>   	{
>   		igt_display_fini(&data.display);

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

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

* Re: [i-g-t,1/2] tests/kms_bw: add subtest for only connected outputs
  2024-06-19  8:04 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
  2024-06-23 16:26   ` [i-g-t,1/2] " Joshi, Kunal1
@ 2024-06-26  5:01   ` Joshi, Kunal1
  2024-06-26 13:21     ` Pillai, Aurabindo
  1 sibling, 1 reply; 13+ messages in thread
From: Joshi, Kunal1 @ 2024-06-26  5:01 UTC (permalink / raw)
  To: igt-dev; +Cc: Aurabindo Pillai

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


On 6/19/2024 1:34 PM, Kunal Joshi wrote:
> forcing DP connector doesn't work well and tests are skipping
> with unsupported mode, add new test which runs test on connected
> outputs only.
>
> v2: added debug print for better clarity of skips on unsupported mode
>
> v3: added new line in info
>      moved skip after test_init
>      updated test_init logic based on physical flag
>
> Cc: Aurabindo Pillai<aurabindo.pillai@amd.com>
> Signed-off-by: Kunal Joshi<kunal1.joshi@intel.com>
> Reviewed-by: Aurabindo Pillai<aurabindo.pillai@amd.com>

Hello Aurabindo,

Since the changes are minor i am keeping your rb, planning to merge this 
by EOD.
Please let me know if you see any concerns.


Thanks and Regards
Kunal Joshi

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

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

* Re: [i-g-t,1/2] tests/kms_bw: add subtest for only connected outputs
  2024-06-26  5:01   ` Joshi, Kunal1
@ 2024-06-26 13:21     ` Pillai, Aurabindo
  0 siblings, 0 replies; 13+ messages in thread
From: Pillai, Aurabindo @ 2024-06-26 13:21 UTC (permalink / raw)
  To: Joshi, Kunal1, igt-dev@lists.freedesktop.org

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

[AMD Official Use Only - AMD Internal Distribution Only]

Hi Kunal,

Feel free to keep by R-b and merge them. Sorry I missed your earlier email.

--

Regards,
Jay
________________________________
From: Joshi, Kunal1 <kunal1.joshi@intel.com>
Sent: Wednesday, June 26, 2024 1:01 AM
To: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Cc: Pillai, Aurabindo <Aurabindo.Pillai@amd.com>
Subject: Re: [i-g-t,1/2] tests/kms_bw: add subtest for only connected outputs



On 6/19/2024 1:34 PM, Kunal Joshi wrote:

forcing DP connector doesn't work well and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.

v2: added debug print for better clarity of skips on unsupported mode

v3: added new line in info
    moved skip after test_init
    updated test_init logic based on physical flag

Cc: Aurabindo Pillai <aurabindo.pillai@amd.com><mailto:aurabindo.pillai@amd.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com><mailto:kunal1.joshi@intel.com>
Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com><mailto:aurabindo.pillai@amd.com>


Hello Aurabindo,

Since the changes are minor i am keeping your rb, planning to merge this by EOD.
Please let me know if you see any concerns.


Thanks and Regards
Kunal Joshi

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

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

end of thread, other threads:[~2024-06-26 13:21 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-19  8:04 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
2024-06-19  8:04 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
2024-06-23 16:26   ` [i-g-t,1/2] " Joshi, Kunal1
2024-06-26  5:01   ` Joshi, Kunal1
2024-06-26 13:21     ` Pillai, Aurabindo
2024-06-19  8:04 ` [PATCH i-g-t 2/2] HAX patch do not merge Kunal Joshi
2024-06-19 19:30 ` ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only Patchwork
2024-06-19 19:30 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-06-20  2:51 ` ✓ CI.xeFULL: success " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2024-06-17 16:10 [PATCH i-g-t 0/2] " Kunal Joshi
2024-06-17 16:10 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
2024-06-17 16:11   ` Pillai, Aurabindo
2024-06-13 13:07 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
2024-06-13 13:07 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
2024-06-13 14:48   ` Aurabindo Pillai

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