Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t v4 0/6] GPGPU fill improvements
@ 2024-11-21 12:33 Zbigniew Kempczyński
  2024-11-21 12:33 ` [PATCH i-g-t v4 1/6] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
                   ` (11 more replies)
  0 siblings, 12 replies; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-21 12:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek

Series adds some improvements helpful for adding implementation for
new platforms.

v4 (v2-v3 were retests) - add gem_gpgpu_fill@offset-16x16 + some addons

Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>

Zbigniew Kempczyński (6):
  tests/xe_gpgpu_fill: Add command line switch to dump the surface
  tests/xe_gpgpu_fill: Add width/height/x/y command line args
  tests/xe_gpgpu_fill: Add offset-16x16 subtest
  tests/gem_gpgpu_fill: Add command line switch to dump the surface
  tests/gem_gpgpu_fill: Add width/height/x/y command line args
  tests/gem_gpgpu_fill: Add offset-16x16 subtest

 tests/intel/gem_gpgpu_fill.c | 108 +++++++++++++++++++++++++++++------
 tests/intel/xe_gpgpu_fill.c  | 107 ++++++++++++++++++++++++++++------
 2 files changed, 182 insertions(+), 33 deletions(-)

-- 
2.34.1


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

* [PATCH i-g-t v4 1/6] tests/xe_gpgpu_fill: Add command line switch to dump the surface
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
@ 2024-11-21 12:33 ` Zbigniew Kempczyński
  2024-11-21 12:33 ` [PATCH i-g-t v4 2/6] tests/xe_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-21 12:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek

When implementation for new platform is added and shader + pipeline
needs to be adopted there's useful to dump the surface data.

0xC4 pattern makes distinction from 0x4C written by the shader very
hard so change it to 0x88 makes dump more clear.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 tests/intel/xe_gpgpu_fill.c | 43 ++++++++++++++++++++++++++++++++-----
 1 file changed, 38 insertions(+), 5 deletions(-)

diff --git a/tests/intel/xe_gpgpu_fill.c b/tests/intel/xe_gpgpu_fill.c
index 24fab519cc..4e1785432b 100644
--- a/tests/intel/xe_gpgpu_fill.c
+++ b/tests/intel/xe_gpgpu_fill.c
@@ -36,9 +36,11 @@
 #define HEIGHT 64
 #define STRIDE (WIDTH)
 #define SIZE (HEIGHT*STRIDE)
-#define COLOR_C4	0xc4
+#define COLOR_88	0x88
 #define COLOR_4C	0x4c
 
+static bool dump_surface;
+
 typedef struct {
 	int drm_fd;
 	uint32_t devid;
@@ -89,26 +91,57 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
 	uint8_t *ptr;
 	int i, j;
 
-	buf = create_buf(data, WIDTH, HEIGHT, COLOR_C4, region);
+	buf = create_buf(data, WIDTH, HEIGHT, COLOR_88, region);
 	ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
 
 	for (i = 0; i < WIDTH; i++)
 		for (j = 0; j < HEIGHT; j++)
-			buf_check(ptr, i, j, COLOR_C4);
+			buf_check(ptr, i, j, COLOR_88);
 
 	fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
 
+	if (dump_surface) {
+		for (j = 0; j < HEIGHT; j++) {
+			igt_info("[%04x] ", j);
+			for (i = 0; i < WIDTH; i++) {
+				igt_info("%02x", ptr[j * HEIGHT + i]);
+				if (i % 4 == 3)
+					igt_info(" ");
+			}
+			igt_info("\n");
+		}
+	}
+
 	for (i = 0; i < WIDTH; i++)
 		for (j = 0; j < HEIGHT; j++)
 			if (i < WIDTH / 2 && j < HEIGHT / 2)
 				buf_check(ptr, i, j, COLOR_4C);
 			else
-				buf_check(ptr, i, j, COLOR_C4);
+				buf_check(ptr, i, j, COLOR_88);
 
 	munmap(ptr, buf->surface[0].size);
 }
 
-igt_main
+static int opt_handler(int opt, int opt_index, void *data)
+{
+	switch (opt) {
+	case 'd':
+		dump_surface = true;
+		break;
+	default:
+		return IGT_OPT_HANDLER_ERROR;
+	}
+
+	return IGT_OPT_HANDLER_SUCCESS;
+}
+
+
+const char *help_str =
+	"  -d\tDump surface\n"
+	;
+
+
+igt_main_args("d", NULL, help_str, opt_handler, NULL)
 {
 	data_t data = {0, };
 	igt_fillfunc_t fill_fn = NULL;
-- 
2.34.1


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

* [PATCH i-g-t v4 2/6] tests/xe_gpgpu_fill: Add width/height/x/y command line args
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
  2024-11-21 12:33 ` [PATCH i-g-t v4 1/6] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
@ 2024-11-21 12:33 ` Zbigniew Kempczyński
  2024-11-21 12:33 ` [PATCH i-g-t v4 3/6] tests/xe_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-21 12:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek

I've noticed shaders/pipelines have limitation to work on 16B
boundaries (due to SIMD16). So to play with different surface sizes
and offsets add W/H/X/Y switches.

There's no problem at all not all sizes/offsets are supported as we
would like to have, we use gpgpu fill to verify compute workload so
if we won't notice gpu hang that's fine.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 tests/intel/xe_gpgpu_fill.c | 66 +++++++++++++++++++++++++++----------
 1 file changed, 48 insertions(+), 18 deletions(-)

diff --git a/tests/intel/xe_gpgpu_fill.c b/tests/intel/xe_gpgpu_fill.c
index 4e1785432b..82625bb7c0 100644
--- a/tests/intel/xe_gpgpu_fill.c
+++ b/tests/intel/xe_gpgpu_fill.c
@@ -40,6 +40,10 @@
 #define COLOR_4C	0x4c
 
 static bool dump_surface;
+static uint32_t surfwidth = WIDTH;
+static uint32_t surfheight = HEIGHT;
+static uint32_t start_x;
+static uint32_t start_y;
 
 typedef struct {
 	int drm_fd;
@@ -70,11 +74,11 @@ create_buf(data_t *data, int width, int height, uint8_t color, uint64_t region)
 	return buf;
 }
 
-static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
+static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color)
 {
 	uint8_t val;
 
-	val = ptr[y * WIDTH + x];
+	val = ptr[y * width + x];
 	igt_assert_f(val == color,
 		     "Expected 0x%02x, found 0x%02x at (%d,%d)\n",
 		     color, val, x, y);
@@ -85,26 +89,29 @@ static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
  * Description: run gpgpu fill
  */
 
-static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
+static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region,
+		       uint32_t surf_width, uint32_t surf_height,
+		       uint32_t x, uint32_t y,
+		       uint32_t width, uint32_t height)
 {
 	struct intel_buf *buf;
 	uint8_t *ptr;
 	int i, j;
 
-	buf = create_buf(data, WIDTH, HEIGHT, COLOR_88, region);
+	buf = create_buf(data, surf_width, surf_height, COLOR_88, region);
 	ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
 
-	for (i = 0; i < WIDTH; i++)
-		for (j = 0; j < HEIGHT; j++)
-			buf_check(ptr, i, j, COLOR_88);
+	for (i = 0; i < surf_width; i++)
+		for (j = 0; j < surf_height; j++)
+			buf_check(ptr, surf_width, i, j, COLOR_88);
 
-	fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
+	fill(data->drm_fd, buf, x, y, width, height, COLOR_4C);
 
 	if (dump_surface) {
-		for (j = 0; j < HEIGHT; j++) {
+		for (j = 0; j < surf_height; j++) {
 			igt_info("[%04x] ", j);
-			for (i = 0; i < WIDTH; i++) {
-				igt_info("%02x", ptr[j * HEIGHT + i]);
+			for (i = 0; i < surf_width; i++) {
+				igt_info("%02x", ptr[j * surf_height + i]);
 				if (i % 4 == 3)
 					igt_info(" ");
 			}
@@ -112,12 +119,13 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
 		}
 	}
 
-	for (i = 0; i < WIDTH; i++)
-		for (j = 0; j < HEIGHT; j++)
-			if (i < WIDTH / 2 && j < HEIGHT / 2)
-				buf_check(ptr, i, j, COLOR_4C);
+	for (i = 0; i < surf_width; i++)
+		for (j = 0; j < surf_height; j++)
+			if (i >= x && i < width + x &&
+			    j >= y && j < height + y)
+				buf_check(ptr, surf_width, i, j, COLOR_4C);
 			else
-				buf_check(ptr, i, j, COLOR_88);
+				buf_check(ptr, surf_height, i, j, COLOR_88);
 
 	munmap(ptr, buf->surface[0].size);
 }
@@ -128,6 +136,18 @@ static int opt_handler(int opt, int opt_index, void *data)
 	case 'd':
 		dump_surface = true;
 		break;
+	case 'W':
+		surfwidth = atoi(optarg);
+		break;
+	case 'H':
+		surfheight = atoi(optarg);
+		break;
+	case 'X':
+		start_x = atoi(optarg);
+		break;
+	case 'Y':
+		start_y = atoi(optarg);
+		break;
 	default:
 		return IGT_OPT_HANDLER_ERROR;
 	}
@@ -138,10 +158,14 @@ static int opt_handler(int opt, int opt_index, void *data)
 
 const char *help_str =
 	"  -d\tDump surface\n"
+	"  -W\tWidth (default 64)\n"
+	"  -H\tHeight (default 64)\n"
+	"  -X\tX start (aligned to 4)\n"
+	"  -Y\tY start (aligned to 1)\n"
 	;
 
 
-igt_main_args("d", NULL, help_str, opt_handler, NULL)
+igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
 {
 	data_t data = {0, };
 	igt_fillfunc_t fill_fn = NULL;
@@ -153,10 +177,16 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
 
 		fill_fn = igt_get_gpgpu_fillfunc(data.devid);
 		igt_require_f(fill_fn, "no gpgpu-fill function\n");
+
+		start_x = ALIGN(start_x, 4);
 	}
 
 	igt_subtest("basic") {
-		gpgpu_fill(&data, fill_fn, 0);
+		gpgpu_fill(&data, fill_fn, 0,
+			   surfwidth, surfheight,
+			   start_x, start_y,
+			   surfwidth / 2,
+			   surfheight / 2);
 	}
 
 	igt_fixture {
-- 
2.34.1


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

* [PATCH i-g-t v4 3/6] tests/xe_gpgpu_fill: Add offset-16x16 subtest
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
  2024-11-21 12:33 ` [PATCH i-g-t v4 1/6] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
  2024-11-21 12:33 ` [PATCH i-g-t v4 2/6] tests/xe_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
@ 2024-11-21 12:33 ` Zbigniew Kempczyński
  2024-11-21 12:33 ` [PATCH i-g-t v4 4/6] tests/gem_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-21 12:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek

Add subtest which verifies rectangle filled by pattern starts at
offset <x,y> == <16,16>.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 tests/intel/xe_gpgpu_fill.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/tests/intel/xe_gpgpu_fill.c b/tests/intel/xe_gpgpu_fill.c
index 82625bb7c0..e1ecff8233 100644
--- a/tests/intel/xe_gpgpu_fill.c
+++ b/tests/intel/xe_gpgpu_fill.c
@@ -87,6 +87,10 @@ static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color)
 /**
  * SUBTEST: basic
  * Description: run gpgpu fill
+ *
+ * SUBTEST: offset-16x16
+ * Description: run gpgpu fill with <x,y> start position == <16,16>
+ *
  */
 
 static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region,
@@ -189,6 +193,14 @@ igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
 			   surfheight / 2);
 	}
 
+	igt_subtest("offset-16x16") {
+		gpgpu_fill(&data, fill_fn, 0,
+			   surfwidth, surfheight,
+			   16, 16,
+			   surfwidth / 2,
+			   surfheight / 2);
+	}
+
 	igt_fixture {
 		buf_ops_destroy(data.bops);
 		drm_close_driver(data.drm_fd);
-- 
2.34.1


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

* [PATCH i-g-t v4 4/6] tests/gem_gpgpu_fill: Add command line switch to dump the surface
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
                   ` (2 preceding siblings ...)
  2024-11-21 12:33 ` [PATCH i-g-t v4 3/6] tests/xe_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
@ 2024-11-21 12:33 ` Zbigniew Kempczyński
  2024-11-21 15:07   ` Grzegorzek, Dominik
  2024-11-21 12:33 ` [PATCH i-g-t v4 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
                   ` (7 subsequent siblings)
  11 siblings, 1 reply; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-21 12:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek

When implementation for new platform is added and shader + pipeline
needs to be adopted there's useful to dump the surface data.

0xC4 pattern makes distinction from 0x4C written by the shader very
hard so change it to 0x88 makes dump more clear.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 tests/intel/gem_gpgpu_fill.c | 43 +++++++++++++++++++++++++++++++-----
 1 file changed, 38 insertions(+), 5 deletions(-)

diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
index aa735e5395..36c60e75f0 100644
--- a/tests/intel/gem_gpgpu_fill.c
+++ b/tests/intel/gem_gpgpu_fill.c
@@ -64,9 +64,11 @@
 #define HEIGHT 64
 #define STRIDE (WIDTH)
 #define SIZE (HEIGHT*STRIDE)
-#define COLOR_C4	0xc4
+#define COLOR_88	0x88
 #define COLOR_4C	0x4c
 
+static bool dump_surface;
+
 typedef struct {
 	int drm_fd;
 	uint32_t devid;
@@ -117,27 +119,58 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
 	uint8_t *ptr;
 	int i, j;
 
-	buf = create_buf(data, WIDTH, HEIGHT, COLOR_C4, region);
+	buf = create_buf(data, WIDTH, HEIGHT, COLOR_88, region);
 	ptr = gem_mmap__device_coherent(data->drm_fd, buf->handle, 0,
 					buf->surface[0].size, PROT_READ);
 
 	for (i = 0; i < WIDTH; i++)
 		for (j = 0; j < HEIGHT; j++)
-			buf_check(ptr, i, j, COLOR_C4);
+			buf_check(ptr, i, j, COLOR_88);
 
 	fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
 
+	if (dump_surface) {
+		for (j = 0; j < HEIGHT; j++) {
+			igt_info("[%04x] ", j);
+			for (i = 0; i < WIDTH; i++) {
+				igt_info("%02x", ptr[j * HEIGHT + i]);
+				if (i % 4 == 3)
+					igt_info(" ");
+			}
+			igt_info("\n");
+		}
+	}
+
 	for (i = 0; i < WIDTH; i++)
 		for (j = 0; j < HEIGHT; j++)
 			if (i < WIDTH / 2 && j < HEIGHT / 2)
 				buf_check(ptr, i, j, COLOR_4C);
 			else
-				buf_check(ptr, i, j, COLOR_C4);
+				buf_check(ptr, i, j, COLOR_88);
 
 	munmap(ptr, buf->surface[0].size);
 }
 
-igt_main
+static int opt_handler(int opt, int opt_index, void *data)
+{
+	switch (opt) {
+	case 'd':
+		dump_surface = true;
+		break;
+	default:
+		return IGT_OPT_HANDLER_ERROR;
+	}
+
+	return IGT_OPT_HANDLER_SUCCESS;
+}
+
+
+const char *help_str =
+	"  -d\tDump surface\n"
+	;
+
+
+igt_main_args("d", NULL, help_str, opt_handler, NULL)
 {
 	data_t data = {0, };
 	igt_fillfunc_t fill_fn = NULL;
-- 
2.34.1


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

* [PATCH i-g-t v4 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
                   ` (3 preceding siblings ...)
  2024-11-21 12:33 ` [PATCH i-g-t v4 4/6] tests/gem_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
@ 2024-11-21 12:33 ` Zbigniew Kempczyński
  2024-11-21 15:15   ` Grzegorzek, Dominik
  2024-11-21 12:33 ` [PATCH i-g-t v4 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
                   ` (6 subsequent siblings)
  11 siblings, 1 reply; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-21 12:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek

I've noticed shaders/pipelines have limitation to work on 16B
boundaries (due to SIMD16). So to play with different surface sizes
and offsets add W/H/X/Y switches.

There's no problem at all not all sizes/offsets are supported as we
would like to have, we use gpgpu fill to verify compute workload so
if we won't notice gpu hang that's fine.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 tests/intel/gem_gpgpu_fill.c | 62 ++++++++++++++++++++++++++----------
 1 file changed, 46 insertions(+), 16 deletions(-)

diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
index 36c60e75f0..ec34e95844 100644
--- a/tests/intel/gem_gpgpu_fill.c
+++ b/tests/intel/gem_gpgpu_fill.c
@@ -68,6 +68,10 @@
 #define COLOR_4C	0x4c
 
 static bool dump_surface;
+static uint32_t surfwidth = WIDTH;
+static uint32_t surfheight = HEIGHT;
+static uint32_t start_x;
+static uint32_t start_y;
 
 typedef struct {
 	int drm_fd;
@@ -103,17 +107,20 @@ create_buf(data_t *data, int width, int height, uint8_t color, uint32_t region)
 	return buf;
 }
 
-static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
+static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color)
 {
 	uint8_t val;
 
-	val = ptr[y * WIDTH + x];
+	val = ptr[y * width + x];
 	igt_assert_f(val == color,
 		     "Expected 0x%02x, found 0x%02x at (%d,%d)\n",
 		     color, val, x, y);
 }
 
-static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
+static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region,
+		       uint32_t surf_width, uint32_t surf_height,
+		       uint32_t x, uint32_t y,
+		       uint32_t width, uint32_t height)
 {
 	struct intel_buf *buf;
 	uint8_t *ptr;
@@ -123,17 +130,17 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
 	ptr = gem_mmap__device_coherent(data->drm_fd, buf->handle, 0,
 					buf->surface[0].size, PROT_READ);
 
-	for (i = 0; i < WIDTH; i++)
-		for (j = 0; j < HEIGHT; j++)
-			buf_check(ptr, i, j, COLOR_88);
+	for (i = 0; i < surf_width; i++)
+		for (j = 0; j < surf_height; j++)
+			buf_check(ptr, surf_width, i, j, COLOR_88);
 
 	fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
 
 	if (dump_surface) {
-		for (j = 0; j < HEIGHT; j++) {
+		for (j = 0; j < surf_height; j++) {
 			igt_info("[%04x] ", j);
-			for (i = 0; i < WIDTH; i++) {
-				igt_info("%02x", ptr[j * HEIGHT + i]);
+			for (i = 0; i < surf_width; i++) {
+				igt_info("%02x", ptr[j * surf_height + i]);
 				if (i % 4 == 3)
 					igt_info(" ");
 			}
@@ -141,12 +148,13 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
 		}
 	}
 
-	for (i = 0; i < WIDTH; i++)
-		for (j = 0; j < HEIGHT; j++)
-			if (i < WIDTH / 2 && j < HEIGHT / 2)
-				buf_check(ptr, i, j, COLOR_4C);
+	for (i = 0; i < surf_width; i++)
+		for (j = 0; j < surf_height; j++)
+			if (i >= x && i < width + x &&
+			    j >= y && j < height + y)
+				buf_check(ptr, surf_width, i, j, COLOR_4C);
 			else
-				buf_check(ptr, i, j, COLOR_88);
+				buf_check(ptr, surf_height, i, j, COLOR_88);
 
 	munmap(ptr, buf->surface[0].size);
 }
@@ -157,6 +165,18 @@ static int opt_handler(int opt, int opt_index, void *data)
 	case 'd':
 		dump_surface = true;
 		break;
+	case 'W':
+		surfwidth = atoi(optarg);
+		break;
+	case 'H':
+		surfheight = atoi(optarg);
+		break;
+	case 'X':
+		start_x = atoi(optarg);
+		break;
+	case 'Y':
+		start_y = atoi(optarg);
+		break;
 	default:
 		return IGT_OPT_HANDLER_ERROR;
 	}
@@ -167,10 +187,14 @@ static int opt_handler(int opt, int opt_index, void *data)
 
 const char *help_str =
 	"  -d\tDump surface\n"
+	"  -W\tWidth (default 64)\n"
+	"  -H\tHeight (default 64)\n"
+	"  -X\tX start (aligned to 4)\n"
+	"  -Y\tY start (aligned to 1)\n"
 	;
 
 
-igt_main_args("d", NULL, help_str, opt_handler, NULL)
+igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
 {
 	data_t data = {0, };
 	igt_fillfunc_t fill_fn = NULL;
@@ -193,6 +217,8 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
 		region_set = get_memory_region_set(region_info,
 						   I915_SYSTEM_MEMORY,
 						   I915_DEVICE_MEMORY);
+
+		start_x = ALIGN(start_x, 16);
 	}
 
 	igt_subtest_with_dynamic("basic") {
@@ -203,7 +229,11 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
 			uint32_t id = igt_collection_get_value(region, 0);
 
 			igt_dynamic(name)
-				gpgpu_fill(&data, fill_fn, id);
+				gpgpu_fill(&data, fill_fn, id,
+					   surfwidth, surfheight,
+					   start_x, start_y,
+					   surfwidth / 2,
+					   surfheight / 2);
 
 			free(name);
 		}
-- 
2.34.1


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

* [PATCH i-g-t v4 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
                   ` (4 preceding siblings ...)
  2024-11-21 12:33 ` [PATCH i-g-t v4 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
@ 2024-11-21 12:33 ` Zbigniew Kempczyński
  2024-11-21 15:28   ` Grzegorzek, Dominik
  2024-11-21 15:49 ` ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev4) Patchwork
                   ` (5 subsequent siblings)
  11 siblings, 1 reply; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-21 12:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek

Add subtest which verifies rectangle filled by pattern starts at
offset <x,y> == <16,16>.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 tests/intel/gem_gpgpu_fill.c | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
index ec34e95844..cfebc8f665 100644
--- a/tests/intel/gem_gpgpu_fill.c
+++ b/tests/intel/gem_gpgpu_fill.c
@@ -58,6 +58,10 @@
  * Feature: compute
  *
  * SUBTEST: basic
+ * Description: run gpgpu fill
+ *
+ * SUBTEST: offset-16x16
+ * Description: run gpgpu fill with <x,y> start position == <16,16>
  */
 
 #define WIDTH 64
@@ -239,9 +243,16 @@ igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
 		}
 	}
 
+	igt_subtest("offset-16x16") {
+		gpgpu_fill(&data, fill_fn, 0,
+			   surfwidth, surfheight,
+			   16, 16,
+			   surfwidth / 2,
+			   surfheight / 2);
+	}
+
 	igt_fixture {
-		igt_collection_destroy(region_set);
-		free(region_info);
 		buf_ops_destroy(data.bops);
+		drm_close_driver(data.drm_fd);
 	}
 }
-- 
2.34.1


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

* Re: [PATCH i-g-t v4 4/6] tests/gem_gpgpu_fill: Add command line switch to dump the surface
  2024-11-21 12:33 ` [PATCH i-g-t v4 4/6] tests/gem_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
@ 2024-11-21 15:07   ` Grzegorzek, Dominik
  0 siblings, 0 replies; 19+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-21 15:07 UTC (permalink / raw)
  To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org

On Thu, 2024-11-21 at 13:33 +0100, Zbigniew Kempczyński wrote:
> When implementation for new platform is added and shader + pipeline
> needs to be adopted there's useful to dump the surface data.
> 
> 0xC4 pattern makes distinction from 0x4C written by the shader very
> hard so change it to 0x88 makes dump more clear.
> 
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>

Same as patch for xe_gpgpu_fill, it is:
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> ---
>  tests/intel/gem_gpgpu_fill.c | 43 +++++++++++++++++++++++++++++++-----
>  1 file changed, 38 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
> index aa735e5395..36c60e75f0 100644
> --- a/tests/intel/gem_gpgpu_fill.c
> +++ b/tests/intel/gem_gpgpu_fill.c
> @@ -64,9 +64,11 @@
>  #define HEIGHT 64
>  #define STRIDE (WIDTH)
>  #define SIZE (HEIGHT*STRIDE)
> -#define COLOR_C4	0xc4
> +#define COLOR_88	0x88
>  #define COLOR_4C	0x4c
>  
> +static bool dump_surface;
> +
>  typedef struct {
>  	int drm_fd;
>  	uint32_t devid;
> @@ -117,27 +119,58 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
>  	uint8_t *ptr;
>  	int i, j;
>  
> -	buf = create_buf(data, WIDTH, HEIGHT, COLOR_C4, region);
> +	buf = create_buf(data, WIDTH, HEIGHT, COLOR_88, region);
>  	ptr = gem_mmap__device_coherent(data->drm_fd, buf->handle, 0,
>  					buf->surface[0].size, PROT_READ);
>  
>  	for (i = 0; i < WIDTH; i++)
>  		for (j = 0; j < HEIGHT; j++)
> -			buf_check(ptr, i, j, COLOR_C4);
> +			buf_check(ptr, i, j, COLOR_88);
>  
>  	fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
>  
> +	if (dump_surface) {
> +		for (j = 0; j < HEIGHT; j++) {
> +			igt_info("[%04x] ", j);
> +			for (i = 0; i < WIDTH; i++) {
> +				igt_info("%02x", ptr[j * HEIGHT + i]);
> +				if (i % 4 == 3)
> +					igt_info(" ");
> +			}
> +			igt_info("\n");
> +		}
> +	}
> +
>  	for (i = 0; i < WIDTH; i++)
>  		for (j = 0; j < HEIGHT; j++)
>  			if (i < WIDTH / 2 && j < HEIGHT / 2)
>  				buf_check(ptr, i, j, COLOR_4C);
>  			else
> -				buf_check(ptr, i, j, COLOR_C4);
> +				buf_check(ptr, i, j, COLOR_88);
>  
>  	munmap(ptr, buf->surface[0].size);
>  }
>  
> -igt_main
> +static int opt_handler(int opt, int opt_index, void *data)
> +{
> +	switch (opt) {
> +	case 'd':
> +		dump_surface = true;
> +		break;
> +	default:
> +		return IGT_OPT_HANDLER_ERROR;
> +	}
> +
> +	return IGT_OPT_HANDLER_SUCCESS;
> +}
> +
> +
> +const char *help_str =
> +	"  -d\tDump surface\n"
> +	;
> +
> +
> +igt_main_args("d", NULL, help_str, opt_handler, NULL)
>  {
>  	data_t data = {0, };
>  	igt_fillfunc_t fill_fn = NULL;


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

* Re: [PATCH i-g-t v4 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args
  2024-11-21 12:33 ` [PATCH i-g-t v4 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
@ 2024-11-21 15:15   ` Grzegorzek, Dominik
  2024-11-22  7:09     ` Zbigniew Kempczyński
  0 siblings, 1 reply; 19+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-21 15:15 UTC (permalink / raw)
  To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org

On Thu, 2024-11-21 at 13:33 +0100, Zbigniew Kempczyński wrote:
> I've noticed shaders/pipelines have limitation to work on 16B
> boundaries (due to SIMD16). So to play with different surface sizes
> and offsets add W/H/X/Y switches.
> 
> There's no problem at all not all sizes/offsets are supported as we
> would like to have, we use gpgpu fill to verify compute workload so
> if we won't notice gpu hang that's fine.

This sentence sounds a bit unclear to me. May I ask you to rephrase that
that paragraph in both xe and gem patches.

Anyway it is:
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> 
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> ---
>  tests/intel/gem_gpgpu_fill.c | 62 ++++++++++++++++++++++++++----------
>  1 file changed, 46 insertions(+), 16 deletions(-)
> 
> diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
> index 36c60e75f0..ec34e95844 100644
> --- a/tests/intel/gem_gpgpu_fill.c
> +++ b/tests/intel/gem_gpgpu_fill.c
> @@ -68,6 +68,10 @@
>  #define COLOR_4C	0x4c
>  
>  static bool dump_surface;
> +static uint32_t surfwidth = WIDTH;
> +static uint32_t surfheight = HEIGHT;
> +static uint32_t start_x;
> +static uint32_t start_y;
>  
>  typedef struct {
>  	int drm_fd;
> @@ -103,17 +107,20 @@ create_buf(data_t *data, int width, int height, uint8_t color, uint32_t region)
>  	return buf;
>  }
>  
> -static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
> +static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color)
>  {
>  	uint8_t val;
>  
> -	val = ptr[y * WIDTH + x];
> +	val = ptr[y * width + x];
>  	igt_assert_f(val == color,
>  		     "Expected 0x%02x, found 0x%02x at (%d,%d)\n",
>  		     color, val, x, y);
>  }
>  
> -static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
> +static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region,
> +		       uint32_t surf_width, uint32_t surf_height,
> +		       uint32_t x, uint32_t y,
> +		       uint32_t width, uint32_t height)
>  {
>  	struct intel_buf *buf;
>  	uint8_t *ptr;
> @@ -123,17 +130,17 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
>  	ptr = gem_mmap__device_coherent(data->drm_fd, buf->handle, 0,
>  					buf->surface[0].size, PROT_READ);
>  
> -	for (i = 0; i < WIDTH; i++)
> -		for (j = 0; j < HEIGHT; j++)
> -			buf_check(ptr, i, j, COLOR_88);
> +	for (i = 0; i < surf_width; i++)
> +		for (j = 0; j < surf_height; j++)
> +			buf_check(ptr, surf_width, i, j, COLOR_88);
>  
>  	fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
>  
>  	if (dump_surface) {
> -		for (j = 0; j < HEIGHT; j++) {
> +		for (j = 0; j < surf_height; j++) {
>  			igt_info("[%04x] ", j);
> -			for (i = 0; i < WIDTH; i++) {
> -				igt_info("%02x", ptr[j * HEIGHT + i]);
> +			for (i = 0; i < surf_width; i++) {
> +				igt_info("%02x", ptr[j * surf_height + i]);
>  				if (i % 4 == 3)
>  					igt_info(" ");
>  			}
> @@ -141,12 +148,13 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
>  		}
>  	}
>  
> -	for (i = 0; i < WIDTH; i++)
> -		for (j = 0; j < HEIGHT; j++)
> -			if (i < WIDTH / 2 && j < HEIGHT / 2)
> -				buf_check(ptr, i, j, COLOR_4C);
> +	for (i = 0; i < surf_width; i++)
> +		for (j = 0; j < surf_height; j++)
> +			if (i >= x && i < width + x &&
> +			    j >= y && j < height + y)
> +				buf_check(ptr, surf_width, i, j, COLOR_4C);
>  			else
> -				buf_check(ptr, i, j, COLOR_88);
> +				buf_check(ptr, surf_height, i, j, COLOR_88);
>  
>  	munmap(ptr, buf->surface[0].size);
>  }
> @@ -157,6 +165,18 @@ static int opt_handler(int opt, int opt_index, void *data)
>  	case 'd':
>  		dump_surface = true;
>  		break;
> +	case 'W':
> +		surfwidth = atoi(optarg);
> +		break;
> +	case 'H':
> +		surfheight = atoi(optarg);
> +		break;
> +	case 'X':
> +		start_x = atoi(optarg);
> +		break;
> +	case 'Y':
> +		start_y = atoi(optarg);
> +		break;
>  	default:
>  		return IGT_OPT_HANDLER_ERROR;
>  	}
> @@ -167,10 +187,14 @@ static int opt_handler(int opt, int opt_index, void *data)
>  
>  const char *help_str =
>  	"  -d\tDump surface\n"
> +	"  -W\tWidth (default 64)\n"
> +	"  -H\tHeight (default 64)\n"
> +	"  -X\tX start (aligned to 4)\n"
> +	"  -Y\tY start (aligned to 1)\n"
>  	;
>  
>  
> -igt_main_args("d", NULL, help_str, opt_handler, NULL)
> +igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
>  {
>  	data_t data = {0, };
>  	igt_fillfunc_t fill_fn = NULL;
> @@ -193,6 +217,8 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
>  		region_set = get_memory_region_set(region_info,
>  						   I915_SYSTEM_MEMORY,
>  						   I915_DEVICE_MEMORY);
> +
> +		start_x = ALIGN(start_x, 16);
>  	}
>  
>  	igt_subtest_with_dynamic("basic") {
> @@ -203,7 +229,11 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
>  			uint32_t id = igt_collection_get_value(region, 0);
>  
>  			igt_dynamic(name)
> -				gpgpu_fill(&data, fill_fn, id);
> +				gpgpu_fill(&data, fill_fn, id,
> +					   surfwidth, surfheight,
> +					   start_x, start_y,
> +					   surfwidth / 2,
> +					   surfheight / 2);
>  
>  			free(name);
>  		}


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

* Re: [PATCH i-g-t v4 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest
  2024-11-21 12:33 ` [PATCH i-g-t v4 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
@ 2024-11-21 15:28   ` Grzegorzek, Dominik
  2024-11-22  7:12     ` Zbigniew Kempczyński
  0 siblings, 1 reply; 19+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-21 15:28 UTC (permalink / raw)
  To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org

On Thu, 2024-11-21 at 13:33 +0100, Zbigniew Kempczyński wrote:
> Add subtest which verifies rectangle filled by pattern starts at
> offset <x,y> == <16,16>.
> 
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> ---
>  tests/intel/gem_gpgpu_fill.c | 15 +++++++++++++--
>  1 file changed, 13 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
> index ec34e95844..cfebc8f665 100644
> --- a/tests/intel/gem_gpgpu_fill.c
> +++ b/tests/intel/gem_gpgpu_fill.c
> @@ -58,6 +58,10 @@
>   * Feature: compute
>   *
>   * SUBTEST: basic
> + * Description: run gpgpu fill
> + *
> + * SUBTEST: offset-16x16
> + * Description: run gpgpu fill with <x,y> start position == <16,16>
>   */
>  
>  #define WIDTH 64
> @@ -239,9 +243,16 @@ igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
>  		}
>  	}
>  
> +	igt_subtest("offset-16x16") {
> +		gpgpu_fill(&data, fill_fn, 0,
> +			   surfwidth, surfheight,
> +			   16, 16,
> +			   surfwidth / 2,
> +			   surfheight / 2);
> +	}
> +
>  	igt_fixture {
> -		igt_collection_destroy(region_set);
> -		free(region_info);
Why removing this? 

Regards, 
Dominik
>  		buf_ops_destroy(data.bops);
> +		drm_close_driver(data.drm_fd);
>  	}
>  }


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

* ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev4)
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
                   ` (5 preceding siblings ...)
  2024-11-21 12:33 ` [PATCH i-g-t v4 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
@ 2024-11-21 15:49 ` Patchwork
  2024-11-21 16:05 ` ✗ i915.CI.BAT: failure " Patchwork
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-11-21 15:49 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: GPGPU fill improvements (rev4)
URL   : https://patchwork.freedesktop.org/series/141352/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8119_BAT -> XEIGTPW_12159_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (9 -> 9)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-adlp-7:         [DMESG-WARN][1] ([Intel XE#3517]) -> [PASS][2] +2 other tests pass
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-adlp-7:         [FAIL][3] ([Intel XE#1861]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_psr@psr-cursor-plane-move:
    - bat-adlp-7:         [SKIP][5] ([Intel XE#455]) -> [PASS][6] +3 other tests pass
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html

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


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

  * IGT: IGT_8119 -> IGTPW_12159

  IGTPW_12159: 12159
  IGT_8119: 8119
  xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380

== Logs ==

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

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

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

* ✗ i915.CI.BAT: failure for GPGPU fill improvements (rev4)
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
                   ` (6 preceding siblings ...)
  2024-11-21 15:49 ` ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev4) Patchwork
@ 2024-11-21 16:05 ` Patchwork
  2024-11-21 21:19 ` ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev5) Patchwork
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-11-21 16:05 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

== Series Details ==

Series: GPGPU fill improvements (rev4)
URL   : https://patchwork.freedesktop.org/series/141352/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8119 -> IGTPW_12159
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (45 -> 44)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_module_load@reload:
    - bat-dg2-8:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-dg2-8/igt@i915_module_load@reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12159/bat-dg2-8/igt@i915_module_load@reload.html

  
#### Suppressed ####

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

  * igt@i915_selftest@live:
    - {bat-mtlp-9}:       [PASS][3] -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-mtlp-9/igt@i915_selftest@live.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12159/bat-mtlp-9/igt@i915_selftest@live.html

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - bat-dg1-7:          [FAIL][5] ([i915#12903]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12159/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
    - bat-rpls-4:         [FAIL][7] ([i915#12903]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12159/bat-rpls-4/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live:
    - {bat-arls-6}:       [ABORT][9] -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-arls-6/igt@i915_selftest@live.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12159/bat-arls-6/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - {bat-arls-6}:       [ABORT][11] ([i915#12061]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-arls-6/igt@i915_selftest@live@workarounds.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12159/bat-arls-6/igt@i915_selftest@live@workarounds.html

  * igt@kms_chamelium_edid@dp-edid-read:
    - bat-dg2-13:         [FAIL][13] ([i915#12505]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12159/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html

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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8119 -> IGTPW_12159

  CI-20190529: 20190529
  CI_DRM_15725: e46649e7764a9f6868ccbcba7b8b23b413303380 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12159: 12159
  IGT_8119: 8119

== Logs ==

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

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

* ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev5)
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
                   ` (7 preceding siblings ...)
  2024-11-21 16:05 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-21 21:19 ` Patchwork
  2024-11-21 21:33 ` ✗ i915.CI.BAT: failure " Patchwork
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-11-21 21:19 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: GPGPU fill improvements (rev5)
URL   : https://patchwork.freedesktop.org/series/141352/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8121_BAT -> XEIGTPW_12164_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (9 -> 9)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@bad-pitch-0:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3429]) +31 other tests dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html

  
#### Possible fixes ####

  * igt@kms_frontbuffer_tracking@basic:
    - bat-adlp-7:         [FAIL][3] ([Intel XE#1861]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html

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


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

  * IGT: IGT_8121 -> IGTPW_12164
  * Linux: xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 -> xe-2258-3304ae3acb744c6ea5e8cef09b01d2d527d38715

  IGTPW_12164: 12164
  IGT_8121: 8121
  xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380
  xe-2258-3304ae3acb744c6ea5e8cef09b01d2d527d38715: 3304ae3acb744c6ea5e8cef09b01d2d527d38715

== Logs ==

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

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

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

* ✗ i915.CI.BAT: failure for GPGPU fill improvements (rev5)
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
                   ` (8 preceding siblings ...)
  2024-11-21 21:19 ` ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev5) Patchwork
@ 2024-11-21 21:33 ` Patchwork
  2024-11-22  7:06   ` Zbigniew Kempczyński
  2024-11-21 23:25 ` ✗ Xe.CI.Full: failure for GPGPU fill improvements (rev4) Patchwork
  2024-11-22  9:12 ` ✗ Xe.CI.Full: failure for GPGPU fill improvements (rev5) Patchwork
  11 siblings, 1 reply; 19+ messages in thread
From: Patchwork @ 2024-11-21 21:33 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

== Series Details ==

Series: GPGPU fill improvements (rev5)
URL   : https://patchwork.freedesktop.org/series/141352/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8121 -> IGTPW_12164
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (45 -> 43)
------------------------------

  Missing    (2): fi-snb-2520m fi-elk-e7500 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live:
    - bat-arls-5:         [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arls-5/igt@i915_selftest@live.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-arls-5/igt@i915_selftest@live.html

  
#### Suppressed ####

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

  * igt@i915_selftest@live:
    - {bat-mtlp-9}:       NOTRUN -> [ABORT][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-mtlp-9/igt@i915_selftest@live.html
    - {bat-arls-6}:       [PASS][4] -> [ABORT][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arls-6/igt@i915_selftest@live.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-arls-6/igt@i915_selftest@live.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@workarounds:
    - bat-arls-5:         [PASS][6] -> [ABORT][7] ([i915#12061])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-arls-5/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@i915_module_load@load:
    - {bat-mtlp-9}:       [INCOMPLETE][8] -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-mtlp-9/igt@i915_module_load@load.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-mtlp-9/igt@i915_module_load@load.html

  * igt@i915_pm_rpm@module-reload:
    - bat-dg2-11:         [FAIL][10] ([i915#12903]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-dg2-11/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live:
    - bat-arlh-3:         [ABORT][12] -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arlh-3/igt@i915_selftest@live.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-arlh-3/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [ABORT][14] ([i915#12061]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-arlh-3/igt@i915_selftest@live@workarounds.html

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - bat-dg2-13:         [DMESG-WARN][16] ([i915#12253]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1:
    - bat-apl-1:          [DMESG-WARN][18] -> [PASS][19] +1 other test pass
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.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#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
  [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
  [i915#12915]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12915
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
  [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8121 -> IGTPW_12164
  * Linux: CI_DRM_15725 -> CI_DRM_15726

  CI-20190529: 20190529
  CI_DRM_15725: e46649e7764a9f6868ccbcba7b8b23b413303380 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_15726: 3304ae3acb744c6ea5e8cef09b01d2d527d38715 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12164: 12164
  IGT_8121: 8121

== Logs ==

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

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

* ✗ Xe.CI.Full: failure for GPGPU fill improvements (rev4)
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
                   ` (9 preceding siblings ...)
  2024-11-21 21:33 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-21 23:25 ` Patchwork
  2024-11-22  9:12 ` ✗ Xe.CI.Full: failure for GPGPU fill improvements (rev5) Patchwork
  11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-11-21 23:25 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: GPGPU fill improvements (rev4)
URL   : https://patchwork.freedesktop.org/series/141352/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8119_full -> XEIGTPW_12159_full
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@core_hotunplug@unbind-rebind:
    - shard-lnl:          [PASS][1] -> [DMESG-WARN][2] +2 other tests dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-3/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-5/igt@core_hotunplug@unbind-rebind.html

  * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind:
    - shard-bmg:          [PASS][3] -> [DMESG-WARN][4] +2 other tests dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-d-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][5] +1 other test dmesg-warn
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-d-dp-2.html

  * igt@kms_plane_cursor@primary@pipe-a-dp-2-size-128:
    - shard-bmg:          [PASS][6] -> [DMESG-FAIL][7]
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-128.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-128.html

  * igt@kms_rotation_crc@primary-rotation-180:
    - shard-bmg:          [PASS][8] -> [FAIL][9]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-180.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-180.html

  
#### Warnings ####

  * igt@kms_flip@2x-flip-vs-rmfb@bd-dp2-hdmi-a3:
    - shard-bmg:          [DMESG-WARN][10] ([Intel XE#3468]) -> [DMESG-WARN][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb@bd-dp2-hdmi-a3.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_flip@2x-flip-vs-rmfb@bd-dp2-hdmi-a3.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [DMESG-WARN][12] ([Intel XE#1727]) -> [DMESG-WARN][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
    - shard-bmg:          [DMESG-FAIL][14] ([Intel XE#3468]) -> [FAIL][15]
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html

  * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
    - shard-bmg:          [FAIL][16] -> [DMESG-FAIL][17]
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html

  
New tests
---------

  New tests have been introduced between XEIGT_8119_full and XEIGTPW_12159_full:

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

  * igt@xe_gpgpu_fill@offset-16x16:
    - Statuses : 2 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.01] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_getstats:
    - shard-dg2-set2:     [PASS][18] -> [SKIP][19] ([Intel XE#2423]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@core_getstats.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@core_getstats.html

  * igt@core_hotunplug@hotreplug-lateclose:
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#1885])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html

  * igt@core_hotunplug@hotunbind-rebind:
    - shard-bmg:          [PASS][21] -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@core_hotunplug@hotunbind-rebind.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@core_hotunplug@hotunbind-rebind.html

  * igt@fbdev@info:
    - shard-dg2-set2:     [PASS][23] -> [SKIP][24] ([Intel XE#2134]) +2 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@fbdev@info.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@fbdev@info.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#2550]) +23 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html

  * igt@kms_atomic@plane-immutable-zpos@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][26] ([Intel XE#1727])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_atomic@plane-immutable-zpos@pipe-a-hdmi-a-6.html

  * igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs:
    - shard-bmg:          [PASS][27] -> [INCOMPLETE][28] ([Intel XE#1727]) +1 other test incomplete
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#2423] / [i915#2575]) +47 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
    - shard-lnl:          [PASS][30] -> [FAIL][31] ([Intel XE#1701]) +1 other test fail
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#316])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg2-set2:     [PASS][33] -> [SKIP][34] ([Intel XE#2136]) +25 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2327]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
    - shard-bmg:          [PASS][36] -> [DMESG-WARN][37] ([Intel XE#3468] / [Intel XE#877])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#1407]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-bmg:          [PASS][39] -> [DMESG-WARN][40] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          [PASS][41] -> [INCOMPLETE][42] ([Intel XE#3225])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#1124])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][44] ([Intel XE#1124])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#1124]) +3 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-bmg:          [PASS][46] -> [SKIP][47] ([Intel XE#2314] / [Intel XE#2894])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#2191])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2314] / [Intel XE#2894])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

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

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][52] ([Intel XE#367])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#2887]) +5 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html

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

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#455] / [Intel XE#787]) +12 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#2907])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][58] -> [INCOMPLETE][59] ([Intel XE#3468]) +2 other tests incomplete
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

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

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#2669]) +3 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2724])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_audio@dp-audio-edid:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#373]) +3 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_chamelium_audio@dp-audio-edid.html

  * igt@kms_chamelium_audio@hdmi-audio:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#373]) +3 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-5/igt@kms_chamelium_audio@hdmi-audio.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#2325])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#306]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_edid@dp-mode-timings:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2252]) +2 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_chamelium_edid@dp-mode-timings.html

  * igt@kms_color@degamma:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#3007]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_color@degamma.html

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

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#2321]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][71] ([Intel XE#3468]) +23 other tests dmesg-warn
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#308])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-64x64:
    - shard-dg2-set2:     [PASS][73] -> [SKIP][74] ([Intel XE#2423] / [i915#2575]) +76 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-64x64.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2291])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#309])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([i915#3804])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html

  * igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled:
    - shard-bmg:          [PASS][78] -> [DMESG-FAIL][79] ([Intel XE#2705])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html

  * igt@kms_draw_crc@draw-method-mmap-wc@xrgb2101010-4tiled:
    - shard-bmg:          [PASS][80] -> [DMESG-WARN][81] ([Intel XE#2705])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc@xrgb2101010-4tiled.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc@xrgb2101010-4tiled.html

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

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][83] -> [INCOMPLETE][84] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-dp2-hdmi-a3:
    - shard-bmg:          [PASS][85] -> [DMESG-FAIL][86] ([Intel XE#3468]) +17 other tests dmesg-fail
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-dp2-hdmi-a3.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3:
    - shard-bmg:          [PASS][87] -> [DMESG-FAIL][88] ([Intel XE#1727] / [Intel XE#3468])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-wf_vblank:
    - shard-bmg:          [PASS][89] -> [SKIP][90] ([Intel XE#2316]) +2 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@2x-flip-vs-wf_vblank.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [PASS][91] -> [FAIL][92] ([Intel XE#2882]) +3 other tests fail
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][93] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible:
    - shard-lnl:          [PASS][94] -> [FAIL][95] ([Intel XE#886]) +3 other tests fail
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][96] ([Intel XE#455]) +3 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

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

  * igt@kms_flip_tiling@flip-change-tiling:
    - shard-bmg:          [PASS][100] -> [SKIP][101] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_flip_tiling@flip-change-tiling.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#2311]) +8 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [PASS][103] -> [SKIP][104] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [FAIL][105] ([Intel XE#2333]) +2 other tests fail
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][106] ([Intel XE#2136]) +52 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#651]) +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][108] ([Intel XE#651]) +5 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#2312]) +4 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][110] ([Intel XE#2313]) +10 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
    - shard-dg2-set2:     NOTRUN -> [SKIP][111] ([Intel XE#2136] / [Intel XE#2351]) +20 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html

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

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     NOTRUN -> [SKIP][113] ([Intel XE#1158])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#2350])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][115] ([Intel XE#653]) +6 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][116] ([Intel XE#656]) +9 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-lnl:          NOTRUN -> [SKIP][117] ([Intel XE#1470] / [Intel XE#2853])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-3/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane_alpha_blend@constant-alpha-min:
    - shard-bmg:          [PASS][118] -> [SKIP][119] ([Intel XE#3007]) +7 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_plane_alpha_blend@constant-alpha-min.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_plane_alpha_blend@constant-alpha-min.html

  * igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3:
    - shard-bmg:          [PASS][120] -> [DMESG-WARN][121] ([Intel XE#877]) +1 other test dmesg-warn
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3.html

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

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

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

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
    - shard-dg2-set2:     NOTRUN -> [SKIP][125] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg2-set2:     NOTRUN -> [SKIP][126] ([Intel XE#2446])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
    - shard-bmg:          [PASS][127] -> [SKIP][128] ([Intel XE#2446])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg2-set2:     [PASS][129] -> [SKIP][130] ([Intel XE#2446]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-dg2-set2:     [PASS][131] -> [DMESG-WARN][132] ([Intel XE#2042] / [Intel XE#3468])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_pm_rpm@universal-planes-dpms.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_pm_rpm@universal-planes-dpms@plane-41:
    - shard-dg2-set2:     [PASS][133] -> [DMESG-WARN][134] ([Intel XE#3468]) +5 other tests dmesg-warn
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#1489]) +3 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
    - shard-lnl:          NOTRUN -> [SKIP][136] ([Intel XE#2893])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][137] ([Intel XE#1489])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-psr2-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_psr@fbc-psr2-primary-page-flip.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][139] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@pr-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][140] ([Intel XE#1406])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-6/igt@kms_psr@pr-dpms.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][141] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_psr@psr-primary-page-flip.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][142] ([Intel XE#2351])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [SKIP][143] ([Intel XE#1127])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-bmg:          NOTRUN -> [SKIP][144] ([Intel XE#3414])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-lnl:          NOTRUN -> [SKIP][145] ([Intel XE#3414])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-6/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [PASS][146] -> [SKIP][147] ([Intel XE#1435])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
    - shard-lnl:          [PASS][148] -> [FAIL][149] ([Intel XE#899])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html

  * igt@kms_vblank@ts-continuation-idle-hang@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][150] ([Intel XE#1034])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_vblank@ts-continuation-idle-hang@pipe-a-hdmi-a-6.html

  * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][151] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-warn
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-dp-2.html

  * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-d-hdmi-a-3:
    - shard-bmg:          [PASS][152] -> [DMESG-WARN][153] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests dmesg-warn
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-d-hdmi-a-3.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-d-hdmi-a-3.html

  * igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][154] ([Intel XE#1727])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-6.html

  * igt@kms_vblank@wait-forked@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][155] ([Intel XE#3468]) +11 other tests dmesg-fail
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_vblank@wait-forked@pipe-a-dp-2.html

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

  * igt@kms_writeback@writeback-check-output:
    - shard-dg2-set2:     NOTRUN -> [SKIP][158] ([Intel XE#756])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_writeback@writeback-check-output.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-bmg:          NOTRUN -> [SKIP][159] ([Intel XE#756])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
    - shard-dg2-set2:     NOTRUN -> [SKIP][160] ([Intel XE#1280] / [Intel XE#455])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html

  * igt@xe_eudebug@basic-vm-bind:
    - shard-lnl:          NOTRUN -> [SKIP][161] ([Intel XE#2905]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-4/igt@xe_eudebug@basic-vm-bind.html

  * igt@xe_eudebug@multigpu-basic-client:
    - shard-bmg:          NOTRUN -> [SKIP][162] ([Intel XE#2905]) +2 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@xe_eudebug@multigpu-basic-client.html

  * igt@xe_eudebug_online@resume-dss:
    - shard-dg2-set2:     NOTRUN -> [SKIP][163] ([Intel XE#2905]) +1 other test skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@xe_eudebug_online@resume-dss.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
    - shard-lnl:          NOTRUN -> [SKIP][164] ([Intel XE#688]) +4 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html

  * igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind:
    - shard-bmg:          [PASS][165] -> [DMESG-WARN][166] ([Intel XE#1727]) +14 other tests dmesg-warn
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind.html

  * igt@xe_exec_balancer@once-parallel-rebind:
    - shard-dg2-set2:     [PASS][167] -> [SKIP][168] ([Intel XE#1130]) +156 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
    - shard-bmg:          NOTRUN -> [SKIP][169] ([Intel XE#2322]) +3 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-bind:
    - shard-lnl:          NOTRUN -> [SKIP][170] ([Intel XE#1392]) +1 other test skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-8/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html

  * igt@xe_exec_fault_mode@many-basic-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][171] ([Intel XE#288]) +3 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@xe_exec_fault_mode@many-basic-prefetch.html

  * igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
    - shard-bmg:          [PASS][172] -> [DMESG-WARN][173] ([Intel XE#3468] / [Intel XE#3514])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html

  * igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0:
    - shard-bmg:          [PASS][174] -> [DMESG-WARN][175] ([Intel XE#3468]) +109 other tests dmesg-warn
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html

  * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
    - shard-bmg:          [PASS][176] -> [SKIP][177] ([Intel XE#1130]) +28 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
    - shard-lnl:          NOTRUN -> [DMESG-WARN][178] ([Intel XE#3343])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
    - shard-bmg:          NOTRUN -> [DMESG-WARN][179] ([Intel XE#3343])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][180] ([Intel XE#2229])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-bmg:          NOTRUN -> [SKIP][181] ([Intel XE#1192])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_module_load@load:
    - shard-bmg:          NOTRUN -> [SKIP][182] ([Intel XE#2457])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@xe_module_load@load.html

  * igt@xe_module_load@reload:
    - shard-bmg:          [PASS][183] -> [DMESG-WARN][184] ([Intel XE#3467] / [Intel XE#3468])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_module_load@reload.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@xe_module_load@reload.html

  * igt@xe_oa@closed-fd-and-unmapped-access:
    - shard-dg2-set2:     NOTRUN -> [SKIP][185] ([Intel XE#2541]) +1 other test skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html

  * igt@xe_oa@non-privileged-access-vaddr@rcs-0:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][186] ([Intel XE#1727]) +2 other tests dmesg-warn
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_oa@non-privileged-access-vaddr@rcs-0.html

  * igt@xe_pm@d3cold-basic:
    - shard-lnl:          NOTRUN -> [SKIP][187] ([Intel XE#2284] / [Intel XE#366])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-8/igt@xe_pm@d3cold-basic.html
    - shard-bmg:          NOTRUN -> [SKIP][188] ([Intel XE#1130]) +2 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-bmg:          NOTRUN -> [SKIP][189] ([Intel XE#2284])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@d3hot-mmap-system:
    - shard-lnl:          [PASS][190] -> [DMESG-WARN][191] ([Intel XE#3184])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-1/igt@xe_pm@d3hot-mmap-system.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-1/igt@xe_pm@d3hot-mmap-system.html

  * igt@xe_pm@s2idle-d3hot-basic-exec:
    - shard-bmg:          [PASS][192] -> [DMESG-WARN][193] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@xe_pm@s2idle-d3hot-basic-exec.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_pm@s2idle-d3hot-basic-exec.html

  * igt@xe_pm@s3-vm-bind-prefetch:
    - shard-bmg:          [PASS][194] -> [DMESG-WARN][195] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@xe_pm@s3-vm-bind-prefetch.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@xe_pm@s3-vm-bind-prefetch.html

  * igt@xe_pm@s4-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][196] ([Intel XE#1727] / [Intel XE#3468])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@xe_pm@s4-basic-exec.html
    - shard-lnl:          [PASS][197] -> [ABORT][198] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-8/igt@xe_pm@s4-basic-exec.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-2/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-dg2-set2:     [PASS][199] -> [DMESG-WARN][200] ([Intel XE#1727] / [Intel XE#3468])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_pm@s4-vm-bind-prefetch.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@xe_pm@s4-vm-bind-prefetch.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][201] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - shard-bmg:          [PASS][202] -> [DMESG-WARN][203] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_pm@s4-vm-bind-userptr.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@xe_pm@s4-vm-bind-userptr.html

  * igt@xe_pm_residency@gt-c6-freeze@gt0:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][204] ([Intel XE#1727] / [Intel XE#3088] / [Intel XE#3468])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@xe_pm_residency@gt-c6-freeze@gt0.html

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

  * igt@xe_query@multigpu-query-topology:
    - shard-dg2-set2:     NOTRUN -> [SKIP][206] ([Intel XE#944])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@xe_query@multigpu-query-topology.html
    - shard-lnl:          NOTRUN -> [SKIP][207] ([Intel XE#944]) +1 other test skip
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-7/igt@xe_query@multigpu-query-topology.html

  * igt@xe_vm@large-binds-8388608:
    - shard-dg2-set2:     NOTRUN -> [SKIP][208] ([Intel XE#1130]) +77 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@xe_vm@large-binds-8388608.html

  
#### Possible fixes ####

  * igt@core_getversion@basic:
    - shard-dg2-set2:     [FAIL][209] ([Intel XE#3440]) -> [PASS][210]
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@core_getversion@basic.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@core_getversion@basic.html

  * igt@core_hotunplug@hotreplug:
    - shard-dg2-set2:     [SKIP][211] ([Intel XE#1885]) -> [PASS][212]
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@core_hotunplug@hotreplug.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@core_hotunplug@hotreplug.html

  * igt@fbdev@unaligned-read:
    - shard-dg2-set2:     [DMESG-WARN][213] ([Intel XE#1727]) -> [PASS][214]
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@fbdev@unaligned-read.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@fbdev@unaligned-read.html

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][215] ([Intel XE#2136]) -> [PASS][216] +26 other tests pass
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][217] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][218]
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [SKIP][219] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][220] +11 other tests pass
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-bmg:          [SKIP][221] ([Intel XE#2291]) -> [PASS][222] +2 other tests pass
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [INCOMPLETE][223] ([Intel XE#3226]) -> [PASS][224]
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@torture-bo@pipe-b:
    - shard-dg2-set2:     [DMESG-FAIL][225] ([Intel XE#1727]) -> [PASS][226] +1 other test pass
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_cursor_legacy@torture-bo@pipe-b.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_cursor_legacy@torture-bo@pipe-b.html

  * igt@kms_cursor_legacy@torture-bo@pipe-c:
    - shard-dg2-set2:     [FAIL][227] -> [PASS][228] +3 other tests pass
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_cursor_legacy@torture-bo@pipe-c.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_cursor_legacy@torture-bo@pipe-c.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [SKIP][229] ([Intel XE#2316]) -> [PASS][230] +6 other tests pass
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][231] ([Intel XE#3486]) -> [PASS][232]
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-bmg:          [INCOMPLETE][233] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468]) -> [PASS][234]
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3:
    - shard-bmg:          [DMESG-FAIL][235] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][236] +13 other tests pass
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3:
    - shard-bmg:          [INCOMPLETE][237] ([Intel XE#1727] / [Intel XE#2635] / [Intel XE#3468]) -> [PASS][238]
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3:
    - shard-bmg:          [FAIL][239] ([Intel XE#2882]) -> [PASS][240] +3 other tests pass
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
    - shard-dg2-set2:     [FAIL][241] ([Intel XE#3486]) -> [PASS][242]
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html

  * igt@kms_flip@flip-vs-expired-vblank@c-dp2:
    - shard-bmg:          [DMESG-FAIL][243] ([Intel XE#3468]) -> [PASS][244] +20 other tests pass
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html

  * igt@kms_flip@flip-vs-rmfb@d-hdmi-a3:
    - shard-bmg:          [DMESG-WARN][245] -> [PASS][246] +3 other tests pass
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_flip@flip-vs-rmfb@d-hdmi-a3.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_flip@flip-vs-rmfb@d-hdmi-a3.html

  * igt@kms_frontbuffer_tracking@basic:
    - shard-dg2-set2:     [SKIP][247] ([Intel XE#2351]) -> [PASS][248]
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][249] ([Intel XE#1503]) -> [PASS][250]
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_hdr@invalid-hdr.html

  * igt@kms_lease@simple-lease@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][251] ([Intel XE#1727]) -> [PASS][252] +1 other test pass
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_lease@simple-lease@pipe-a-hdmi-a-6.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_lease@simple-lease@pipe-a-hdmi-a-6.html

  * igt@kms_pipe_crc_basic@nonblocking-crc:
    - shard-bmg:          [DMESG-WARN][253] ([Intel XE#877]) -> [PASS][254]
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_pipe_crc_basic@nonblocking-crc.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_pipe_crc_basic@nonblocking-crc.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
    - shard-dg2-set2:     [SKIP][255] ([Intel XE#2423] / [i915#2575]) -> [PASS][256] +85 other tests pass
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html

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

  * igt@kms_pm_rpm@cursor-dpms:
    - shard-dg2-set2:     [DMESG-WARN][259] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][260]
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html

  * igt@kms_pm_rpm@legacy-planes-dpms:
    - shard-bmg:          [INCOMPLETE][261] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) -> [PASS][262]
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_pm_rpm@legacy-planes-dpms.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms.html

  * igt@kms_pm_rpm@legacy-planes-dpms@plane-59:
    - shard-bmg:          [DMESG-WARN][263] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][264] +4 other tests pass
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html

  * igt@kms_pm_rpm@legacy-planes-dpms@plane-68:
    - shard-bmg:          [INCOMPLETE][265] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][266]
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html

  * igt@kms_pm_rpm@modeset-stress-extra-wait:
    - shard-dg2-set2:     [SKIP][267] ([Intel XE#2446]) -> [PASS][268] +1 other test pass
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_pm_rpm@modeset-stress-extra-wait.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_pm_rpm@modeset-stress-extra-wait.html

  * igt@kms_pm_rpm@universal-planes-dpms@plane-59:
    - shard-lnl:          [DMESG-WARN][269] ([Intel XE#3184]) -> [PASS][270]
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-2/igt@kms_pm_rpm@universal-planes-dpms@plane-59.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-4/igt@kms_pm_rpm@universal-planes-dpms@plane-59.html

  * igt@kms_psr@fbc-psr2-primary-page-flip:
    - shard-lnl:          [FAIL][271] -> [PASS][272] +1 other test pass
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-page-flip.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-page-flip.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [SKIP][273] ([Intel XE#1435]) -> [PASS][274] +1 other test pass
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-lnl:          [FAIL][275] ([Intel XE#899]) -> [PASS][276]
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@testdisplay:
    - shard-dg2-set2:     [SKIP][277] ([Intel XE#2423]) -> [PASS][278]
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@testdisplay.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@testdisplay.html

  * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
    - shard-bmg:          [DMESG-WARN][279] ([Intel XE#3468]) -> [PASS][280] +93 other tests pass
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html

  * igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate:
    - shard-dg2-set2:     [SKIP][281] ([Intel XE#1130]) -> [PASS][282] +155 other tests pass
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html

  * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
    - shard-dg2-set2:     [DMESG-WARN][283] ([Intel XE#3467]) -> [PASS][284]
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html

  * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
    - shard-bmg:          [DMESG-WARN][285] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][286]
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html

  * igt@xe_live_ktest@xe_bo:
    - shard-bmg:          [SKIP][287] ([Intel XE#1192]) -> [PASS][288] +1 other test pass
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@xe_live_ktest@xe_bo.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@xe_live_ktest@xe_bo.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - shard-dg2-set2:     [SKIP][289] ([Intel XE#2229]) -> [PASS][290] +1 other test pass
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_module_load@reload-no-display:
    - shard-bmg:          [DMESG-WARN][291] ([Intel XE#3467]) -> [PASS][292] +1 other test pass
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_module_load@reload-no-display.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@xe_module_load@reload-no-display.html

  * igt@xe_pm@s2idle-multiple-execs:
    - shard-bmg:          [DMESG-WARN][293] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][294]
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_pm@s2idle-multiple-execs.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@xe_pm@s2idle-multiple-execs.html

  * igt@xe_pm@s2idle-vm-bind-prefetch:
    - shard-bmg:          [DMESG-WARN][295] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][296]
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-prefetch.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-prefetch.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-lnl:          [ABORT][297] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][298]
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-7/igt@xe_pm@s4-d3hot-basic-exec.html

  * igt@xe_pm@s4-multiple-execs:
    - shard-lnl:          [ABORT][299] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][300]
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-3/igt@xe_pm@s4-multiple-execs.html

  * igt@xe_vm@bind-execqueues-conflict:
    - shard-bmg:          [DMESG-WARN][301] ([Intel XE#1727]) -> [PASS][302] +2 other tests pass
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@xe_vm@bind-execqueues-conflict.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_vm@bind-execqueues-conflict.html

  
#### Warnings ####

  * igt@core_hotunplug@hotunbind-rebind:
    - shard-dg2-set2:     [DMESG-WARN][303] ([Intel XE#3468] / [Intel XE#3521]) -> [SKIP][304] ([Intel XE#1885])
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@core_hotunplug@hotunbind-rebind.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@core_hotunplug@hotunbind-rebind.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2-set2:     [SKIP][305] ([Intel XE#2423] / [i915#2575]) -> [SKIP][306] ([Intel XE#623])
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@basic:
    - shard-dg2-set2:     [SKIP][307] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][308] ([Intel XE#1727]) +2 other tests dmesg-warn
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_addfb_basic@basic.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_addfb_basic@basic.html

  * igt@kms_atomic_interruptible@atomic-setmode:
    - shard-dg2-set2:     [DMESG-WARN][309] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][310] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_atomic_interruptible@atomic-setmode.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_atomic_interruptible@atomic-setmode.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][311] ([Intel XE#2136] / [Intel XE#2351]) -> [DMESG-WARN][312] ([Intel XE#1727])
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][314] ([Intel XE#316]) +2 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][315] ([Intel XE#316]) -> [SKIP][316] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [DMESG-WARN][317] ([Intel XE#1727]) -> [SKIP][318] ([Intel XE#2136])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][319] ([Intel XE#2136]) -> [SKIP][320] ([Intel XE#316]) +2 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-270.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
    - shard-bmg:          [DMESG-WARN][321] ([Intel XE#3468]) -> [DMESG-FAIL][322] ([Intel XE#3468])
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-bmg:          [SKIP][323] ([Intel XE#2327]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2231])
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][325] ([Intel XE#316]) -> [SKIP][326] ([Intel XE#2136])
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][327] ([Intel XE#610]) -> [SKIP][328] ([Intel XE#2136])
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
    - shard-bmg:          [SKIP][329] ([Intel XE#610]) -> [SKIP][330] ([Intel XE#2136] / [Intel XE#2231])
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][331] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][332] ([Intel XE#1124]) +6 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][333] ([Intel XE#1124]) -> [SKIP][334] ([Intel XE#2136]) +4 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-bmg:          [SKIP][335] ([Intel XE#1124]) -> [SKIP][336] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][337] ([Intel XE#607]) -> [SKIP][338] ([Intel XE#2136])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][339] ([Intel XE#1124]) -> [SKIP][340] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][341] ([Intel XE#2136]) -> [SKIP][342] ([Intel XE#1124]) +7 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          [SKIP][343] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][344] ([Intel XE#3007])
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][345] ([Intel XE#2423] / [i915#2575]) -> [SKIP][346] ([Intel XE#2191])
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][347] ([Intel XE#2191]) -> [SKIP][348] ([Intel XE#2423] / [i915#2575])
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][349] ([Intel XE#367]) -> [SKIP][350] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [SKIP][352] ([Intel XE#367]) +2 other tests skip
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
    - shard-dg2-set2:     [SKIP][353] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][354] ([Intel XE#2136]) +13 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][355] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][356] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
    - shard-bmg:          [SKIP][357] ([Intel XE#2887]) -> [SKIP][358] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][359] ([Intel XE#2136]) -> [SKIP][360] ([Intel XE#3442])
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][361] ([Intel XE#2136]) -> [SKIP][362] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [FAIL][363] ([Intel XE#616]) -> [SKIP][364] ([Intel XE#2136])
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][365] ([Intel XE#2136]) -> [SKIP][366] ([Intel XE#2907])
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-dg2-set2:     [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [SKIP][368] ([Intel XE#306]) +2 other tests skip
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-dg2-set2:     [SKIP][369] ([Intel XE#306]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575])
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_chamelium_color@ctm-max.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-bmg:          [SKIP][371] ([Intel XE#2252]) -> [SKIP][372] ([Intel XE#3007])
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     [SKIP][373] ([Intel XE#373]) -> [SKIP][374] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-dg2-set2:     [SKIP][375] ([Intel XE#2423] / [i915#2575]) -> [SKIP][376] ([Intel XE#373]) +8 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [INCOMPLETE][377] ([Intel XE#2715] / [Intel XE#3468]) -> [SKIP][378] ([Intel XE#2341])
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_content_protection@atomic.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     [FAIL][379] ([Intel XE#1178]) -> [SKIP][380] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     [SKIP][381] ([Intel XE#307]) -> [SKIP][382] ([Intel XE#2423] / [i915#2575])
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-0.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2-set2:     [SKIP][383] ([Intel XE#2423] / [i915#2575]) -> [SKIP][384] ([Intel XE#307]) +1 other test skip
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][385] ([Intel XE#1178]) -> [INCOMPLETE][386] ([Intel XE#2715] / [Intel XE#3468]) +3 other tests incomplete
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_content_protection@legacy.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [FAIL][387] ([Intel XE#1178]) -> [SKIP][388] ([Intel XE#3007])
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_content_protection@srm.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     [SKIP][389] ([Intel XE#2423] / [i915#2575]) -> [SKIP][390] ([Intel XE#308])
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          [SKIP][391] ([Intel XE#2320]) -> [SKIP][392] ([Intel XE#3007])
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [DMESG-WARN][393] -> [SKIP][394] ([Intel XE#3007])
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2-set2:     [SKIP][395] ([Intel XE#2423] / [i915#2575]) -> [SKIP][396] ([Intel XE#323]) +2 other tests skip
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-bmg:          [SKIP][397] ([Intel XE#2291]) -> [DMESG-WARN][398] ([Intel XE#3468])
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [DMESG-WARN][399] ([Intel XE#877]) -> [SKIP][400] ([Intel XE#2291])
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2-set2:     [SKIP][401] ([Intel XE#455]) -> [SKIP][402] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-dg2-set2:     [INCOMPLETE][403] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][404] ([Intel XE#2136])
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_fbcon_fbt@fbc-suspend.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     [SKIP][405] ([Intel XE#2136]) -> [SKIP][406] ([Intel XE#776])
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_fbcon_fbt@psr.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2-set2:     [SKIP][407] ([Intel XE#776]) -> [SKIP][408] ([Intel XE#2136])
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2-set2:     [SKIP][409] ([Intel XE#2423] / [i915#2575]) -> [SKIP][410] ([Intel XE#703])
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_feature_discovery@display-3x.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     [SKIP][411] ([Intel XE#2423] / [i915#2575]) -> [SKIP][412] ([Intel XE#1138])
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg2-set2:     [SKIP][413] ([Intel XE#2423] / [i915#2575]) -> [SKIP][414] ([Intel XE#1137])
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     [SKIP][415] ([Intel XE#1135]) -> [SKIP][416] ([Intel XE#2423] / [i915#2575])
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_feature_discovery@psr2.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-bmg:          [DMESG-WARN][417] ([Intel XE#3468]) -> [SKIP][418] ([Intel XE#2316])
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@2x-absolute-wf_vblank.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-bmg:          [DMESG-WARN][419] ([Intel XE#3468]) -> [DMESG-WARN][420] ([Intel XE#2955] / [Intel XE#3468])
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-bmg:          [DMESG-FAIL][421] ([Intel XE#3468]) -> [SKIP][422] ([Intel XE#2316])
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@dpms-off-confusion-interruptible:
    - shard-bmg:          [DMESG-WARN][423] ([Intel XE#3468]) -> [SKIP][424] ([Intel XE#3007])
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_flip@dpms-off-confusion-interruptible.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_flip@dpms-off-confusion-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][425] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468]) -> [DMESG-FAIL][426] ([Intel XE#1727] / [Intel XE#3468])
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp2:
    - shard-bmg:          [INCOMPLETE][427] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-FAIL][428] ([Intel XE#1727] / [Intel XE#3468])
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp2.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp2.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible:
    - shard-bmg:          [DMESG-FAIL][429] ([Intel XE#3468]) -> [FAIL][430] ([Intel XE#2882])
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3:
    - shard-bmg:          [DMESG-WARN][431] ([Intel XE#3468]) -> [FAIL][432] ([Intel XE#2882])
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-dg2-set2:     [SKIP][433] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][434] ([Intel XE#455]) +1 other test skip
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-dg2-set2:     [SKIP][435] ([Intel XE#2136]) -> [SKIP][436] ([Intel XE#455])
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-dg2-set2:     [SKIP][437] ([Intel XE#455]) -> [SKIP][438] ([Intel XE#2136]) +2 other tests skip
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-dg2-set2:     [SKIP][439] ([Intel XE#2423] / [i915#2575]) -> [SKIP][440] ([i915#5274])
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][441] ([Intel XE#2311]) -> [SKIP][442] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][443] ([Intel XE#651]) -> [SKIP][444] ([Intel XE#2136]) +21 other tests skip
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#651]) +17 other tests skip
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-dg2-set2:     [SKIP][447] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][448] ([Intel XE#651]) +11 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
    - shard-bmg:          [FAIL][449] ([Intel XE#2333]) -> [DMESG-FAIL][450] ([Intel XE#3468]) +7 other tests dmesg-fail
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][451] ([Intel XE#2136] / [Intel XE#2351]) -> [INCOMPLETE][452] ([Intel XE#1727])
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [DMESG-FAIL][453] ([Intel XE#3468]) -> [SKIP][454] ([Intel XE#2136] / [Intel XE#2231])
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-rte:
    - shard-dg2-set2:     [INCOMPLETE][455] ([Intel XE#3468]) -> [SKIP][456] ([Intel XE#2136])
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
    - shard-bmg:          [FAIL][457] ([Intel XE#2333]) -> [INCOMPLETE][458] ([Intel XE#1727] / [Intel XE#3468])
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [DMESG-FAIL][459] ([Intel XE#3468]) -> [SKIP][460] ([Intel XE#2312]) +2 other tests skip
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [FAIL][461] ([Intel XE#2333]) -> [SKIP][462] ([Intel XE#2312])
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [DMESG-FAIL][463] ([Intel XE#3468]) -> [FAIL][464] ([Intel XE#2333]) +10 other tests fail
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [INCOMPLETE][465] ([Intel XE#1727]) -> [SKIP][466] ([Intel XE#2136] / [Intel XE#2351])
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][467] ([Intel XE#2312]) -> [FAIL][468] ([Intel XE#2333]) +10 other tests fail
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          [DMESG-FAIL][469] ([Intel XE#3468]) -> [INCOMPLETE][470] ([Intel XE#2050])
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc:
    - shard-bmg:          [FAIL][471] ([Intel XE#2333]) -> [SKIP][472] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-dg2-set2:     [SKIP][473] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][474] ([Intel XE#658])
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][475] ([Intel XE#651]) -> [SKIP][476] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][477] ([Intel XE#2311]) -> [SKIP][478] ([Intel XE#2312]) +7 other tests skip
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][479] ([Intel XE#2312]) -> [SKIP][480] ([Intel XE#2311]) +17 other tests skip
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-bmg:          [SKIP][481] ([Intel XE#2352]) -> [SKIP][482] ([Intel XE#2136] / [Intel XE#2231])
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][483] ([Intel XE#653]) -> [SKIP][484] ([Intel XE#2136]) +26 other tests skip
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][485] ([Intel XE#2313]) -> [SKIP][486] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][487] ([Intel XE#2312]) -> [SKIP][488] ([Intel XE#2313]) +16 other tests skip
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][489] ([Intel XE#653]) -> [SKIP][490] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][491] ([Intel XE#2313]) -> [SKIP][492] ([Intel XE#2312]) +11 other tests skip
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][493] ([Intel XE#2136]) -> [SKIP][494] ([Intel XE#653]) +24 other tests skip
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][495] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][496] ([Intel XE#653]) +4 other tests skip
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][497] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][498] ([Intel XE#3544])
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-dg2-set2:     [SKIP][499] ([Intel XE#2927]) -> [SKIP][500] ([Intel XE#2136])
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_joiner@basic-ultra-joiner.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2-set2:     [SKIP][501] ([Intel XE#2925]) -> [SKIP][502] ([Intel XE#2136])
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_plane_cursor@primary:
    - shard-dg2-set2:     [FAIL][503] ([Intel XE#616]) -> [SKIP][504] ([Intel XE#2423] / [i915#2575])
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_plane_cursor@primary.html
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_plane_cursor@primary.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
    - shard-dg2-set2:     [DMESG-WARN][505] ([Intel XE#1727]) -> [SKIP][506] ([Intel XE#2423] / [i915#2575])
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25:
    - shard-dg2-set2:     [SKIP][507] ([Intel XE#2423] / [i915#2575]) -> [SKIP][508] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][509] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][510] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-bmg:          [SKIP][511] ([Intel XE#2763]) -> [SKIP][512] ([Intel XE#3007])
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-dg2-set2:     [SKIP][513] ([Intel XE#2136]) -> [SKIP][514] ([Intel XE#870])
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_pm_backlight@basic-brightness.html
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2-set2:     [SKIP][515] ([Intel XE#1122]) -> [SKIP][516] ([Intel XE#2136] / [Intel XE#2351])
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2-set2:     [SKIP][517] ([Intel XE#2136]) -> [SKIP][518] ([Intel XE#3309])
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-bmg:          [DMESG-FAIL][519] ([Intel XE#1727] / [Intel XE#3468]) -> [FAIL][520] ([Intel XE#1430])
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-dg2-set2:     [SKIP][521] ([Intel XE#908]) -> [SKIP][522] ([Intel XE#2136])
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2-set2:     [SKIP][523] ([Intel XE#2446]) -> [DMESG-WARN][524] ([Intel XE#3468]) +1 other test dmesg-warn
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_pm_rpm@dpms-lpsp.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-dg2-set2:     [SKIP][525] ([Intel XE#2446]) -> [DMESG-WARN][526] ([Intel XE#1727] / [Intel XE#3468])
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg2-set2:     [DMESG-WARN][527] ([Intel XE#3468]) -> [SKIP][528] ([Intel XE#2446]) +1 other test skip
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@universal-planes-dpms@plane-32:
    - shard-lnl:          [DMESG-WARN][529] -> [DMESG-WARN][530] ([Intel XE#3184])
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-2/igt@kms_pm_rpm@universal-planes-dpms@plane-32.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-lnl-4/igt@kms_pm_rpm@universal-planes-dpms@plane-32.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     [SKIP][531] ([Intel XE#2136]) -> [SKIP][532] ([Intel XE#1489]) +8 other tests skip
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     [SKIP][533] ([Intel XE#1489]) -> [SKIP][534] ([Intel XE#2136]) +7 other tests skip
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-bmg:          [SKIP][535] ([Intel XE#1489]) -> [SKIP][536] ([Intel XE#2136] / [Intel XE#2231])
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2-set2:     [SKIP][537] ([Intel XE#1122]) -> [SKIP][538] ([Intel XE#2136])
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-bmg:          [SKIP][539] ([Intel XE#2387]) -> [SKIP][540] ([Intel XE#2136] / [Intel XE#2231])
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_psr2_su@page_flip-p010.html
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-dg2-set2:     [SKIP][541] ([Intel XE#2136]) -> [SKIP][542] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff:
    - shard-dg2-set2:     [SKIP][543] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][544] ([Intel XE#2136]) +9 other tests skip
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html

  * igt@kms_psr@pr-sprite-blt:
    - shard-bmg:          [SKIP][545] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][546] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_psr@pr-sprite-blt.html
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_psr@pr-sprite-blt.html

  * igt@kms_psr@psr-cursor-plane-move:
    - shard-dg2-set2:     [SKIP][547] ([Intel XE#2351]) -> [SKIP][548] ([Intel XE#2850] / [Intel XE#929])
   [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_psr@psr-cursor-plane-move.html
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_psr@psr-cursor-plane-move.html

  * igt@kms_psr@psr-cursor-render:
    - shard-dg2-set2:     [SKIP][549] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][550] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_psr@psr-cursor-render.html
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_psr@psr-cursor-render.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     [SKIP][551] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][552] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_psr@psr-dpms.html
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_psr@psr-dpms.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     [SKIP][553] ([Intel XE#2423] / [i915#2575]) -> [SKIP][554] ([Intel XE#3414]) +1 other test skip
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][555] ([Intel XE#1127]) -> [SKIP][556] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-dg2-set2:     [SKIP][557] ([Intel XE#3414]) -> [SKIP][558] ([Intel XE#2423] / [i915#2575])
   [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90.html
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-bmg:          [SKIP][559] ([Intel XE#2413]) -> [SKIP][560] ([Intel XE#3007])
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full.html
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][561] ([Intel XE#2509]) -> [SKIP][562] ([Intel XE#2426])
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-dg2-set2:     [SKIP][563] ([Intel XE#2423] / [i915#2575]) -> [SKIP][564] ([Intel XE#1500])
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-dp-2:
    - shard-bmg:          [DMESG-WARN][565] ([Intel XE#3468]) -> [DMESG-WARN][566] ([Intel XE#1727] / [Intel XE#3468])
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-dp-2.html
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-dp-2.html

  * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
    - shard-bmg:          [DMESG-WARN][567] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][568] ([Intel XE#3468])
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html

  * igt@kms_vblank@ts-continuation-idle-hang:
    - shard-dg2-set2:     [SKIP][569] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][570] ([Intel XE#1034])
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_vblank@ts-continuation-idle-hang.html
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@kms_vblank@ts-continuation-idle-hang.html

  * igt@kms_vblank@wait-forked-busy-hang:
    - shard-dg2-set2:     [SKIP][571] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][572] ([Intel XE#1727])
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_vblank@wait-forked-busy-hang.html
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@kms_vblank@wait-forked-busy-hang.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2-set2:     [SKIP][573] ([Intel XE#2423] / [i915#2575]) -> [SKIP][574] ([Intel XE#455]) +7 other tests skip
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_vrr@flip-dpms.html
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][575] ([Intel XE#1499]) -> [SKIP][576] ([Intel XE#3007])
   [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_vrr@flip-suspend.html
   [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][577] ([Intel XE#455]) -> [SKIP][578] ([Intel XE#2423] / [i915#2575]) +12 other tests skip
   [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_vrr@flipline.html
   [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@kms_vrr@flipline.html

  * igt@kms_vrr@lobf:
    - shard-dg2-set2:     [SKIP][579] ([Intel XE#2168]) -> [SKIP][580] ([Intel XE#2423] / [i915#2575])
   [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_vrr@lobf.html
   [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@kms_vrr@lobf.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2-set2:     [SKIP][581] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][582] ([Intel XE#2423] / [i915#2575])
   [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_compute_preempt@compute-threadgroup-preempt:
    - shard-dg2-set2:     [SKIP][583] ([Intel XE#1130]) -> [SKIP][584] ([Intel XE#1280] / [Intel XE#455])
   [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html
   [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt.html

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][585] ([Intel XE#1123]) -> [SKIP][586] ([Intel XE#1130])
   [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
   [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-dg2-set2:     [SKIP][587] ([Intel XE#1130]) -> [SKIP][588] ([Intel XE#1123])
   [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html
   [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-set-linear-0x369:
    - shard-dg2-set2:     [SKIP][589] ([Intel XE#1126]) -> [SKIP][590] ([Intel XE#1130])
   [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x369.html
   [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x369.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][591] ([Intel XE#1130]) -> [SKIP][592] ([Intel XE#1126])
   [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html
   [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_eudebug@basic-client-th:
    - shard-dg2-set2:     [SKIP][593] ([Intel XE#1130]) -> [SKIP][594] ([Intel XE#2905]) +10 other tests skip
   [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_eudebug@basic-client-th.html
   [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@xe_eudebug@basic-client-th.html

  * igt@xe_eudebug@basic-close:
    - shard-dg2-set2:     [SKIP][595] ([Intel XE#2905]) -> [SKIP][596] ([Intel XE#1130]) +10 other tests skip
   [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@xe_eudebug@basic-close.html
   [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@xe_eudebug@basic-close.html

  * igt@xe_evict@evict-beng-cm-threads-large-multi-vm:
    - shard-bmg:          [DMESG-WARN][597] ([Intel XE#3468]) -> [SKIP][598] ([Intel XE#1130])
   [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html
   [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html

  * igt@xe_evict@evict-beng-mixed-many-threads-large:
    - shard-bmg:          [INCOMPLETE][599] ([Intel XE#1473]) -> [TIMEOUT][600] ([Intel XE#1473])
   [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-large.html
   [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-dg2-set2:     [SKIP][601] ([Intel XE#1130]) -> [INCOMPLETE][602] ([Intel XE#1473])
   [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html
   [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-bind:
    - shard-bmg:          [SKIP][603] ([Intel XE#2322]) -> [SKIP][604] ([Intel XE#1130]) +1 other test skip
   [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
   [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html

  * igt@xe_exec_basic@no-exec-bindexecqueue-rebind:
    - shard-dg2-set2:     [SKIP][605] ([Intel XE#1130]) -> [DMESG-WARN][606] ([Intel XE#1727]) +6 other tests dmesg-warn
   [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_exec_basic@no-exec-bindexecqueue-rebind.html
   [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@xe_exec_basic@no-exec-bindexecqueue-rebind.html
    - shard-bmg:          [DMESG-WARN][607] ([Intel XE#3468]) -> [DMESG-WARN][608] ([Intel XE#1727])
   [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_exec_basic@no-exec-bindexecqueue-rebind.html
   [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@xe_exec_basic@no-exec-bindexecqueue-rebind.html

  * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate:
    - shard-dg2-set2:     [FAIL][609] -> [SKIP][610] ([Intel XE#1130])
   [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
   [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@many-execqueues-rebind:
    - shard-bmg:          [DMESG-WARN][611] ([Intel XE#1727]) -> [DMESG-WARN][612] ([Intel XE#3468]) +1 other test dmesg-warn
   [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-rebind.html
   [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-rebind.html

  * igt@xe_exec_fault_mode@once-basic:
    - shard-dg2-set2:     [SKIP][613] ([Intel XE#288]) -> [SKIP][614] ([Intel XE#1130]) +28 other tests skip
   [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_exec_fault_mode@once-basic.html
   [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@xe_exec_fault_mode@once-basic.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     [SKIP][615] ([Intel XE#1130]) -> [SKIP][616] ([Intel XE#288]) +28 other tests skip
   [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
   [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-dg2-set2:     [SKIP][617] ([Intel XE#2360]) -> [SKIP][618] ([Intel XE#1130]) +2 other tests skip
   [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
   [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
    - shard-dg2-set2:     [DMESG-FAIL][619] ([Intel XE#3371]) -> [SKIP][620] ([Intel XE#1130])
   [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
   [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
    - shard-dg2-set2:     [DMESG-WARN][621] ([Intel XE#3467]) -> [SKIP][622] ([Intel XE#1130]) +2 other tests skip
   [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
   [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-dg2-set2:     [SKIP][623] ([Intel XE#1130]) -> [DMESG-WARN][624] ([Intel XE#3467])
   [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
   [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
    - shard-bmg:          [DMESG-WARN][625] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][626] ([Intel XE#3343])
   [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
   [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
    - shard-bmg:          [DMESG-WARN][627] ([Intel XE#3343]) -> [DMESG-WARN][628] ([Intel XE#3343] / [Intel XE#3468])
   [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
   [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
    - shard-dg2-set2:     [ABORT][629] ([Intel XE#3343]) -> [SKIP][630] ([Intel XE#1130])
   [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
   [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
    - shard-dg2-set2:     [DMESG-WARN][631] ([Intel XE#3343]) -> [SKIP][632] ([Intel XE#1130])
   [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
   [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
    - shard-dg2-set2:     [SKIP][633] ([Intel XE#1130]) -> [DMESG-WARN][634] ([Intel XE#3343])
   [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
   [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html

  * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
    - shard-bmg:          [DMESG-FAIL][635] -> [DMESG-FAIL][636] ([Intel XE#3467] / [Intel XE#3468])
   [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
   [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html

  * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
    - shard-bmg:          [DMESG-FAIL][637] ([Intel XE#3467]) -> [DMESG-FAIL][638] ([Intel XE#3467] / [Intel XE#3468])
   [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
   [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html

  * igt@xe_huc_copy@huc_copy:
    - shard-dg2-set2:     [SKIP][639] ([Intel XE#1130]) -> [SKIP][640] ([Intel XE#255])
   [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_huc_copy@huc_copy.html
   [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@xe_huc_copy@huc_copy.html

  * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
    - shard-dg2-set2:     [INCOMPLETE][641] -> [TIMEOUT][642] ([Intel XE#2961] / [Intel XE#3191]) +1 other test timeout
   [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
   [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html

  * igt@xe_module_load@reload-no-display:
    - shard-dg2-set2:     [FAIL][643] ([Intel XE#3546]) -> [DMESG-WARN][644] ([Intel XE#3467])
   [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_module_load@reload-no-display.html
   [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@xe_module_load@reload-no-display.html

  * igt@xe_oa@invalid-oa-format-id:
    - shard-dg2-set2:     [SKIP][645] ([Intel XE#2541]) -> [SKIP][646] ([Intel XE#1130]) +8 other tests skip
   [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_oa@invalid-oa-format-id.html
   [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_oa@invalid-oa-format-id.html

  * igt@xe_oa@non-system-wide-paranoid:
    - shard-dg2-set2:     [SKIP][647] ([Intel XE#1130]) -> [SKIP][648] ([Intel XE#2541]) +7 other tests skip
   [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_oa@non-system-wide-paranoid.html
   [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-436/igt@xe_oa@non-system-wide-paranoid.html

  * igt@xe_pat@display-vs-wb-transient:
    - shard-dg2-set2:     [SKIP][649] ([Intel XE#1337]) -> [SKIP][650] ([Intel XE#1130])
   [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html
   [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-dg2-set2:     [SKIP][651] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][652] ([Intel XE#1130])
   [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_pat@pat-index-xehpc.html
   [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-dg2-set2:     [SKIP][653] ([Intel XE#1130]) -> [SKIP][654] ([Intel XE#979])
   [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html
   [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     [SKIP][655] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][656] ([Intel XE#1130]) +3 other tests skip
   [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html
   [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@d3hot-multiple-execs:
    - shard-dg2-set2:     [SKIP][657] ([Intel XE#1130]) -> [DMESG-WARN][658] ([Intel XE#3468]) +1 other test dmesg-warn
   [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_pm@d3hot-multiple-execs.html
   [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-435/igt@xe_pm@d3hot-multiple-execs.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-dg2-set2:     [DMESG-WARN][659] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][660] ([Intel XE#1130])
   [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@xe_pm@s2idle-basic-exec.html
   [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s2idle-vm-bind-prefetch:
    - shard-dg2-set2:     [SKIP][661] ([Intel XE#1130]) -> [DMESG-WARN][662] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-warn
   [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-prefetch.html
   [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@xe_pm@s2idle-vm-bind-prefetch.html

  * igt@xe_pm@s3-basic-exec:
    - shard-dg2-set2:     [DMESG-WARN][663] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][664] ([Intel XE#1130])
   [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_pm@s3-basic-exec.html
   [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s3-exec-after:
    - shard-bmg:          [DMESG-WARN][665] ([Intel XE#3468] / [Intel XE#569]) -> [DMESG-WARN][666] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
   [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_pm@s3-exec-after.html
   [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-8/igt@xe_pm@s3-exec-after.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-dg2-set2:     [SKIP][667] ([Intel XE#1130]) -> [DMESG-WARN][668] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
   [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_pm@s3-multiple-execs.html
   [668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][669] ([Intel XE#1130]) -> [SKIP][670] ([Intel XE#2284] / [Intel XE#366])
   [669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_pm@s4-d3cold-basic-exec.html
   [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pm_residency@gt-c6-freeze:
    - shard-dg2-set2:     [SKIP][671] ([Intel XE#1130]) -> [DMESG-WARN][672] ([Intel XE#1727] / [Intel XE#3088] / [Intel XE#3468])
   [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_pm_residency@gt-c6-freeze.html
   [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-463/igt@xe_pm_residency@gt-c6-freeze.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     [SKIP][673] ([Intel XE#1130]) -> [SKIP][674] ([Intel XE#944]) +3 other tests skip
   [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_query@multigpu-query-engines.html
   [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     [SKIP][675] ([Intel XE#944]) -> [SKIP][676] ([Intel XE#1130]) +3 other tests skip
   [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-bmg:          [SKIP][677] ([Intel XE#944]) -> [SKIP][678] ([Intel XE#1130])
   [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html
   [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-bmg-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_vm@large-split-binds-4194304:
    - shard-dg2-set2:     [DMESG-WARN][679] ([Intel XE#1727]) -> [SKIP][680] ([Intel XE#1130]) +1 other test skip
   [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@xe_vm@large-split-binds-4194304.html
   [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-434/igt@xe_vm@large-split-binds-4194304.html

  * igt@xe_wedged@basic-wedged:
    - shard-dg2-set2:     [DMESG-WARN][681] ([Intel XE#2919]) -> [SKIP][682] ([Intel XE#1130])
   [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_wedged@basic-wedged.html
   [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-466/igt@xe_wedged@basic-wedged.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-dg2-set2:     [SKIP][683] ([Intel XE#1130]) -> [ABORT][684] ([Intel XE#3421])
   [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html
   [684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12159/shard-dg2-433/igt@xe_wedged@wedged-at-any-timeout.html

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

  [Intel XE#1034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1034
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [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#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [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#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
  [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#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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
  [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
  [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
  [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
  [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
  [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
  [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
  [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
  [Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
  [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
  [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
  [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
  [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
  [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
  [Intel XE#3514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514
  [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
  [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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274


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

  * IGT: IGT_8119 -> IGTPW_12159

  IGTPW_12159: 12159
  IGT_8119: 8119
  xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380

== Logs ==

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

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

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

* Re: ✗ i915.CI.BAT: failure for GPGPU fill improvements (rev5)
  2024-11-21 21:33 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-22  7:06   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-22  7:06 UTC (permalink / raw)
  To: igt-dev; +Cc: I915-ci-infra

On Thu, Nov 21, 2024 at 09:33:21PM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: GPGPU fill improvements (rev5)
> URL   : https://patchwork.freedesktop.org/series/141352/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_8121 -> IGTPW_12164
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_12164 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_12164, 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_12164/index.html
> 
> Participating hosts (45 -> 43)
> ------------------------------
> 
>   Missing    (2): fi-snb-2520m fi-elk-e7500 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_12164:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live:
>     - bat-arls-5:         [PASS][1] -> [ABORT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arls-5/igt@i915_selftest@live.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-arls-5/igt@i915_selftest@live.html

Unrelated to the series. May I ask for continuing execution (I need
to check results from full run).

--
Zbigniew

> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@i915_selftest@live:
>     - {bat-mtlp-9}:       NOTRUN -> [ABORT][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-mtlp-9/igt@i915_selftest@live.html
>     - {bat-arls-6}:       [PASS][4] -> [ABORT][5]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arls-6/igt@i915_selftest@live.html
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-arls-6/igt@i915_selftest@live.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_12164 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@i915_selftest@live@workarounds:
>     - bat-arls-5:         [PASS][6] -> [ABORT][7] ([i915#12061])
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arls-5/igt@i915_selftest@live@workarounds.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-arls-5/igt@i915_selftest@live@workarounds.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@i915_module_load@load:
>     - {bat-mtlp-9}:       [INCOMPLETE][8] -> [PASS][9]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-mtlp-9/igt@i915_module_load@load.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-mtlp-9/igt@i915_module_load@load.html
> 
>   * igt@i915_pm_rpm@module-reload:
>     - bat-dg2-11:         [FAIL][10] ([i915#12903]) -> [PASS][11]
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
> 
>   * igt@i915_selftest@live:
>     - bat-arlh-3:         [ABORT][12] -> [PASS][13]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arlh-3/igt@i915_selftest@live.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-arlh-3/igt@i915_selftest@live.html
> 
>   * igt@i915_selftest@live@workarounds:
>     - bat-arlh-3:         [ABORT][14] ([i915#12061]) -> [PASS][15]
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arlh-3/igt@i915_selftest@live@workarounds.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-arlh-3/igt@i915_selftest@live@workarounds.html
> 
>   * igt@kms_chamelium_edid@hdmi-edid-read:
>     - bat-dg2-13:         [DMESG-WARN][16] ([i915#12253]) -> [PASS][17]
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
> 
>   * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1:
>     - bat-apl-1:          [DMESG-WARN][18] -> [PASS][19] +1 other test pass
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.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#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
>   [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
>   [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
>   [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
>   [i915#12915]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12915
>   [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
>   [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
>   [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
>   [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
>   [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
>   [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
>   [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
>   [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
>   [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
>   [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
>   [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
>   [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
>   [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
>   [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
>   [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
>   [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_8121 -> IGTPW_12164
>   * Linux: CI_DRM_15725 -> CI_DRM_15726
> 
>   CI-20190529: 20190529
>   CI_DRM_15725: e46649e7764a9f6868ccbcba7b8b23b413303380 @ git://anongit.freedesktop.org/gfx-ci/linux
>   CI_DRM_15726: 3304ae3acb744c6ea5e8cef09b01d2d527d38715 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_12164: 12164
>   IGT_8121: 8121
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12164/index.html

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

* Re: [PATCH i-g-t v4 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args
  2024-11-21 15:15   ` Grzegorzek, Dominik
@ 2024-11-22  7:09     ` Zbigniew Kempczyński
  0 siblings, 0 replies; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-22  7:09 UTC (permalink / raw)
  To: Grzegorzek, Dominik; +Cc: igt-dev@lists.freedesktop.org

On Thu, Nov 21, 2024 at 04:15:18PM +0100, Grzegorzek, Dominik wrote:
> On Thu, 2024-11-21 at 13:33 +0100, Zbigniew Kempczyński wrote:
> > I've noticed shaders/pipelines have limitation to work on 16B
> > boundaries (due to SIMD16). So to play with different surface sizes
> > and offsets add W/H/X/Y switches.
> > 
> > There's no problem at all not all sizes/offsets are supported as we
> > would like to have, we use gpgpu fill to verify compute workload so
> > if we won't notice gpu hang that's fine.
> 
> This sentence sounds a bit unclear to me. May I ask you to rephrase that
> that paragraph in both xe and gem patches.

I meant gpgpu is used in i915_pipe_stress and x/y are passed to the
function. As I noticed geometry of filled area may not we want, unless
it is modulo 16 in x. But this is not big deal there, we just want to
exercise the gpu and keep it busy.

--
Zbigniew

> 
> Anyway it is:
> Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> > 
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> > ---
> >  tests/intel/gem_gpgpu_fill.c | 62 ++++++++++++++++++++++++++----------
> >  1 file changed, 46 insertions(+), 16 deletions(-)
> > 
> > diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
> > index 36c60e75f0..ec34e95844 100644
> > --- a/tests/intel/gem_gpgpu_fill.c
> > +++ b/tests/intel/gem_gpgpu_fill.c
> > @@ -68,6 +68,10 @@
> >  #define COLOR_4C	0x4c
> >  
> >  static bool dump_surface;
> > +static uint32_t surfwidth = WIDTH;
> > +static uint32_t surfheight = HEIGHT;
> > +static uint32_t start_x;
> > +static uint32_t start_y;
> >  
> >  typedef struct {
> >  	int drm_fd;
> > @@ -103,17 +107,20 @@ create_buf(data_t *data, int width, int height, uint8_t color, uint32_t region)
> >  	return buf;
> >  }
> >  
> > -static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
> > +static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color)
> >  {
> >  	uint8_t val;
> >  
> > -	val = ptr[y * WIDTH + x];
> > +	val = ptr[y * width + x];
> >  	igt_assert_f(val == color,
> >  		     "Expected 0x%02x, found 0x%02x at (%d,%d)\n",
> >  		     color, val, x, y);
> >  }
> >  
> > -static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
> > +static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region,
> > +		       uint32_t surf_width, uint32_t surf_height,
> > +		       uint32_t x, uint32_t y,
> > +		       uint32_t width, uint32_t height)
> >  {
> >  	struct intel_buf *buf;
> >  	uint8_t *ptr;
> > @@ -123,17 +130,17 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
> >  	ptr = gem_mmap__device_coherent(data->drm_fd, buf->handle, 0,
> >  					buf->surface[0].size, PROT_READ);
> >  
> > -	for (i = 0; i < WIDTH; i++)
> > -		for (j = 0; j < HEIGHT; j++)
> > -			buf_check(ptr, i, j, COLOR_88);
> > +	for (i = 0; i < surf_width; i++)
> > +		for (j = 0; j < surf_height; j++)
> > +			buf_check(ptr, surf_width, i, j, COLOR_88);
> >  
> >  	fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
> >  
> >  	if (dump_surface) {
> > -		for (j = 0; j < HEIGHT; j++) {
> > +		for (j = 0; j < surf_height; j++) {
> >  			igt_info("[%04x] ", j);
> > -			for (i = 0; i < WIDTH; i++) {
> > -				igt_info("%02x", ptr[j * HEIGHT + i]);
> > +			for (i = 0; i < surf_width; i++) {
> > +				igt_info("%02x", ptr[j * surf_height + i]);
> >  				if (i % 4 == 3)
> >  					igt_info(" ");
> >  			}
> > @@ -141,12 +148,13 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
> >  		}
> >  	}
> >  
> > -	for (i = 0; i < WIDTH; i++)
> > -		for (j = 0; j < HEIGHT; j++)
> > -			if (i < WIDTH / 2 && j < HEIGHT / 2)
> > -				buf_check(ptr, i, j, COLOR_4C);
> > +	for (i = 0; i < surf_width; i++)
> > +		for (j = 0; j < surf_height; j++)
> > +			if (i >= x && i < width + x &&
> > +			    j >= y && j < height + y)
> > +				buf_check(ptr, surf_width, i, j, COLOR_4C);
> >  			else
> > -				buf_check(ptr, i, j, COLOR_88);
> > +				buf_check(ptr, surf_height, i, j, COLOR_88);
> >  
> >  	munmap(ptr, buf->surface[0].size);
> >  }
> > @@ -157,6 +165,18 @@ static int opt_handler(int opt, int opt_index, void *data)
> >  	case 'd':
> >  		dump_surface = true;
> >  		break;
> > +	case 'W':
> > +		surfwidth = atoi(optarg);
> > +		break;
> > +	case 'H':
> > +		surfheight = atoi(optarg);
> > +		break;
> > +	case 'X':
> > +		start_x = atoi(optarg);
> > +		break;
> > +	case 'Y':
> > +		start_y = atoi(optarg);
> > +		break;
> >  	default:
> >  		return IGT_OPT_HANDLER_ERROR;
> >  	}
> > @@ -167,10 +187,14 @@ static int opt_handler(int opt, int opt_index, void *data)
> >  
> >  const char *help_str =
> >  	"  -d\tDump surface\n"
> > +	"  -W\tWidth (default 64)\n"
> > +	"  -H\tHeight (default 64)\n"
> > +	"  -X\tX start (aligned to 4)\n"
> > +	"  -Y\tY start (aligned to 1)\n"
> >  	;
> >  
> >  
> > -igt_main_args("d", NULL, help_str, opt_handler, NULL)
> > +igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
> >  {
> >  	data_t data = {0, };
> >  	igt_fillfunc_t fill_fn = NULL;
> > @@ -193,6 +217,8 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
> >  		region_set = get_memory_region_set(region_info,
> >  						   I915_SYSTEM_MEMORY,
> >  						   I915_DEVICE_MEMORY);
> > +
> > +		start_x = ALIGN(start_x, 16);
> >  	}
> >  
> >  	igt_subtest_with_dynamic("basic") {
> > @@ -203,7 +229,11 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
> >  			uint32_t id = igt_collection_get_value(region, 0);
> >  
> >  			igt_dynamic(name)
> > -				gpgpu_fill(&data, fill_fn, id);
> > +				gpgpu_fill(&data, fill_fn, id,
> > +					   surfwidth, surfheight,
> > +					   start_x, start_y,
> > +					   surfwidth / 2,
> > +					   surfheight / 2);
> >  
> >  			free(name);
> >  		}
> 

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

* Re: [PATCH i-g-t v4 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest
  2024-11-21 15:28   ` Grzegorzek, Dominik
@ 2024-11-22  7:12     ` Zbigniew Kempczyński
  0 siblings, 0 replies; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-22  7:12 UTC (permalink / raw)
  To: Grzegorzek, Dominik; +Cc: igt-dev@lists.freedesktop.org

On Thu, Nov 21, 2024 at 04:28:53PM +0100, Grzegorzek, Dominik wrote:
> On Thu, 2024-11-21 at 13:33 +0100, Zbigniew Kempczyński wrote:
> > Add subtest which verifies rectangle filled by pattern starts at
> > offset <x,y> == <16,16>.
> > 
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> > ---
> >  tests/intel/gem_gpgpu_fill.c | 15 +++++++++++++--
> >  1 file changed, 13 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
> > index ec34e95844..cfebc8f665 100644
> > --- a/tests/intel/gem_gpgpu_fill.c
> > +++ b/tests/intel/gem_gpgpu_fill.c
> > @@ -58,6 +58,10 @@
> >   * Feature: compute
> >   *
> >   * SUBTEST: basic
> > + * Description: run gpgpu fill
> > + *
> > + * SUBTEST: offset-16x16
> > + * Description: run gpgpu fill with <x,y> start position == <16,16>
> >   */
> >  
> >  #define WIDTH 64
> > @@ -239,9 +243,16 @@ igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
> >  		}
> >  	}
> >  
> > +	igt_subtest("offset-16x16") {
> > +		gpgpu_fill(&data, fill_fn, 0,
> > +			   surfwidth, surfheight,
> > +			   16, 16,
> > +			   surfwidth / 2,
> > +			   surfheight / 2);
> > +	}
> > +
> >  	igt_fixture {
> > -		igt_collection_destroy(region_set);
> > -		free(region_info);
> Why removing this? 

This is a mistake, I've applied xe version here (I just changed a patch
and applied here so incidentally I missed that). Thanks for spotting
this. I'm going to send v6 with this fixed.

--
Zbigniew

> 
> Regards, 
> Dominik
> >  		buf_ops_destroy(data.bops);
> > +		drm_close_driver(data.drm_fd);
> >  	}
> >  }
> 

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

* ✗ Xe.CI.Full: failure for GPGPU fill improvements (rev5)
  2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
                   ` (10 preceding siblings ...)
  2024-11-21 23:25 ` ✗ Xe.CI.Full: failure for GPGPU fill improvements (rev4) Patchwork
@ 2024-11-22  9:12 ` Patchwork
  11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-11-22  9:12 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: GPGPU fill improvements (rev5)
URL   : https://patchwork.freedesktop.org/series/141352/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8121_full -> XEIGTPW_12164_full
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_flip@2x-flip-vs-panning@bd-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][3] -> [DMESG-WARN][4] +10 other tests dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_flip@2x-flip-vs-panning@bd-hdmi-a6-dp4.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_flip@2x-flip-vs-panning@bd-hdmi-a6-dp4.html

  * igt@kms_flip@blocking-wf_vblank@d-dp4:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][5] +2 other tests dmesg-warn
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_flip@blocking-wf_vblank@d-dp4.html

  * igt@kms_pipe_crc_basic@nonblocking-crc:
    - shard-bmg:          [PASS][6] -> [DMESG-WARN][7] +2 other tests dmesg-warn
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_pipe_crc_basic@nonblocking-crc.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_pipe_crc_basic@nonblocking-crc.html

  * igt@kms_universal_plane@universal-plane-functional:
    - shard-dg2-set2:     [PASS][8] -> [FAIL][9] +3 other tests fail
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_universal_plane@universal-plane-functional.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_universal_plane@universal-plane-functional.html

  * igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01:
    - shard-bmg:          [PASS][10] -> [INCOMPLETE][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01.html

  * igt@xe_module_load@many-reload:
    - shard-bmg:          [PASS][12] -> [FAIL][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_module_load@many-reload.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@xe_module_load@many-reload.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-dg2-set2:     [SKIP][14] ([Intel XE#2136]) -> [DMESG-WARN][15] +2 other tests dmesg-warn
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_flip@blocking-wf_vblank:
    - shard-dg2-set2:     [SKIP][16] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][17]
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_flip@blocking-wf_vblank.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_flip@blocking-wf_vblank.html

  * igt@kms_vblank@ts-continuation-dpms-rpm:
    - shard-bmg:          [DMESG-WARN][18] ([Intel XE#1727] / [Intel XE#3468]) -> [INCOMPLETE][19] +1 other test incomplete
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-rpm.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm.html

  * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
    - shard-bmg:          [FAIL][20] ([Intel XE#3499]) -> [FAIL][21] +2 other tests fail
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html

  * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
    - shard-lnl:          [FAIL][22] ([Intel XE#3499]) -> [FAIL][23] +4 other tests fail
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html

  * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
    - shard-dg2-set2:     [TIMEOUT][24] ([Intel XE#2961] / [Intel XE#3191]) -> [INCOMPLETE][25] +1 other test incomplete
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html

  
New tests
---------

  New tests have been introduced between XEIGT_8121_full and XEIGTPW_12164_full:

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

  * igt@xe_gpgpu_fill@offset-16x16:
    - Statuses : 2 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.01] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_getclient:
    - shard-dg2-set2:     [PASS][26] -> [SKIP][27] ([Intel XE#2423])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_getclient.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@core_getclient.html

  * igt@core_getversion@basic:
    - shard-dg2-set2:     [PASS][28] -> [FAIL][29] ([Intel XE#3440])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@core_getversion@basic.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@core_getversion@basic.html

  * igt@core_hotunplug@hotunbind-rebind:
    - shard-dg2-set2:     [PASS][30] -> [SKIP][31] ([Intel XE#1885])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@core_hotunplug@hotunbind-rebind.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@core_hotunplug@hotunbind-rebind.html

  * igt@core_setmaster@master-drop-set-shared-fd:
    - shard-dg2-set2:     [PASS][32] -> [SKIP][33] ([Intel XE#3453])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@core_setmaster@master-drop-set-shared-fd.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@core_setmaster@master-drop-set-shared-fd.html

  * igt@fbdev@eof:
    - shard-dg2-set2:     [PASS][34] -> [SKIP][35] ([Intel XE#2134]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@fbdev@eof.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@fbdev@eof.html

  * igt@fbdev@info:
    - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#2134])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@fbdev@info.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-dg2-set2:     [PASS][37] -> [SKIP][38] ([Intel XE#2423] / [i915#2575]) +109 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
    - shard-lnl:          [PASS][39] -> [FAIL][40] ([Intel XE#1426]) +1 other test fail
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
    - shard-bmg:          [PASS][41] -> [DMESG-FAIL][42] ([Intel XE#3468]) +17 other tests dmesg-fail
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [FAIL][43] ([Intel XE#3162])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2327])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#1407])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-1/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#1124]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#1124])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html

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

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#367])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [PASS][51] -> [SKIP][52] ([Intel XE#2314] / [Intel XE#2894])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][53] -> [SKIP][54] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2887])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#787]) +125 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#2887])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#2136]) +16 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html

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

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][60] ([Intel XE#2907])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][61] -> [INCOMPLETE][62] ([Intel XE#1727] / [Intel XE#2692])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#455] / [Intel XE#787]) +18 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#1152]) +3 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#373]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_chamelium_edid@hdmi-edid-read.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2252]) +2 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium_frames@hdmi-crc-single:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#373]) +2 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-1/igt@kms_chamelium_frames@hdmi-crc-single.html

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

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#307])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@srm@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][70] ([Intel XE#1178])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html

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

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-lnl:          NOTRUN -> [SKIP][72] ([Intel XE#2321])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2321])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-64x21:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1424])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-1/igt@kms_cursor_crc@cursor-random-64x21.html

  * igt@kms_cursor_crc@cursor-rapid-movement-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2320]) +3 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [PASS][76] -> [INCOMPLETE][77] ([Intel XE#3468]) +1 other test incomplete
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html

  * igt@kms_cursor_edge_walk@64x64-top-bottom:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][78] ([Intel XE#3468]) +7 other tests dmesg-warn
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_cursor_edge_walk@64x64-top-bottom.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-bmg:          [PASS][79] -> [SKIP][80] ([Intel XE#2291]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][81] ([Intel XE#323])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-bmg:          [PASS][82] -> [DMESG-WARN][83] ([Intel XE#3468] / [Intel XE#877])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-bmg:          [PASS][84] -> [DMESG-WARN][85] ([Intel XE#877])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#309]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy:
    - shard-lnl:          [PASS][87] -> [FAIL][88] ([Intel XE#1475])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-4/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-8/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html

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

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][90] ([i915#3804])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#2244])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-5/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-bmg:          [PASS][92] -> [SKIP][93] ([Intel XE#2316]) +7 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
    - shard-bmg:          [PASS][94] -> [FAIL][95] ([Intel XE#3486])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
    - shard-bmg:          [PASS][96] -> [FAIL][97] ([Intel XE#3321] / [Intel XE#3487])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [PASS][98] -> [FAIL][99] ([Intel XE#301]) +2 other tests fail
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp4:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][100] ([Intel XE#1727] / [Intel XE#3468])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][101] ([Intel XE#3468])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-FAIL][102] ([Intel XE#3468]) +1 other test dmesg-fail
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4:
    - shard-dg2-set2:     NOTRUN -> [DMESG-FAIL][103] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-fail
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html

  * igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
    - shard-bmg:          [PASS][104] -> [DMESG-FAIL][105] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
    - shard-bmg:          [PASS][106] -> [DMESG-WARN][107] ([Intel XE#3468]) +98 other tests dmesg-warn
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-dg2-set2:     [PASS][108] -> [SKIP][109] ([Intel XE#2136]) +39 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#651]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#2311]) +4 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [FAIL][112] ([Intel XE#2333]) +4 other tests fail
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#656]) +2 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#2312])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][115] ([Intel XE#2313])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][116] ([Intel XE#2934])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][117] ([Intel XE#2927])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html

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

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
    - shard-dg2-set2:     NOTRUN -> [SKIP][119] ([Intel XE#2423] / [i915#2575]) +12 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html

  * igt@kms_plane@pixel-format-source-clamping:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][120] ([Intel XE#2566] / [Intel XE#3468])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_plane@pixel-format-source-clamping.html

  * igt@kms_plane_cursor@overlay@pipe-a-dp-2-size-64:
    - shard-bmg:          [PASS][121] -> [DMESG-WARN][122] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_plane_cursor@overlay@pipe-a-dp-2-size-64.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_plane_cursor@overlay@pipe-a-dp-2-size-64.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
    - shard-dg2-set2:     NOTRUN -> [SKIP][123] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html

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

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [PASS][125] -> [FAIL][126] ([Intel XE#718])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#2392])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2-set2:     [PASS][128] -> [DMESG-WARN][129] ([Intel XE#3468]) +3 other tests dmesg-warn
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-dg2-set2:     [PASS][130] -> [SKIP][131] ([Intel XE#2446]) +1 other test skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_pm_rpm@universal-planes-dpms.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#2893]) +1 other test skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
    - shard-bmg:          NOTRUN -> [SKIP][133] ([Intel XE#1489]) +2 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html

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

  * igt@kms_psr@fbc-pr-primary-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][135] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_psr@fbc-pr-primary-render.html

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

  * igt@kms_psr@psr2-sprite-blt@edp-1:
    - shard-lnl:          [PASS][137] -> [FAIL][138] ([Intel XE#3490]) +1 other test fail
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-2/igt@kms_psr@psr2-sprite-blt@edp-1.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-4/igt@kms_psr@psr2-sprite-blt@edp-1.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#3414]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-bmg:          NOTRUN -> [SKIP][140] ([Intel XE#3414]) +1 other test skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_scaling_modes@scaling-mode-none:
    - shard-bmg:          NOTRUN -> [SKIP][141] ([Intel XE#2413])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-none.html
    - shard-lnl:          NOTRUN -> [SKIP][142] ([Intel XE#2413] / [Intel XE#374])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-7/igt@kms_scaling_modes@scaling-mode-none.html

  * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][143] ([Intel XE#374]) +2 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-7/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
    - shard-lnl:          [PASS][144] -> [FAIL][145] ([Intel XE#899]) +1 other test fail
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][146] -> [FAIL][147] ([Intel XE#2159]) +1 other test fail
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_ccs@suspend-resume:
    - shard-bmg:          [PASS][148] -> [INCOMPLETE][149] ([Intel XE#1727] / [Intel XE#3468])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_ccs@suspend-resume.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@xe_ccs@suspend-resume.html

  * igt@xe_eudebug@attach-debug-metadata:
    - shard-lnl:          NOTRUN -> [SKIP][150] ([Intel XE#2905]) +2 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-8/igt@xe_eudebug@attach-debug-metadata.html

  * igt@xe_eudebug@basic-read-event:
    - shard-bmg:          NOTRUN -> [SKIP][151] ([Intel XE#2905]) +3 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@xe_eudebug@basic-read-event.html

  * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram:
    - shard-dg2-set2:     NOTRUN -> [SKIP][152] ([Intel XE#2905]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html

  * igt@xe_evict@evict-small-cm:
    - shard-lnl:          NOTRUN -> [SKIP][153] ([Intel XE#688]) +1 other test skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-4/igt@xe_evict@evict-small-cm.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
    - shard-dg2-set2:     [PASS][154] -> [SKIP][155] ([Intel XE#1130]) +198 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html

  * igt@xe_exec_balancer@once-parallel-userptr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][156] ([Intel XE#1130]) +20 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@xe_exec_balancer@once-parallel-userptr.html

  * igt@xe_exec_balancer@twice-cm-parallel-userptr:
    - shard-bmg:          [PASS][157] -> [DMESG-WARN][158] ([Intel XE#1727]) +2 other tests dmesg-warn
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_exec_balancer@twice-cm-parallel-userptr.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@xe_exec_balancer@twice-cm-parallel-userptr.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
    - shard-bmg:          NOTRUN -> [SKIP][159] ([Intel XE#2322]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html

  * igt@xe_exec_fault_mode@many-execqueues-userptr-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][160] ([Intel XE#288]) +1 other test skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-userptr-prefetch.html

  * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
    - shard-lnl:          [PASS][161] -> [DMESG-FAIL][162] ([Intel XE#2687] / [Intel XE#3371])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html

  * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
    - shard-bmg:          [PASS][163] -> [DMESG-WARN][164] ([Intel XE#3371])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
    - shard-bmg:          [PASS][165] -> [DMESG-WARN][166] ([Intel XE#3343])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
    - shard-bmg:          [PASS][167] -> [DMESG-WARN][168] ([Intel XE#3467]) +1 other test dmesg-warn
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
    - shard-bmg:          [PASS][169] -> [DMESG-WARN][170] ([Intel XE#3343] / [Intel XE#3468]) +1 other test dmesg-warn
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html

  * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][171] ([Intel XE#3467] / [Intel XE#3468])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html

  * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][172] ([Intel XE#3467])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - shard-dg2-set2:     [PASS][173] -> [SKIP][174] ([Intel XE#2229]) +1 other test skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-dg2-set2:     NOTRUN -> [SKIP][175] ([Intel XE#455]) +5 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_module_load@force-load:
    - shard-bmg:          NOTRUN -> [SKIP][176] ([Intel XE#2457])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@xe_module_load@force-load.html

  * igt@xe_module_load@many-reload:
    - shard-dg2-set2:     [PASS][177] -> [FAIL][178] ([Intel XE#3546])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_module_load@many-reload.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@xe_module_load@many-reload.html

  * igt@xe_oa@unprivileged-single-ctx-counters:
    - shard-bmg:          NOTRUN -> [SKIP][179] ([Intel XE#2248])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@xe_oa@unprivileged-single-ctx-counters.html

  * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> [FAIL][180] ([Intel XE#1173])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@s4-exec-after:
    - shard-lnl:          [PASS][181] -> [ABORT][182] ([Intel XE#1358] / [Intel XE#1607])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@xe_pm@s4-exec-after.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-2/igt@xe_pm@s4-exec-after.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-lnl:          [PASS][183] -> [ABORT][184] ([Intel XE#1794])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-lnl:          NOTRUN -> [SKIP][185] ([Intel XE#3342])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@xe_sriov_flr@flr-vf1-clear.html
    - shard-bmg:          NOTRUN -> [SKIP][186] ([Intel XE#3342])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html

  
#### Possible fixes ####

  * igt@core_hotunplug@hotrebind-lateclose:
    - shard-lnl:          [DMESG-WARN][187] -> [PASS][188]
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-3/igt@core_hotunplug@hotrebind-lateclose.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@core_hotunplug@hotrebind-lateclose.html

  * igt@core_hotunplug@unbind-rebind:
    - shard-dg2-set2:     [SKIP][189] ([Intel XE#1885]) -> [PASS][190]
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@core_hotunplug@unbind-rebind.html
    - shard-bmg:          [INCOMPLETE][191] ([Intel XE#3468]) -> [PASS][192]
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@core_hotunplug@unbind-rebind.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@core_hotunplug@unbind-rebind.html

  * igt@core_hotunplug@unplug-rescan:
    - shard-bmg:          [DMESG-WARN][193] ([Intel XE#3468]) -> [PASS][194] +42 other tests pass
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@core_hotunplug@unplug-rescan.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@core_hotunplug@unplug-rescan.html

  * igt@fbdev@read:
    - shard-dg2-set2:     [SKIP][195] ([Intel XE#2134]) -> [PASS][196] +1 other test pass
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@fbdev@read.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@fbdev@read.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
    - shard-lnl:          [FAIL][197] ([Intel XE#911]) -> [PASS][198] +3 other tests pass
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-bmg:          [DMESG-WARN][199] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][200]
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-dg2-set2:     [SKIP][201] ([Intel XE#2423] / [i915#2575]) -> [PASS][202] +96 other tests pass
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-bmg:          [DMESG-WARN][203] -> [PASS][204]
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-bmg:          [SKIP][205] ([Intel XE#2291]) -> [PASS][206] +3 other tests pass
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [SKIP][207] ([Intel XE#3009]) -> [PASS][208]
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_dp_aux_dev.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@kms_dp_aux_dev.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [SKIP][209] ([Intel XE#3070]) -> [PASS][210]
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][211] ([Intel XE#2882]) -> [PASS][212]
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-bmg:          [SKIP][213] ([Intel XE#2316]) -> [PASS][214] +6 other tests pass
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
    - shard-lnl:          [FAIL][215] ([Intel XE#886]) -> [PASS][216] +1 other test pass
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-dg2-set2:     [DMESG-WARN][217] ([Intel XE#1727]) -> [PASS][218] +2 other tests pass
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          [INCOMPLETE][219] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][220] +3 other tests pass
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-valid-mode:
    - shard-dg2-set2:     [INCOMPLETE][221] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][222] +1 other test pass
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-valid-mode.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][223] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][224] +15 other tests pass
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
    - shard-dg2-set2:     [SKIP][225] ([Intel XE#2136]) -> [PASS][226] +23 other tests pass
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][227] ([Intel XE#1503]) -> [PASS][228]
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@kms_hdr@invalid-hdr.html

  * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256:
    - shard-bmg:          [DMESG-FAIL][229] -> [PASS][230]
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html

  * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:
    - shard-bmg:          [DMESG-FAIL][231] ([Intel XE#3468]) -> [PASS][232] +7 other tests pass
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html

  * igt@kms_pm_rpm@i2c:
    - shard-dg2-set2:     [SKIP][233] ([Intel XE#2446]) -> [PASS][234] +1 other test pass
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_pm_rpm@i2c.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@legacy-planes-dpms:
    - shard-lnl:          [DMESG-WARN][235] ([Intel XE#3184]) -> [PASS][236] +2 other tests pass
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-1/igt@kms_pm_rpm@legacy-planes-dpms.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-bmg:          [DMESG-WARN][237] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][238]
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_pm_rpm@system-suspend-modeset.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_setmode@basic@pipe-b-hdmi-a-3:
    - shard-bmg:          [FAIL][239] ([Intel XE#3559]) -> [PASS][240] +1 other test pass
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-bmg:          [SKIP][241] ([Intel XE#1435]) -> [PASS][242]
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-bmg:          [INCOMPLETE][243] ([Intel XE#1727]) -> [PASS][244]
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
    - shard-bmg:          [DMESG-WARN][245] ([Intel XE#3371] / [Intel XE#3515]) -> [PASS][246]
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html

  * igt@xe_exercise_blt@fast-copy:
    - shard-bmg:          [INCOMPLETE][247] -> [PASS][248]
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_exercise_blt@fast-copy.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@xe_exercise_blt@fast-copy.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
    - shard-bmg:          [DMESG-WARN][249] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][250]
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
    - shard-bmg:          [DMESG-WARN][251] ([Intel XE#3343]) -> [PASS][252]
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html

  * igt@xe_module_load@reload-no-display:
    - shard-bmg:          [DMESG-WARN][253] ([Intel XE#3467]) -> [PASS][254] +1 other test pass
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_module_load@reload-no-display.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@xe_module_load@reload-no-display.html
    - shard-dg2-set2:     [DMESG-WARN][255] ([Intel XE#3467]) -> [PASS][256] +1 other test pass
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_module_load@reload-no-display.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@xe_module_load@reload-no-display.html

  * igt@xe_oa@oa-regs-whitelisted@ccs-0:
    - shard-lnl:          [FAIL][257] ([Intel XE#2514]) -> [PASS][258] +1 other test pass
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
    - shard-bmg:          [FAIL][259] ([Intel XE#2514]) -> [PASS][260] +1 other test pass
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted@ccs-0.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-bmg:          [DMESG-WARN][261] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][262]
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_pm@s3-vm-bind-unbind-all.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s4-basic:
    - shard-lnl:          [ABORT][263] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][264]
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-2/igt@xe_pm@s4-basic.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-lnl-3/igt@xe_pm@s4-basic.html

  * igt@xe_pm@s4-mocs:
    - shard-dg2-set2:     [DMESG-WARN][265] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][266]
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s4-mocs.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@xe_pm@s4-mocs.html

  * igt@xe_vm@munmap-style-unbind-userptr-inval-many-either-side-partial:
    - shard-dg2-set2:     [SKIP][267] ([Intel XE#1130]) -> [PASS][268] +172 other tests pass
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_vm@munmap-style-unbind-userptr-inval-many-either-side-partial.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@xe_vm@munmap-style-unbind-userptr-inval-many-either-side-partial.html

  
#### Warnings ####

  * igt@core_hotunplug@hotrebind-lateclose:
    - shard-dg2-set2:     [DMESG-WARN][269] ([Intel XE#3468]) -> [SKIP][270] ([Intel XE#1885])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_hotunplug@hotrebind-lateclose.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@core_hotunplug@hotrebind-lateclose.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2-set2:     [SKIP][271] ([Intel XE#2423] / [i915#2575]) -> [SKIP][272] ([Intel XE#623])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
    - shard-bmg:          [FAIL][273] ([Intel XE#827]) -> [DMESG-FAIL][274] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][275] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][276] ([Intel XE#316]) +1 other test skip
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][277] ([Intel XE#2136]) -> [SKIP][278] ([Intel XE#316]) +3 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][279] ([Intel XE#316]) -> [SKIP][280] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][281] ([Intel XE#316]) -> [SKIP][282] ([Intel XE#2136]) +2 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][283] ([Intel XE#2136]) -> [SKIP][284] ([Intel XE#610])
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][285] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][286] ([Intel XE#1124]) +3 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][287] ([Intel XE#1124]) -> [SKIP][288] ([Intel XE#2136]) +8 other tests skip
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][289] ([Intel XE#1124]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-dg2-set2:     [SKIP][291] ([Intel XE#2136]) -> [SKIP][292] ([Intel XE#1124]) +8 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     [SKIP][293] ([Intel XE#619]) -> [SKIP][294] ([Intel XE#2136] / [Intel XE#2351])
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][295] ([Intel XE#2423] / [i915#2575]) -> [SKIP][296] ([Intel XE#2191])
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][297] ([Intel XE#2191]) -> [SKIP][298] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][299] ([Intel XE#367]) -> [SKIP][300] ([Intel XE#2423] / [i915#2575]) +5 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][301] ([Intel XE#2423] / [i915#2575]) -> [SKIP][302] ([Intel XE#367]) +3 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][303] ([Intel XE#2136]) -> [SKIP][304] ([Intel XE#2907]) +2 other tests skip
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs:
    - shard-dg2-set2:     [SKIP][305] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][306] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [FAIL][307] ([Intel XE#616]) -> [SKIP][308] ([Intel XE#2136])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][309] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][310] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][311] ([Intel XE#2907]) -> [SKIP][312] ([Intel XE#2136]) +1 other test skip
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
    - shard-dg2-set2:     [SKIP][313] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][314] ([Intel XE#2136]) +14 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#455] / [Intel XE#787]) +14 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     [SKIP][317] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][318] ([Intel XE#314])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-dg2-set2:     [SKIP][319] ([Intel XE#2423] / [i915#2575]) -> [SKIP][320] ([Intel XE#306]) +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     [SKIP][321] ([Intel XE#306]) -> [SKIP][322] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_chamelium_color@gamma.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][323] ([Intel XE#373]) -> [SKIP][324] ([Intel XE#2423] / [i915#2575]) +14 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-dg2-set2:     [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [SKIP][326] ([Intel XE#373]) +13 other tests skip
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [FAIL][327] ([Intel XE#1178]) -> [SKIP][328] ([Intel XE#2341])
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_content_protection@atomic.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2-set2:     [SKIP][329] ([Intel XE#307]) -> [SKIP][330] ([Intel XE#2423] / [i915#2575])
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-1.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2-set2:     [SKIP][331] ([Intel XE#2423] / [i915#2575]) -> [SKIP][332] ([Intel XE#307])
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@srm:
    - shard-dg2-set2:     [FAIL][333] ([Intel XE#1178]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_content_protection@srm.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_content_protection@srm.html
    - shard-bmg:          [SKIP][335] ([Intel XE#2341]) -> [FAIL][336] ([Intel XE#1178])
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_content_protection@srm.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [SKIP][337] ([Intel XE#2341]) -> [FAIL][338] ([Intel XE#1188])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_content_protection@uevent.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-dg2-set2:     [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [SKIP][340] ([Intel XE#308]) +1 other test skip
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     [SKIP][341] ([Intel XE#308]) -> [SKIP][342] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-dg2-set2:     [SKIP][343] ([Intel XE#2423] / [i915#2575]) -> [SKIP][344] ([Intel XE#455]) +11 other tests skip
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2-set2:     [SKIP][345] ([Intel XE#455]) -> [SKIP][346] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-32x10.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-dg2-set2:     [SKIP][347] ([Intel XE#323]) -> [SKIP][348] ([Intel XE#2423] / [i915#2575])
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2-set2:     [SKIP][349] ([Intel XE#2423] / [i915#2575]) -> [SKIP][350] ([Intel XE#323])
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2-set2:     [SKIP][351] ([Intel XE#455]) -> [SKIP][352] ([Intel XE#2136]) +4 other tests skip
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_dsc@dsc-fractional-bpp.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2-set2:     [SKIP][353] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][354] ([Intel XE#455]) +3 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     [SKIP][355] ([Intel XE#2136]) -> [SKIP][356] ([Intel XE#776])
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_fbcon_fbt@psr.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2-set2:     [SKIP][357] ([Intel XE#776]) -> [SKIP][358] ([Intel XE#2136])
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     [SKIP][359] ([Intel XE#1138]) -> [SKIP][360] ([Intel XE#2423] / [i915#2575])
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_feature_discovery@display-4x.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg2-set2:     [SKIP][361] ([Intel XE#1137]) -> [SKIP][362] ([Intel XE#2423] / [i915#2575])
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_feature_discovery@dp-mst.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][363] ([Intel XE#1135]) -> [SKIP][364] ([Intel XE#2423] / [i915#2575])
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_feature_discovery@psr1.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [SKIP][365] ([Intel XE#2423] / [i915#2575]) -> [DMESG-FAIL][366] ([Intel XE#1727] / [Intel XE#3468])
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-dg2-set2:     [SKIP][367] ([Intel XE#2136]) -> [SKIP][368] ([Intel XE#455]) +4 other tests skip
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-dg2-set2:     [SKIP][369] ([Intel XE#455]) -> [SKIP][370] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][371] ([Intel XE#651]) -> [SKIP][372] ([Intel XE#2136]) +27 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][373] ([Intel XE#2136]) -> [SKIP][374] ([Intel XE#651]) +19 other tests skip
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-dg2-set2:     [SKIP][375] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][376] ([Intel XE#651]) +15 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-rte:
    - shard-bmg:          [FAIL][377] ([Intel XE#2333]) -> [INCOMPLETE][378] ([Intel XE#1727] / [Intel XE#3468])
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [FAIL][379] ([Intel XE#2333]) -> [SKIP][380] ([Intel XE#2312]) +6 other tests skip
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][381] ([Intel XE#2312]) -> [FAIL][382] ([Intel XE#2333]) +7 other tests fail
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
    - shard-dg2-set2:     [INCOMPLETE][383] ([Intel XE#1727]) -> [SKIP][384] ([Intel XE#2136])
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
    - shard-bmg:          [DMESG-FAIL][385] ([Intel XE#3468]) -> [SKIP][386] ([Intel XE#2312])
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [DMESG-FAIL][387] ([Intel XE#3468]) -> [FAIL][388] ([Intel XE#2333]) +3 other tests fail
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-linear:
    - shard-bmg:          [FAIL][389] ([Intel XE#2333]) -> [DMESG-FAIL][390] ([Intel XE#3468]) +6 other tests dmesg-fail
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][391] ([Intel XE#2311]) -> [SKIP][392] ([Intel XE#2312]) +16 other tests skip
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][393] ([Intel XE#2312]) -> [SKIP][394] ([Intel XE#2311]) +16 other tests skip
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][395] ([Intel XE#651]) -> [SKIP][396] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
    - shard-dg2-set2:     [SKIP][397] ([Intel XE#653]) -> [SKIP][398] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     [SKIP][399] ([Intel XE#2136]) -> [SKIP][400] ([Intel XE#1158])
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2-set2:     [SKIP][401] ([Intel XE#653]) -> [SKIP][402] ([Intel XE#2136]) +26 other tests skip
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][403] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][404] ([Intel XE#653]) +11 other tests skip
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][405] ([Intel XE#2312]) -> [SKIP][406] ([Intel XE#2313]) +11 other tests skip
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][407] ([Intel XE#2313]) -> [SKIP][408] ([Intel XE#2312]) +14 other tests skip
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-dg2-set2:     [SKIP][409] ([Intel XE#2136]) -> [SKIP][410] ([Intel XE#653]) +24 other tests skip
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-suspend.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-dg2-set2:     [SKIP][411] ([Intel XE#346]) -> [SKIP][412] ([Intel XE#2136])
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-dg2-set2:     [SKIP][413] ([Intel XE#2136]) -> [SKIP][414] ([Intel XE#2927])
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2-set2:     [SKIP][415] ([Intel XE#2423] / [i915#2575]) -> [SKIP][416] ([Intel XE#356])
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_cursor@overlay:
    - shard-dg2-set2:     [FAIL][417] ([Intel XE#616]) -> [SKIP][418] ([Intel XE#2423] / [i915#2575])
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_plane_cursor@overlay.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_plane_cursor@overlay.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25:
    - shard-dg2-set2:     [SKIP][419] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][420] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][421] ([Intel XE#2423] / [i915#2575]) -> [SKIP][422] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     [SKIP][423] ([Intel XE#870]) -> [SKIP][424] ([Intel XE#2136])
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2-set2:     [SKIP][425] ([Intel XE#2938]) -> [SKIP][426] ([Intel XE#2136])
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_pm_backlight@brightness-with-dpms.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2-set2:     [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#3309])
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     [SKIP][429] ([Intel XE#1129]) -> [SKIP][430] ([Intel XE#2136] / [Intel XE#2351])
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2-set2:     [SKIP][431] ([Intel XE#2446]) -> [DMESG-WARN][432] ([Intel XE#1727] / [Intel XE#3468])
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_pm_rpm@dpms-lpsp.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-stress-extra-wait:
    - shard-dg2-set2:     [DMESG-WARN][433] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][434] ([Intel XE#2446])
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_pm_rpm@modeset-stress-extra-wait.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_pm_rpm@modeset-stress-extra-wait.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-dg2-set2:     [ABORT][435] ([Intel XE#3468]) -> [SKIP][436] ([Intel XE#2446])
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_pm_rpm@system-suspend-modeset.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     [SKIP][437] ([Intel XE#1489]) -> [SKIP][438] ([Intel XE#2136]) +13 other tests skip
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     [SKIP][439] ([Intel XE#2136]) -> [SKIP][440] ([Intel XE#1489]) +10 other tests skip
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-pr-sprite-plane-onoff:
    - shard-dg2-set2:     [SKIP][441] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][442] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-dg2-set2:     [SKIP][443] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][444] ([Intel XE#2136]) +10 other tests skip
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-blt.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@pr-primary-page-flip:
    - shard-dg2-set2:     [SKIP][447] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][448] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr@pr-primary-page-flip.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_psr@pr-primary-page-flip.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-dg2-set2:     [SKIP][449] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][450] ([Intel XE#2351])
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_psr@psr-primary-page-flip.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][451] ([Intel XE#2423] / [i915#2575]) -> [SKIP][452] ([Intel XE#1127]) +1 other test skip
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-dg2-set2:     [SKIP][453] ([Intel XE#3414]) -> [SKIP][454] ([Intel XE#2423] / [i915#2575])
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][455] ([Intel XE#2426]) -> [FAIL][456] ([Intel XE#1729])
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
    - shard-dg2-set2:     [SKIP][457] ([Intel XE#362]) -> [SKIP][458] ([Intel XE#2423] / [i915#2575])
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     [SKIP][459] ([Intel XE#2423] / [i915#2575]) -> [SKIP][460] ([Intel XE#330])
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@lobf:
    - shard-dg2-set2:     [SKIP][461] ([Intel XE#2168]) -> [SKIP][462] ([Intel XE#2423] / [i915#2575])
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_vrr@lobf.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@kms_vrr@lobf.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-dg2-set2:     [SKIP][463] ([Intel XE#2423] / [i915#2575]) -> [SKIP][464] ([Intel XE#756])
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_writeback@writeback-invalid-parameters.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2-set2:     [SKIP][465] ([Intel XE#2423] / [i915#2575]) -> [SKIP][466] ([Intel XE#1091] / [Intel XE#2849])
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-off.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_compute_preempt@compute-preempt:
    - shard-dg2-set2:     [SKIP][467] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][468] ([Intel XE#1130])
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-dg2-set2:     [SKIP][469] ([Intel XE#1130]) -> [SKIP][470] ([Intel XE#1123])
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][471] ([Intel XE#1123]) -> [SKIP][472] ([Intel XE#1130])
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_eudebug@basic-client-th:
    - shard-dg2-set2:     [SKIP][473] ([Intel XE#1130]) -> [SKIP][474] ([Intel XE#2905]) +11 other tests skip
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_eudebug@basic-client-th.html
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@xe_eudebug@basic-client-th.html

  * igt@xe_eudebug@basic-close:
    - shard-dg2-set2:     [SKIP][475] ([Intel XE#2905]) -> [SKIP][476] ([Intel XE#1130]) +10 other tests skip
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_eudebug@basic-close.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@xe_eudebug@basic-close.html

  * igt@xe_evict@evict-beng-mixed-many-threads-large:
    - shard-bmg:          [TIMEOUT][477] ([Intel XE#1473]) -> [INCOMPLETE][478] ([Intel XE#1473])
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-large.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html

  * igt@xe_evict@evict-large-multi-vm-cm:
    - shard-dg2-set2:     [FAIL][479] ([Intel XE#1600]) -> [SKIP][480] ([Intel XE#1130])
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_evict@evict-large-multi-vm-cm.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html

  * igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate:
    - shard-dg2-set2:     [DMESG-WARN][481] ([Intel XE#1727]) -> [SKIP][482] ([Intel XE#1130])
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate.html

  * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
    - shard-dg2-set2:     [SKIP][483] ([Intel XE#288]) -> [SKIP][484] ([Intel XE#1130]) +33 other tests skip
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     [SKIP][485] ([Intel XE#1130]) -> [SKIP][486] ([Intel XE#288]) +32 other tests skip
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate:
    - shard-dg2-set2:     [SKIP][487] ([Intel XE#1130]) -> [DMESG-FAIL][488] ([Intel XE#3371])
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html

  * igt@xe_exec_threads@threads-hang-fd-userptr-rebind:
    - shard-dg2-set2:     [SKIP][489] ([Intel XE#1130]) -> [DMESG-WARN][490] ([Intel XE#358])
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-bmg:          [DMESG-WARN][491] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][492] ([Intel XE#3467])
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
    - shard-dg2-set2:     [SKIP][493] ([Intel XE#1130]) -> [DMESG-WARN][494] ([Intel XE#3343]) +1 other test dmesg-warn
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
    - shard-dg2-set2:     [DMESG-WARN][495] ([Intel XE#1727] / [Intel XE#3343]) -> [SKIP][496] ([Intel XE#1130])
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
    - shard-dg2-set2:     [DMESG-WARN][497] ([Intel XE#3343]) -> [SKIP][498] ([Intel XE#1130])
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
    - shard-dg2-set2:     [DMESG-WARN][499] ([Intel XE#3467]) -> [SKIP][500] ([Intel XE#1130])
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html

  * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
    - shard-dg2-set2:     [SKIP][501] ([Intel XE#1130]) -> [DMESG-WARN][502] ([Intel XE#3467]) +2 other tests dmesg-warn
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html

  * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
    - shard-bmg:          [DMESG-FAIL][503] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-FAIL][504] ([Intel XE#3467])
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html

  * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
    - shard-bmg:          [DMESG-WARN][505] ([Intel XE#3521]) -> [DMESG-WARN][506] ([Intel XE#3467] / [Intel XE#3468])
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-bmg:          [SKIP][507] ([Intel XE#1192]) -> [SKIP][508] ([Intel XE#2833])
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_oa@invalid-oa-format-id:
    - shard-dg2-set2:     [SKIP][509] ([Intel XE#1130]) -> [SKIP][510] ([Intel XE#3573]) +6 other tests skip
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_oa@invalid-oa-format-id.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@xe_oa@invalid-oa-format-id.html

  * igt@xe_oa@invalid-remove-userspace-config:
    - shard-dg2-set2:     [SKIP][511] ([Intel XE#3573]) -> [SKIP][512] ([Intel XE#1130]) +7 other tests skip
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_oa@invalid-remove-userspace-config.html
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@xe_oa@invalid-remove-userspace-config.html

  * igt@xe_peer2peer@write:
    - shard-dg2-set2:     [SKIP][513] ([Intel XE#1061]) -> [FAIL][514] ([Intel XE#1173])
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_peer2peer@write.html
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@xe_peer2peer@write.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][515] ([Intel XE#1130]) -> [SKIP][516] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_pm@d3cold-basic-exec.html
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-dg2-set2:     [SKIP][517] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][518] ([Intel XE#1130]) +1 other test skip
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-dg2-set2:     [DMESG-WARN][519] ([Intel XE#3468]) -> [SKIP][520] ([Intel XE#1130])
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_pm@d3hot-mmap-vram.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@xe_pm@d3hot-mmap-vram.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-dg2-set2:     [DMESG-WARN][521] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][522] ([Intel XE#1130]) +1 other test skip
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s2idle-basic-exec.html
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-466/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s2idle-d3hot-basic-exec:
    - shard-dg2-set2:     [SKIP][523] ([Intel XE#1130]) -> [DMESG-WARN][524] ([Intel XE#3468])
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_pm@s2idle-d3hot-basic-exec.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-436/igt@xe_pm@s2idle-d3hot-basic-exec.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-dg2-set2:     [SKIP][525] ([Intel XE#944]) -> [SKIP][526] ([Intel XE#1130]) +2 other tests skip
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_query@multigpu-query-cs-cycles.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     [SKIP][527] ([Intel XE#1130]) -> [SKIP][528] ([Intel XE#944]) +2 other tests skip
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-463/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-dg2-set2:     [SKIP][529] ([Intel XE#1130]) -> [SKIP][530] ([Intel XE#3342])
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_tlb@basic-tlb:
    - shard-dg2-set2:     [FAIL][531] ([Intel XE#2922]) -> [SKIP][532] ([Intel XE#1130])
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_tlb@basic-tlb.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-434/igt@xe_tlb@basic-tlb.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-dg2-set2:     [SKIP][533] ([Intel XE#1130]) -> [ABORT][534] ([Intel XE#3421])
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12164/shard-dg2-433/igt@xe_wedged@wedged-at-any-timeout.html

  
  [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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
  [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687
  [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3162
  [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
  [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
  [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
  [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
  [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
  [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
  [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
  [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
  [Intel XE#3490]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3490
  [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
  [Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515
  [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521
  [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
  [Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
  [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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804


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

  * IGT: IGT_8121 -> IGTPW_12164
  * Linux: xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 -> xe-2258-3304ae3acb744c6ea5e8cef09b01d2d527d38715

  IGTPW_12164: 12164
  IGT_8121: 8121
  xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380
  xe-2258-3304ae3acb744c6ea5e8cef09b01d2d527d38715: 3304ae3acb744c6ea5e8cef09b01d2d527d38715

== Logs ==

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

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

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

end of thread, other threads:[~2024-11-22  9:12 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-21 12:33 [PATCH i-g-t v4 0/6] GPGPU fill improvements Zbigniew Kempczyński
2024-11-21 12:33 ` [PATCH i-g-t v4 1/6] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
2024-11-21 12:33 ` [PATCH i-g-t v4 2/6] tests/xe_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
2024-11-21 12:33 ` [PATCH i-g-t v4 3/6] tests/xe_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
2024-11-21 12:33 ` [PATCH i-g-t v4 4/6] tests/gem_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
2024-11-21 15:07   ` Grzegorzek, Dominik
2024-11-21 12:33 ` [PATCH i-g-t v4 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
2024-11-21 15:15   ` Grzegorzek, Dominik
2024-11-22  7:09     ` Zbigniew Kempczyński
2024-11-21 12:33 ` [PATCH i-g-t v4 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
2024-11-21 15:28   ` Grzegorzek, Dominik
2024-11-22  7:12     ` Zbigniew Kempczyński
2024-11-21 15:49 ` ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev4) Patchwork
2024-11-21 16:05 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-21 21:19 ` ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev5) Patchwork
2024-11-21 21:33 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-22  7:06   ` Zbigniew Kempczyński
2024-11-21 23:25 ` ✗ Xe.CI.Full: failure for GPGPU fill improvements (rev4) Patchwork
2024-11-22  9:12 ` ✗ Xe.CI.Full: failure for GPGPU fill improvements (rev5) Patchwork

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