Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t v3] lib/gpgpu_fill: Write kernel using inline iga64 api
@ 2024-08-21 13:58 Dominik Grzegorzek
  2024-08-21 19:01 ` ✓ CI.xeBAT: success for lib/gpgpu_fill: Write kernel using inline iga64 api (rev4) Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Dominik Grzegorzek @ 2024-08-21 13:58 UTC (permalink / raw)
  To: igt-dev; +Cc: Dominik Grzegorzek, Andrzej Hajda

Rewrite gpgpu_fill shaders to utilize the newly introduced
method of writing IGA64 assembly inline.

Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
---
 lib/gpgpu_fill.c                              | 142 ++++++++----------
 lib/gpgpu_fill.h                              |  13 --
 .../shaders/gpgpu/gen12p72_gpgpu_kernel.asm   |  12 --
 .../shaders/gpgpu/xe2lpg_gpgpu_kernel.asm     |  13 --
 lib/i915/shaders/gpgpu/xehp_gpgpu_kernel.asm  |  12 --
 lib/iga64_generated_codes.c                   |  76 +++++++++-
 lib/intel_batchbuffer.c                       |   8 +-
 lib/meson.build                               |   2 +-
 8 files changed, 140 insertions(+), 138 deletions(-)
 delete mode 100644 lib/i915/shaders/gpgpu/gen12p72_gpgpu_kernel.asm
 delete mode 100644 lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
 delete mode 100644 lib/i915/shaders/gpgpu/xehp_gpgpu_kernel.asm

diff --git a/lib/gpgpu_fill.c b/lib/gpgpu_fill.c
index 1270c2b22..fe0b8b35d 100644
--- a/lib/gpgpu_fill.c
+++ b/lib/gpgpu_fill.c
@@ -31,6 +31,7 @@
 #include "drmtest.h"
 
 #include "gpgpu_fill.h"
+#include "gpgpu_shader.h"
 #include "gpu_cmds.h"
 
 /* lib/i915/shaders/gpgpu/gpgpu_fill.gxa */
@@ -99,43 +100,6 @@ static const uint32_t gen12_gpgpu_kernel[][4] = {
 	{ 0x00040131, 0x00000004, 0x7020700c, 0x10000000 },
 };
 
-static const uint32_t xehp_gpgpu_kernel[][4] = {
-	{ 0x00020061, 0x01050000, 0x00000104, 0x00000000 },
-	{ 0x00000069, 0x02058220, 0x02000024, 0x00000004 },
-	{ 0x00000061, 0x02250220, 0x000000c4, 0x00000000 },
-	{ 0x00030061, 0x04050220, 0x00460005, 0x00000000 },
-	{ 0x00011a61, 0x04050220, 0x00220205, 0x00000000 },
-	{ 0x00000061, 0x04454220, 0x00000000, 0x0000000f },
-	{ 0x00041e61, 0x05050220, 0x00000104, 0x00000000 },
-	{ 0x80001901, 0x00010000, 0x00000000, 0x00000000 },
-	{ 0x00044031, 0x00000000, 0xc0000414, 0x02a00000 },
-	{ 0x00030031, 0x00000004, 0x3000500c, 0x00000000 },
-};
-
-static const uint32_t xehpc_gpgpu_kernel[][4] = {
-	{ 0x00080061, 0x01050000, 0x00000104, 0x00000000 },
-	{ 0x00000069, 0x02058220, 0x02000014, 0x00000004 },
-	{ 0x00000061, 0x02150220, 0x00000064, 0x00000000 },
-	{ 0x000c0061, 0x04050220, 0x00460005, 0x00000000 },
-	{ 0x00041a61, 0x04050220, 0x00220205, 0x00000000 },
-	{ 0x00000061, 0x04254220, 0x00000000, 0x0000000f },
-	{ 0x00101e61, 0x05050220, 0x00000104, 0x00000000 },
-	{ 0x00132031, 0x00000000, 0xc0000414, 0x02a00000 },
-	{ 0x000c0031, 0x00000004, 0x3000500c, 0x00000000 },
-};
-
-static const uint32_t xe2lpg_gpgpu_kernel[][4] = {
-	{ 0x00080061, 0x01050000, 0x00000104, 0x00000000 },
-	{ 0x00000069, 0x02058220, 0x02000014, 0x00000004 },
-	{ 0x00000061, 0x02150220, 0x00000064, 0x00000000 },
-	{ 0x00100061, 0x04054220, 0x00000000, 0x00000000 },
-	{ 0x00041a61, 0x04550220, 0x00220205, 0x00000000 },
-	{ 0x00000061, 0x04754550, 0x00000000, 0x000f000f },
-	{ 0x00101e61, 0x05050220, 0x00000104, 0x00000000 },
-	{ 0x00132031, 0x00000000, 0xd00e0494, 0x04000000 },
-	{ 0x000c0031, 0x00000004, 0x3000500c, 0x00000000 },
-};
-
 /*
  * This sets up the gpgpu pipeline,
  *
@@ -317,15 +281,66 @@ __gen9_gpgpu_fillfunc(int i915,
 	intel_bb_destroy(ibb);
 }
 
-static void
-__xehp_gpgpu_fillfunc(int i915,
-		      struct intel_buf *buf,
-		      unsigned int x, unsigned int y,
-		      unsigned int width, unsigned int height,
-		      uint8_t color, const uint32_t kernel[][4],
-		      size_t kernel_size)
+static struct gpgpu_shader *__xehp_gpgpu_kernel(int i915)
+{
+	struct gpgpu_shader *kernel = gpgpu_shader_create(i915);
+
+	emit_iga64_code(kernel, gpgpu_fill, "					\n\
+// fill up r1 with target colour						\n\
+mov (4|M0)		r1.0<1>:ub	r1.0<0;1,0>:ub				\n\
+// prepare block x offset (Thread Group Id X * 16)				\n\
+shl (1|M0)		r2.0<1>:ud	r0.1<0;1,0>:ud	0x4:ud			\n\
+// prepare block y offset (Thread Group Id Y)					\n\
+mov (1|M0)		r2.1<1>:ud	r0.6<0;1,0>:ud				\n\
+// zero message header payload							\n\
+mov (8|M0)		r4.0<1>:ud	0x0:ud					\n\
+// fill up message payload with target colour					\n\
+mov (16|M0)		r5.0<1>:ud	r1.0<0;1,0>:ud				\n\
+#if GEN_VER < 2000								\n\
+// load block offsets into message header payload				\n\
+mov (2|M0)		r4.0<1>:ud	r2.0<2;2,1>:ud				\n\
+// load block width								\n\
+mov (1|M0)		r4.2<1>:ud	0xF:ud					\n\
+// load FFTID from R0 header							\n\
+mov (1|M0)		r4.4<1>:ud	r0.5<0;1,0>:ud				\n\
+// Media block write to bti[0] surface						\n\
+// Message Descriptor								\n\
+//	0x40A8000:								\n\
+//	[28:25]		Mlen: 2							\n\
+//	[24:20]		Rlen: 0							\n\
+//	[19]		Header: 1 (included)					\n\
+//	[18:14]		MessageType: 0xA (media block write)			\n\
+//	[7:0]		BTI: 0							\n\
+send.dc1 (16|M0)	null	r4	src1_null	0x0	0x40A8000	\n\
+#else										\n\
+// load block offsets into message header payload				\n\
+mov (2|M0)		r4.5<1>:ud	r2.0<2;2,1>:ud				\n\
+// load block width								\n\
+mov (1|M0)		 r4.14<1>:w	0xF:w					\n\
+// Typed 2D block store to bti[0] surface					\n\
+// Message Descriptor								\n\
+//	0x6400007:								\n\
+//	[30:29]		AddrType: 3 (BTI)					\n\
+//	[28:25]		Mlen: 2							\n\
+//	[24:20]		Rlen: 0							\n\
+//	[19:17]		Caching: 0  (use state settings for both L1 and L3)	\n\
+//	[5:0]		Opcode: 0x07  (store_block2d)				\n\
+send.tgm (16|M0)	null	r4	null	0x0	0x64000007		\n\
+#endif										\n\
+	");
+
+	gpgpu_shader__eot(kernel);
+	return kernel;
+}
+
+void xehp_gpgpu_fillfunc(int i915,
+			 struct intel_buf *buf,
+			 unsigned int x, unsigned int y,
+			 unsigned int width, unsigned int height,
+			 uint8_t color)
 {
 	struct intel_bb *ibb;
+	struct gpgpu_shader *kernel;
 	struct xehp_interface_descriptor_data idd;
 
 	ibb = intel_bb_create(i915, PAGE_SIZE);
@@ -333,8 +348,10 @@ __xehp_gpgpu_fillfunc(int i915,
 
 	intel_bb_ptr_set(ibb, BATCH_STATE_SPLIT);
 
-	xehp_fill_interface_descriptor(ibb, buf,
-				       kernel, kernel_size, &idd);
+	kernel = __xehp_gpgpu_kernel(i915);
+	xehp_fill_interface_descriptor(ibb, buf, kernel->instr,
+				       kernel->size * 4, &idd);
+	gpgpu_shader_destroy(kernel);
 
 	intel_bb_ptr_set(ibb, 0);
 
@@ -388,36 +405,3 @@ void gen12_gpgpu_fillfunc(int i915,
 			      gen12_gpgpu_kernel,
 			      sizeof(gen12_gpgpu_kernel));
 }
-
-void xehp_gpgpu_fillfunc(int i915,
-			 struct intel_buf *buf,
-			 unsigned int x, unsigned int y,
-			 unsigned int width, unsigned int height,
-			 uint8_t color)
-{
-	__xehp_gpgpu_fillfunc(i915, buf, x, y, width, height, color,
-			      xehp_gpgpu_kernel,
-			      sizeof(xehp_gpgpu_kernel));
-}
-
-void xehpc_gpgpu_fillfunc(int i915,
-			  struct intel_buf *buf,
-			  unsigned int x, unsigned int y,
-			  unsigned int width, unsigned int height,
-			  uint8_t color)
-{
-	__xehp_gpgpu_fillfunc(i915, buf, x, y, width, height, color,
-			      xehpc_gpgpu_kernel,
-			      sizeof(xehpc_gpgpu_kernel));
-}
-
-void xe2lpg_gpgpu_fillfunc(int i915,
-			   struct intel_buf *buf,
-			   unsigned int x, unsigned int y,
-			   unsigned int width, unsigned int height,
-			   uint8_t color)
-{
-	__xehp_gpgpu_fillfunc(i915, buf, x, y, width, height, color,
-			      xe2lpg_gpgpu_kernel,
-			      sizeof(xe2lpg_gpgpu_kernel));
-}
diff --git a/lib/gpgpu_fill.h b/lib/gpgpu_fill.h
index c3b47c10a..a483859e5 100644
--- a/lib/gpgpu_fill.h
+++ b/lib/gpgpu_fill.h
@@ -68,17 +68,4 @@ xehp_gpgpu_fillfunc(int i915,
 		    unsigned int width, unsigned int height,
 		    uint8_t color);
 
-void
-xehpc_gpgpu_fillfunc(int i915,
-		     struct intel_buf *dst,
-		     unsigned int x, unsigned int y,
-		     unsigned int width, unsigned int height,
-		     uint8_t color);
-
-void xe2lpg_gpgpu_fillfunc(int i915,
-			   struct intel_buf *buf,
-			   unsigned int x, unsigned int y,
-			   unsigned int width, unsigned int height,
-			   uint8_t color);
-
 #endif /* GPGPU_FILL_H */
diff --git a/lib/i915/shaders/gpgpu/gen12p72_gpgpu_kernel.asm b/lib/i915/shaders/gpgpu/gen12p72_gpgpu_kernel.asm
deleted file mode 100644
index 52699a475..000000000
--- a/lib/i915/shaders/gpgpu/gen12p72_gpgpu_kernel.asm
+++ /dev/null
@@ -1,12 +0,0 @@
-L0:
-         mov (4|M0)               r1.0<1>:ub    r1.0<0;1,0>:ub
-         shl (1|M0)               r2.0<1>:ud    r0.1<0;1,0>:ud    0x4:ud
-         mov (1|M0)               r2.1<1>:ud    r0.6<0;1,0>:ud
-         mov (8|M0)               r4.0<1>:ud    r0.0<8;8,1>:ud
-         mov (2|M0)               r4.0<1>:ud    r2.0<2;2,1>:ud                   {I@2}
-         mov (1|M0)               r4.2<1>:ud    0xF:ud
-         mov (16|M0)              r5.0<1>:ud    r1.0<0;1,0>:ud                   {I@6}
-(W)      sync.nop                             null                             {I@1}
-         send.dc1 (16|M0)         null     r4      null:0    0x0         0x40A8000  {$0} //    wr:2h+0, rd:0, Media Block Write msc:0, to #0
-         send.gtwy (8|M0)         null     r80     null:0    0x0         0x02000000 {EOT}
-L176:
diff --git a/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm b/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
deleted file mode 100644
index e2ecc71f5..000000000
--- a/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
+++ /dev/null
@@ -1,13 +0,0 @@
-L0:
-         mov (4|M0)               r1.0<1>:ub    r1.0<0;1,0>:ub                        // Load r1.0-3 with color byte
-         shl (1|M0)               r2.0<1>:ud    r0.1<0;1,0>:ud    0x4:ud              // Load r2.0-3 with tg id X << 4
-         mov (1|M0)               r2.1<1>:ud    r0.6<0;1,0>:ud                        // Load r2.4-7 with tg id Y
-
-         // payload setup
-         mov (16|M0)              r4.0<1>:ud    0x0:ud                                // Zero out register R4
-         mov (2|M0)               r4.5<1>:ud    r2.0<2;2,1>:ud                        // Store X and Y block start (160:191 and 192:223)
-         mov (1|M0)               r4.14<1>:w    0xF:w                                 // Store X and Y block size (224:231 and 232:239)
-         mov (16|M0)              r5.0<1>:ud    r1.0<0;1,0>:ud                        // Load r5-r6 with color byte
-
-         send.tgm (16|M0)         null     r4    null:0    0x0    0x64000007          // Send TypedStore2DBlock to tgm port
-         send.gtwy (8|M0)         null    r80    null:0    0x0    0x02000000 {EOT}
diff --git a/lib/i915/shaders/gpgpu/xehp_gpgpu_kernel.asm b/lib/i915/shaders/gpgpu/xehp_gpgpu_kernel.asm
deleted file mode 100644
index 7adfbd0f0..000000000
--- a/lib/i915/shaders/gpgpu/xehp_gpgpu_kernel.asm
+++ /dev/null
@@ -1,12 +0,0 @@
-L0:
-         mov (4|M0)               r1.0<1>:ub    r1.0<0;1,0>:ub
-         shl (1|M0)               r2.0<1>:ud    r0.1<0;1,0>:ud    0x4:ud
-         mov (1|M0)               r2.1<1>:ud    r0.6<0;1,0>:ud
-         mov (8|M0)               r4.0<1>:ud    r0.0<8;8,1>:ud
-         mov (2|M0)               r4.0<1>:ud    r2.0<2;2,1>:ud                   {I@2}
-         mov (1|M0)               r4.2<1>:ud    0xF:ud
-         mov (16|M0)              r5.0<1>:ud    r1.0<0;1,0>:ud                   {I@6}
-(W)      sync.nop                             null                             {I@1}
-         send.dc1 (16|M0)         null     r4      null    0x0         0x40A8000  {$0} //    wr:2h+0, rd:0, Media Block Write msc:0, to #0
-         send.gtwy (8|M0)         null     r80     null    0x0         0x02000000 {EOT}
-L176:
diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c
index 6a08c4844..c22b1e9e7 100644
--- a/lib/iga64_generated_codes.c
+++ b/lib/iga64_generated_codes.c
@@ -3,7 +3,81 @@
 
 #include "gpgpu_shader.h"
 
-#define MD5_SUM_IGA64_ASMS 2c503cbfbd7b3043e9a52188ae4da7a8
+#define MD5_SUM_IGA64_ASMS efa80cb5c2d50f515af3642cee8dc062
+
+struct iga64_template const iga64_code_gpgpu_fill[] = {
+	{ .gen_ver = 2000, .size = 44, .code = (const uint32_t []) {
+		0x00080061, 0x01050000, 0x00000104, 0x00000000,
+		0x00000069, 0x02058220, 0x02000014, 0x00000004,
+		0x00000061, 0x02150220, 0x00000064, 0x00000000,
+		0x000c0061, 0x04054220, 0x00000000, 0x00000000,
+		0x00101c61, 0x05050220, 0x00000104, 0x00000000,
+		0x00041b61, 0x04550220, 0x00220205, 0x00000000,
+		0x00000061, 0x04754550, 0x00000000, 0x000f000f,
+		0x00132031, 0x00000000, 0xd00e0494, 0x04000000,
+		0x80000001, 0x00010000, 0x20000000, 0x00000000,
+		0x80000001, 0x00010000, 0x30000000, 0x00000000,
+		0x80000901, 0x00010000, 0x00000000, 0x00000000,
+	}},
+	{ .gen_ver = 1270, .size = 52, .code = (const uint32_t []) {
+		0x00020061, 0x01050000, 0x00000104, 0x00000000,
+		0x00000069, 0x02058220, 0x02000024, 0x00000004,
+		0x00000061, 0x02250220, 0x000000c4, 0x00000000,
+		0x00030061, 0x04054220, 0x00000000, 0x00000000,
+		0x00041c61, 0x05050220, 0x00000104, 0x00000000,
+		0x00011b61, 0x04050220, 0x00220205, 0x00000000,
+		0x00000061, 0x04454220, 0x00000000, 0x0000000f,
+		0x00000061, 0x04850220, 0x000000a4, 0x00000000,
+		0x80001901, 0x00010000, 0x00000000, 0x00000000,
+		0x00044031, 0x00000000, 0xc0000414, 0x02a00000,
+		0x80000001, 0x00010000, 0x20000000, 0x00000000,
+		0x80000001, 0x00010000, 0x30000000, 0x00000000,
+		0x80000901, 0x00010000, 0x00000000, 0x00000000,
+	}},
+	{ .gen_ver = 1260, .size = 48, .code = (const uint32_t []) {
+		0x00080061, 0x01050000, 0x00000104, 0x00000000,
+		0x00000069, 0x02058220, 0x02000014, 0x00000004,
+		0x00000061, 0x02150220, 0x00000064, 0x00000000,
+		0x000c0061, 0x04054220, 0x00000000, 0x00000000,
+		0x00101c61, 0x05050220, 0x00000104, 0x00000000,
+		0x00041b61, 0x04050220, 0x00220205, 0x00000000,
+		0x00000061, 0x04254220, 0x00000000, 0x0000000f,
+		0x00000061, 0x04450220, 0x00000054, 0x00000000,
+		0x00132031, 0x00000000, 0xc0000414, 0x02a00000,
+		0x80000001, 0x00010000, 0x20000000, 0x00000000,
+		0x80000001, 0x00010000, 0x30000000, 0x00000000,
+		0x80000901, 0x00010000, 0x00000000, 0x00000000,
+	}},
+	{ .gen_ver = 1250, .size = 52, .code = (const uint32_t []) {
+		0x00020061, 0x01050000, 0x00000104, 0x00000000,
+		0x00000069, 0x02058220, 0x02000024, 0x00000004,
+		0x00000061, 0x02250220, 0x000000c4, 0x00000000,
+		0x00030061, 0x04054220, 0x00000000, 0x00000000,
+		0x00041c61, 0x05050220, 0x00000104, 0x00000000,
+		0x00011b61, 0x04050220, 0x00220205, 0x00000000,
+		0x00000061, 0x04454220, 0x00000000, 0x0000000f,
+		0x00000061, 0x04850220, 0x000000a4, 0x00000000,
+		0x80001901, 0x00010000, 0x00000000, 0x00000000,
+		0x00044031, 0x00000000, 0xc0000414, 0x02a00000,
+		0x80000001, 0x00010000, 0x20000000, 0x00000000,
+		0x80000001, 0x00010000, 0x30000000, 0x00000000,
+		0x80000901, 0x00010000, 0x00000000, 0x00000000,
+	}},
+	{ .gen_ver = 0, .size = 48, .code = (const uint32_t []) {
+		0x00020061, 0x01050000, 0x00000104, 0x00000000,
+		0x00000069, 0x02058220, 0x02000024, 0x00000004,
+		0x00000061, 0x02250220, 0x000000c4, 0x00000000,
+		0x00030061, 0x04054220, 0x00000000, 0x00000000,
+		0x00040461, 0x05050220, 0x00000104, 0x00000000,
+		0x00010361, 0x04050220, 0x00220205, 0x00000000,
+		0x00000061, 0x04454220, 0x00000000, 0x0000000f,
+		0x00000061, 0x04850220, 0x000000a4, 0x00000000,
+		0x00049031, 0x00000000, 0xc0000414, 0x02a00000,
+		0x80000001, 0x00010000, 0x20000000, 0x00000000,
+		0x80000001, 0x00010000, 0x30000000, 0x00000000,
+		0x80000101, 0x00010000, 0x00000000, 0x00000000,
+	}}
+};
 
 struct iga64_template const iga64_code_media_block_write[] = {
 	{ .gen_ver = 2000, .size = 56, .code = (const uint32_t []) {
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index 824e92831..f91091bc4 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -758,13 +758,7 @@ igt_fillfunc_t igt_get_gpgpu_fillfunc(int devid)
 {
 	igt_fillfunc_t fill = NULL;
 
-	if (intel_graphics_ver(devid) >= IP_VER(20, 0))
-		fill = xe2lpg_gpgpu_fillfunc;
-	else if (IS_METEORLAKE(devid))
-		fill = xehp_gpgpu_fillfunc;
-	else if (intel_graphics_ver(devid) >= IP_VER(12, 60))
-		fill = xehpc_gpgpu_fillfunc;
-	else if (intel_graphics_ver(devid) >= IP_VER(12, 50))
+	if (intel_graphics_ver(devid) >= IP_VER(12, 50))
 		fill = xehp_gpgpu_fillfunc;
 	else if (IS_GEN12(devid))
 		fill = gen12_gpgpu_fillfunc;
diff --git a/lib/meson.build b/lib/meson.build
index f711e60a7..2fac522d3 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -216,7 +216,7 @@ lib_version = vcs_tag(input : 'version.h.in', output : 'version.h',
 		      fallback : 'NO-GIT',
 		      command : vcs_command )
 
-iga64_assembly_sources = [ 'gpgpu_shader.c' ]
+iga64_assembly_sources = [ 'gpgpu_shader.c', 'gpgpu_fill.c' ]
 
 lib_intermediates = []
 iga64_assembly_libs = []
-- 
2.34.1


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

* ✓ CI.xeBAT: success for lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
  2024-08-21 13:58 [PATCH i-g-t v3] lib/gpgpu_fill: Write kernel using inline iga64 api Dominik Grzegorzek
@ 2024-08-21 19:01 ` Patchwork
  2024-08-21 19:03 ` ✓ Fi.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-08-21 19:01 UTC (permalink / raw)
  To: Dominik Grzegorzek; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
URL   : https://patchwork.freedesktop.org/series/136983/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_7982_BAT -> XEIGTPW_11613_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-dg2-oem2:       [SKIP][1] ([Intel XE#1885]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html

  * igt@fbdev@nullptr:
    - bat-dg2-oem2:       [SKIP][3] ([Intel XE#2134]) -> [PASS][4] +4 other tests pass
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@fbdev@nullptr.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@fbdev@nullptr.html

  * igt@kms_addfb_basic@bad-pitch-128:
    - bat-dg2-oem2:       [SKIP][5] ([i915#2575]) -> [PASS][6] +50 other tests pass
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@kms_addfb_basic@bad-pitch-128.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@kms_addfb_basic@bad-pitch-128.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-dg2-oem2:       [SKIP][7] ([Intel XE#2231]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - bat-dg2-oem2:       [FAIL][9] ([Intel XE#2420]) -> [PASS][10] +6 other tests pass
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_module_load@load:
    - bat-dg2-oem2:       [FAIL][11] ([Intel XE#2565]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@xe_module_load@load.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@xe_module_load@load.html

  * igt@xe_prime_self_import@basic-with_fd_dup:
    - bat-dg2-oem2:       [SKIP][13] ([Intel XE#1130]) -> [PASS][14] +155 other tests pass
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_fd_dup.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_fd_dup.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-dg2-oem2:       [SKIP][15] ([i915#2575]) -> [SKIP][16] ([Intel XE#623])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-dg2-oem2:       [SKIP][17] ([Intel XE#2231]) -> [SKIP][18] ([Intel XE#455])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - bat-dg2-oem2:       [SKIP][19] ([i915#2575]) -> [SKIP][20] ([i915#5274])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_psr@psr-cursor-plane-move:
    - bat-dg2-oem2:       [SKIP][21] ([Intel XE#2231]) -> [SKIP][22] ([Intel XE#929]) +2 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - bat-dg2-oem2:       [SKIP][23] ([i915#2575]) -> [SKIP][24] ([Intel XE#1091]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
    - bat-dg2-oem2:       [SKIP][25] ([Intel XE#1130]) -> [SKIP][26] ([Intel XE#288]) +32 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html

  * igt@xe_huc_copy@huc_copy:
    - bat-dg2-oem2:       [SKIP][27] ([Intel XE#1130]) -> [SKIP][28] ([Intel XE#255])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-dg2-oem2:       [FAIL][29] ([Intel XE#2420]) -> [SKIP][30] ([Intel XE#2229])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_pat@pat-index-xe2:
    - bat-dg2-oem2:       [SKIP][31] ([Intel XE#1130]) -> [SKIP][32] ([Intel XE#977])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-dg2-oem2:       [SKIP][33] ([Intel XE#1130]) -> [SKIP][34] ([Intel XE#979]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html

  
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [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#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
  [Intel XE#2420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2420
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#2565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2565
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274


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

  * IGT: IGT_7982 -> IGTPW_11613
  * Linux: xe-1805-74e833f3bd5db6f5e13d3e660ecdf0d8a7063cac -> xe-1807-ddbda36f876f53498924155abfa1cd4c58517903

  IGTPW_11613: 8e9c328a4a26f146a2cca86f3b116ac89ccb264c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7982: 76ebe4ecfa1757f21e3f1d3be5993088a92cd274 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1805-74e833f3bd5db6f5e13d3e660ecdf0d8a7063cac: 74e833f3bd5db6f5e13d3e660ecdf0d8a7063cac
  xe-1807-ddbda36f876f53498924155abfa1cd4c58517903: ddbda36f876f53498924155abfa1cd4c58517903

== Logs ==

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

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

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

* ✓ Fi.CI.BAT: success for lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
  2024-08-21 13:58 [PATCH i-g-t v3] lib/gpgpu_fill: Write kernel using inline iga64 api Dominik Grzegorzek
  2024-08-21 19:01 ` ✓ CI.xeBAT: success for lib/gpgpu_fill: Write kernel using inline iga64 api (rev4) Patchwork
@ 2024-08-21 19:03 ` Patchwork
  2024-08-22  1:46 ` ✗ CI.xeFULL: failure " Patchwork
  2024-08-22  2:01 ` ✗ Fi.CI.IGT: " Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-08-21 19:03 UTC (permalink / raw)
  To: Dominik Grzegorzek; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
URL   : https://patchwork.freedesktop.org/series/136983/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_15272 -> IGTPW_11613
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Additional (2): fi-glk-j4005 fi-bsw-n3050 
  Missing    (2): bat-arlh-2 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-glk-j4005:       NOTRUN -> [SKIP][1] ([i915#2190])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - fi-glk-j4005:       NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/fi-glk-j4005/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@random-engines:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][3] +19 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html

  * igt@i915_selftest@live@hangcheck:
    - bat-arls-2:         [PASS][4] -> [DMESG-WARN][5] ([i915#11349])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/bat-arls-2/igt@i915_selftest@live@hangcheck.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/bat-arls-2/igt@i915_selftest@live@hangcheck.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-glk-j4005:       NOTRUN -> [SKIP][6] +10 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@uncore:
    - {bat-arlh-3}:       [INCOMPLETE][7] -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/bat-arlh-3/igt@i915_selftest@live@uncore.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/bat-arlh-3/igt@i915_selftest@live@uncore.html

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

  [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7982 -> IGTPW_11613

  CI-20190529: 20190529
  CI_DRM_15272: ddbda36f876f53498924155abfa1cd4c58517903 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11613: 8e9c328a4a26f146a2cca86f3b116ac89ccb264c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7982: 76ebe4ecfa1757f21e3f1d3be5993088a92cd274 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✗ CI.xeFULL: failure for lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
  2024-08-21 13:58 [PATCH i-g-t v3] lib/gpgpu_fill: Write kernel using inline iga64 api Dominik Grzegorzek
  2024-08-21 19:01 ` ✓ CI.xeBAT: success for lib/gpgpu_fill: Write kernel using inline iga64 api (rev4) Patchwork
  2024-08-21 19:03 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-08-22  1:46 ` Patchwork
  2024-08-22 12:31   ` Grzegorzek, Dominik
  2024-08-22  2:01 ` ✗ Fi.CI.IGT: " Patchwork
  3 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2024-08-22  1:46 UTC (permalink / raw)
  To: Dominik Grzegorzek; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
URL   : https://patchwork.freedesktop.org/series/136983/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_7982_full -> XEIGTPW_11613_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_11613_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_11613_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_11613_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_async_flips@test-cursor@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_async_flips@test-cursor@pipe-b-edp-1.html

  * igt@kms_flip@absolute-wf_vblank-interruptible@b-edp1:
    - shard-lnl:          NOTRUN -> [DMESG-WARN][2] +1 other test dmesg-warn
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@kms_flip@absolute-wf_vblank-interruptible@b-edp1.html

  * igt@kms_flip@basic-flip-vs-modeset:
    - shard-lnl:          [PASS][3] -> [FAIL][4] +10 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-3/igt@kms_flip@basic-flip-vs-modeset.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_flip@basic-flip-vs-modeset.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
    - shard-lnl:          NOTRUN -> [FAIL][5] +31 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html

  * igt@xe_exec_threads@threads-userptr:
    - shard-lnl:          NOTRUN -> [ABORT][6] +2 other tests abort
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@xe_exec_threads@threads-userptr.html

  * igt@xe_wedged@wedged-mode-toggle:
    - shard-lnl:          [PASS][7] -> [ABORT][8] +3 other tests abort
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-7/igt@xe_wedged@wedged-mode-toggle.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@xe_wedged@wedged-mode-toggle.html

  
#### Warnings ####

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-lnl:          [SKIP][9] ([Intel XE#1407]) -> [FAIL][10] +1 other test fail
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-lnl:          [SKIP][11] ([Intel XE#1124]) -> [FAIL][12] +2 other tests fail
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
    - shard-lnl:          [SKIP][13] ([Intel XE#1399]) -> [FAIL][14] +1 other test fail
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html

  * igt@kms_chamelium_hpd@vga-hpd-after-suspend:
    - shard-lnl:          [SKIP][15] ([Intel XE#373]) -> [FAIL][16] +1 other test fail
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-lnl:          [SKIP][17] ([Intel XE#1413]) -> [FAIL][18]
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x512.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-lnl:          [SKIP][19] ([Intel XE#1401] / [Intel XE#1745]) -> [FAIL][20]
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
    - shard-lnl:          [SKIP][21] ([Intel XE#656]) -> [FAIL][22]
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-lnl:          [SKIP][23] ([Intel XE#1503] / [Intel XE#599]) -> [FAIL][24]
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@kms_hdr@invalid-metadata-sizes.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
    - shard-lnl:          [SKIP][25] ([Intel XE#2318]) -> [FAIL][26]
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html

  
#### Suppressed ####

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

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - {shard-bmg}:        NOTRUN -> [INCOMPLETE][27]
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@torture-move@pipe-b:
    - {shard-bmg}:        [PASS][28] -> [DMESG-WARN][29]
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-5/igt@kms_cursor_legacy@torture-move@pipe-b.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-8/igt@kms_cursor_legacy@torture-move@pipe-b.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - {shard-bmg}:        [PASS][30] -> [ABORT][31] +2 other tests abort
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_sequence@get-busy:
    - {shard-bmg}:        [PASS][32] -> [INCOMPLETE][33] +2 other tests incomplete
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-4/igt@kms_sequence@get-busy.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-8/igt@kms_sequence@get-busy.html

  * igt@xe_exec_fault_mode@many-execqueues-rebind:
    - {shard-bmg}:        [ABORT][34] ([Intel XE#2583]) -> [ABORT][35]
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-rebind.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-rebind.html

  * igt@xe_pm@s3-d3hot-basic-exec:
    - {shard-bmg}:        NOTRUN -> [ABORT][36] +2 other tests abort
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-8/igt@xe_pm@s3-d3hot-basic-exec.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#1125])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@intel_hwmon@hwmon-write.html

  * igt@kms_3d:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#1465])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_3d.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#1466])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
    - shard-lnl:          [PASS][40] -> [FAIL][41] ([Intel XE#911]) +3 other tests fail
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-lnl:          NOTRUN -> [FAIL][42] ([Intel XE#1659])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#1407]) +5 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

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

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#1467])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@basic:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#346])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_big_joiner@basic.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#2191]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#1512]) +2 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

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

  * igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
    - shard-lnl:          NOTRUN -> [FAIL][51] ([Intel XE#2576]) +3 other tests fail
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#1399]) +25 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#787]) +6 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6.html

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

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#306]) +4 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#373]) +14 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#307]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#1413]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-256x85:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#1424]) +5 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html

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

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#309]) +5 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#599]) +6 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_feature_discovery@display-3x:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#703])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_feature_discovery@display-3x.html

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

  * igt@kms_flip@flip-vs-suspend:
    - shard-dg2-set2:     [PASS][66] -> [INCOMPLETE][67] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#2049] / [Intel XE#2597])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
    - shard-dg2-set2:     [PASS][68] -> [DMESG-WARN][69] ([Intel XE#1551])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html

  * igt@kms_flip@flip-vs-suspend@d-dp4:
    - shard-dg2-set2:     [PASS][70] -> [INCOMPLETE][71] ([Intel XE#1195] / [Intel XE#2049])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
    - shard-dg2-set2:     [PASS][72] -> [INCOMPLETE][73] ([Intel XE#1195]) +1 other test incomplete
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html

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

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

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

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1401] / [Intel XE#1745]) +10 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#352]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#651]) +24 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#1201] / [Intel XE#651]) +2 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][81] ([Intel XE#2019])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
    - shard-lnl:          [PASS][82] -> [ABORT][83] ([Intel XE#2583]) +10 other tests abort
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [ABORT][84] ([Intel XE#2583]) +5 other tests abort
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-edp-1.html

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

  * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#1201] / [Intel XE#653]) +3 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html

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

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][88] ([Intel XE#498]) +2 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#498]) +3 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-edp-1.html

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

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#1128])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr-sprite-plane-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][92] ([Intel XE#1201] / [Intel XE#929])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-move.html

  * igt@kms_psr@pr-cursor-plane-move:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#1406]) +3 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_psr@pr-cursor-plane-move.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#1437]) +2 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#1435]) +1 other test skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-dg2-set2:     [PASS][96] -> [DMESG-WARN][97] ([Intel XE#2019]) +2 other tests dmesg-warn
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vrr@max-min:
    - shard-lnl:          [PASS][98] -> [FAIL][99] ([Intel XE#2443]) +1 other test fail
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-3/igt@kms_vrr@max-min.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_vrr@max-min.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#1499] / [Intel XE#599])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-lnl:          NOTRUN -> [SKIP][101] ([Intel XE#756]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_writeback@writeback-pixel-formats.html

  * igt@xe_create@create-big-vram:
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#1062])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@xe_create@create-big-vram.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-dg2-set2:     [PASS][103] -> [TIMEOUT][104] ([Intel XE#1473] / [Intel XE#402])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-beng-threads-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#688]) +19 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@xe_evict@evict-beng-threads-large-multi-vm.html

  * igt@xe_evict@evict-cm-threads-large:
    - shard-dg2-set2:     [PASS][106] -> [INCOMPLETE][107] ([Intel XE#1195] / [Intel XE#1473])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@xe_evict@evict-cm-threads-large.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-dg2-set2:     [PASS][108] -> [TIMEOUT][109] ([Intel XE#1473]) +2 other tests timeout
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_evict@evict-mixed-threads-large.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#1392]) +12 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html

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

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-dg2-set2:     NOTRUN -> [SKIP][112] ([Intel XE#1201] / [Intel XE#2229])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#2229])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_module_load@load:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#378])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@xe_module_load@load.html

  * igt@xe_oa@mmio-triggered-reports:
    - shard-lnl:          NOTRUN -> [FAIL][115] ([Intel XE#2249]) +1 other test fail
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][116] ([Intel XE#2248])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_pat@pat-index-xelp:
    - shard-lnl:          NOTRUN -> [SKIP][117] ([Intel XE#977])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@xe_pat@pat-index-xelp.html

  * igt@xe_peer2peer@read:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#1061]) +1 other test skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@xe_peer2peer@read.html

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

  * igt@xe_pm@s3-multiple-execs:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#584]) +3 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-lnl:          NOTRUN -> [SKIP][121] ([Intel XE#944]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_wedged@basic-wedged:
    - shard-lnl:          NOTRUN -> [DMESG-WARN][122] ([Intel XE#1760])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@xe_wedged@basic-wedged.html

  
#### Possible fixes ####

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          [SKIP][123] ([Intel XE#664]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_async_flips@test-cursor.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_async_flips@test-cursor.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-lnl:          [FAIL][125] -> [PASS][126] +11 other tests pass
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2:
    - {shard-bmg}:        [INCOMPLETE][127] -> [PASS][128] +1 other test pass
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-4/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-6/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-dg2-set2:     [INCOMPLETE][129] ([Intel XE#1195]) -> [PASS][130] +3 other tests pass
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-panning@ad-dp2-hdmi-a3:
    - {shard-bmg}:        [DMESG-WARN][131] ([Intel XE#877]) -> [PASS][132]
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning@ad-dp2-hdmi-a3.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning@ad-dp2-hdmi-a3.html

  * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt:
    - {shard-bmg}:        [ABORT][133] ([Intel XE#2583]) -> [PASS][134] +1 other test pass
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html

  * igt@kms_plane@plane-position-covered:
    - {shard-bmg}:        [ABORT][135] -> [PASS][136] +1 other test pass
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-3/igt@kms_plane@plane-position-covered.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-1/igt@kms_plane@plane-position-covered.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - {shard-bmg}:        [TIMEOUT][137] ([Intel XE#1473]) -> [PASS][138]
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind:
    - shard-lnl:          [ABORT][139] ([Intel XE#2583]) -> [PASS][140] +8 other tests pass
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind.html

  * igt@xe_pm@s4-mocs:
    - shard-dg2-set2:     [DMESG-WARN][141] ([Intel XE#2280]) -> [PASS][142]
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_pm@s4-mocs.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@xe_pm@s4-mocs.html

  
#### Warnings ####

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2-set2:     [SKIP][143] ([Intel XE#1201] / [Intel XE#873]) -> [SKIP][144] ([Intel XE#873])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][145] ([Intel XE#316]) -> [SKIP][146] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][147] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][148] ([Intel XE#316])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-dg2-set2:     [SKIP][149] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][150] ([Intel XE#619])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][151] ([Intel XE#1124]) -> [SKIP][152] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][153] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][154] ([Intel XE#1124]) +5 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-lnl:          [FAIL][155] -> [SKIP][156] ([Intel XE#1124])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][157] ([Intel XE#1201] / [Intel XE#610]) -> [SKIP][158] ([Intel XE#610])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_joiner@basic:
    - shard-dg2-set2:     [SKIP][159] ([Intel XE#346]) -> [SKIP][160] ([Intel XE#1201] / [Intel XE#346])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_big_joiner@basic.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_big_joiner@basic.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][161] ([Intel XE#367]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][163] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][164] ([Intel XE#367]) +3 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][165] ([Intel XE#2191]) -> [SKIP][166] ([Intel XE#1201] / [Intel XE#2191])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][167] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][168] ([Intel XE#787]) +83 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][169] ([Intel XE#1252]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#1252]) +1 other test skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html

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

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][173] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +23 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
    - shard-lnl:          [FAIL][175] -> [SKIP][176] ([Intel XE#1399])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][177] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][178] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][179] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][180] ([Intel XE#1252])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-dg2-set2:     [SKIP][181] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][182] ([Intel XE#306]) +2 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     [SKIP][183] ([Intel XE#306]) -> [SKIP][184] ([Intel XE#1201] / [Intel XE#306]) +2 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_chamelium_color@gamma.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_hpd@hdmi-hpd:
    - shard-dg2-set2:     [SKIP][185] ([Intel XE#373]) -> [SKIP][186] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][187] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][188] ([Intel XE#373]) +5 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-lnl:          [ABORT][189] ([Intel XE#2583]) -> [SKIP][190] ([Intel XE#373])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     [SKIP][191] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][192] ([Intel XE#307]) +1 other test skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2-set2:     [SKIP][193] ([Intel XE#307]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#307])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2-set2:     [SKIP][195] ([Intel XE#455]) -> [SKIP][196] ([Intel XE#1201] / [Intel XE#455]) +13 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_content_protection@lic-type-1.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_content_protection@lic-type-1.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     [SKIP][197] ([Intel XE#308]) -> [SKIP][198] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-64x21:
    - shard-lnl:          [FAIL][199] -> [SKIP][200] ([Intel XE#1424])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-dg2-set2:     [SKIP][201] ([Intel XE#323]) -> [SKIP][202] ([Intel XE#1201] / [Intel XE#323])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     [SKIP][203] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][204] ([Intel XE#323]) +2 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][205] ([i915#3804]) -> [SKIP][206] ([Intel XE#1201] / [i915#3804])
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2-set2:     [SKIP][207] ([Intel XE#1201] / [Intel XE#703]) -> [SKIP][208] ([Intel XE#703])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_feature_discovery@display-3x.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg2-set2:     [SKIP][209] ([Intel XE#1137]) -> [SKIP][210] ([Intel XE#1137] / [Intel XE#1201])
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     [SKIP][211] ([Intel XE#1135]) -> [SKIP][212] ([Intel XE#1135] / [Intel XE#1201])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_feature_discovery@psr2.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [ABORT][213] ([Intel XE#2583]) -> [SKIP][214] ([Intel XE#1421])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-panning:
    - shard-lnl:          [FAIL][215] -> [SKIP][216] ([Intel XE#1421])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_flip@2x-flip-vs-panning.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_flip@2x-flip-vs-panning.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-lnl:          [ABORT][217] ([Intel XE#2583]) -> [SKIP][218] ([Intel XE#1401] / [Intel XE#1745])
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode:
    - shard-lnl:          [ABORT][219] ([Intel XE#2583]) -> [SKIP][220] ([Intel XE#1401])
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt:
    - shard-lnl:          [FAIL][221] -> [SKIP][222] ([Intel XE#651])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-dg2-set2:     [SKIP][223] ([Intel XE#651]) -> [SKIP][224] ([Intel XE#1201] / [Intel XE#651]) +26 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-suspend.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
    - shard-lnl:          [FAIL][225] -> [SKIP][226] ([Intel XE#656]) +4 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-dg2-set2:     [SKIP][227] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][228] ([Intel XE#658])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][229] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][230] ([Intel XE#651]) +21 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt:
    - shard-lnl:          [SKIP][231] ([Intel XE#656]) -> [FAIL][232] ([Intel XE#2591])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][233] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][234] ([Intel XE#653]) +21 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
    - shard-dg2-set2:     [SKIP][235] ([Intel XE#653]) -> [SKIP][236] ([Intel XE#1201] / [Intel XE#653]) +26 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-dg2-set2:     [SKIP][237] ([Intel XE#1201] / [Intel XE#417]) -> [SKIP][238] ([Intel XE#417])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][239] ([Intel XE#2318]) -> [SKIP][240] ([Intel XE#1201] / [Intel XE#2318]) +2 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][241] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][242] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2-set2:     [SKIP][243] ([Intel XE#1129]) -> [SKIP][244] ([Intel XE#1129] / [Intel XE#1201])
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2-set2:     [SKIP][245] ([Intel XE#908]) -> [SKIP][246] ([Intel XE#1201] / [Intel XE#908]) +1 other test skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     [SKIP][247] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][248] ([Intel XE#1129])
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     [SKIP][249] ([Intel XE#1489]) -> [SKIP][250] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][251] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][252] ([Intel XE#1489]) +3 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2-set2:     [SKIP][253] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][254] ([Intel XE#1122])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-433/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff:
    - shard-dg2-set2:     [SKIP][255] ([Intel XE#929]) -> [SKIP][256] ([Intel XE#1201] / [Intel XE#929]) +13 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html

  * igt@kms_psr@psr2-cursor-plane-onoff:
    - shard-dg2-set2:     [SKIP][257] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][258] ([Intel XE#929]) +9 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_psr@psr2-cursor-plane-onoff.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_psr@psr2-cursor-plane-onoff.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-dg2-set2:     [SKIP][259] ([Intel XE#327]) -> [SKIP][260] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-90.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][261] ([Intel XE#1127]) -> [SKIP][262] ([Intel XE#1127] / [Intel XE#1201])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-dg2-set2:     [SKIP][263] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][264] ([Intel XE#327])
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     [SKIP][265] ([Intel XE#1201] / [Intel XE#330]) -> [SKIP][266] ([Intel XE#330])
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@cmrr:
    - shard-dg2-set2:     [SKIP][267] ([Intel XE#1201] / [Intel XE#2168]) -> [SKIP][268] ([Intel XE#2168])
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@kms_vrr@cmrr.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][269] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][270] ([Intel XE#455]) +17 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_vrr@flipline.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_vrr@flipline.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-dg2-set2:     [SKIP][271] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][272] ([Intel XE#756])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_writeback@writeback-invalid-parameters.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-dg2-set2:     [SKIP][273] ([Intel XE#756]) -> [SKIP][274] ([Intel XE#1201] / [Intel XE#756])
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_writeback@writeback-pixel-formats.html

  * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
    - shard-dg2-set2:     [SKIP][275] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][276] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][277] ([Intel XE#1123]) -> [SKIP][278] ([Intel XE#1123] / [Intel XE#1201]) +1 other test skip
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_copy_basic@mem-set-linear-0x369:
    - shard-dg2-set2:     [SKIP][279] ([Intel XE#1126]) -> [SKIP][280] ([Intel XE#1126] / [Intel XE#1201])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x369.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][281] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][282] ([Intel XE#1126]) +1 other test skip
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_evict@evict-beng-threads-large:
    - shard-dg2-set2:     [TIMEOUT][283] ([Intel XE#1473]) -> [INCOMPLETE][284] ([Intel XE#1195] / [Intel XE#1473])
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@xe_evict@evict-beng-threads-large.html

  * igt@xe_evict@evict-small-multi-vm-cm:
    - shard-lnl:          [ABORT][285] ([Intel XE#2583]) -> [SKIP][286] ([Intel XE#688])
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-3/igt@xe_evict@evict-small-multi-vm-cm.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@xe_evict@evict-small-multi-vm-cm.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-imm:
    - shard-dg2-set2:     [SKIP][287] ([Intel XE#288]) -> [SKIP][288] ([Intel XE#1201] / [Intel XE#288]) +24 other tests skip
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html

  * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
    - shard-dg2-set2:     [SKIP][289] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][290] ([Intel XE#288]) +20 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html

  * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
    - shard-dg2-set2:     [SKIP][291] ([Intel XE#2360]) -> [SKIP][292] ([Intel XE#1201] / [Intel XE#2360])
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html

  * igt@xe_live_ktest@xe_bo:
    - shard-dg2-set2:     [SKIP][293] ([Intel XE#1192]) -> [SKIP][294] ([Intel XE#1192] / [Intel XE#1201]) +1 other test skip
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_live_ktest@xe_bo.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@xe_live_ktest@xe_bo.html

  * igt@xe_mmap@small-bar:
    - shard-dg2-set2:     [SKIP][295] ([Intel XE#1201] / [Intel XE#512]) -> [SKIP][296] ([Intel XE#512])
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_mmap@small-bar.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_mmap@small-bar.html

  * igt@xe_module_load@load:
    - shard-dg2-set2:     [SKIP][297] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][298] ([Intel XE#378])
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_module_load@load.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_module_load@load.html

  * igt@xe_oa@invalid-create-userspace-config:
    - shard-dg2-set2:     [SKIP][299] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][300] ([Intel XE#2541]) +4 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_oa@invalid-create-userspace-config.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_oa@invalid-create-userspace-config.html

  * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
    - shard-dg2-set2:     [SKIP][301] ([Intel XE#2541]) -> [SKIP][302] ([Intel XE#1201] / [Intel XE#2541]) +5 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][303] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][304] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][305] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][306] ([Intel XE#2284] / [Intel XE#366])
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html
    - shard-lnl:          [SKIP][307] ([Intel XE#2284] / [Intel XE#366]) -> [ABORT][308] ([Intel XE#1358])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@xe_pm@s2idle-d3cold-basic-exec.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_query@multigpu-query-topology:
    - shard-dg2-set2:     [SKIP][309] ([Intel XE#944]) -> [SKIP][310] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_query@multigpu-query-topology.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@xe_query@multigpu-query-topology.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-dg2-set2:     [SKIP][311] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][312] ([Intel XE#944]) +1 other test skip
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html

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

  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
  [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [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#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
  [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
  [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
  [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
  [Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [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#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
  [Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
  [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
  [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2362
  [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
  [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#2400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2400
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2576]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2576
  [Intel XE#2583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583
  [Intel XE#2591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2591
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
  [Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [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#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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [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#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
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804


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

  * IGT: IGT_7982 -> IGTPW_11613
  * Linux: xe-1805-74e833f3bd5db6f5e13d3e660ecdf0d8a7063cac -> xe-1807-ddbda36f876f53498924155abfa1cd4c58517903

  IGTPW_11613: 8e9c328a4a26f146a2cca86f3b116ac89ccb264c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7982: 76ebe4ecfa1757f21e3f1d3be5993088a92cd274 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1805-74e833f3bd5db6f5e13d3e660ecdf0d8a7063cac: 74e833f3bd5db6f5e13d3e660ecdf0d8a7063cac
  xe-1807-ddbda36f876f53498924155abfa1cd4c58517903: ddbda36f876f53498924155abfa1cd4c58517903

== Logs ==

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

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

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

* ✗ Fi.CI.IGT: failure for lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
  2024-08-21 13:58 [PATCH i-g-t v3] lib/gpgpu_fill: Write kernel using inline iga64 api Dominik Grzegorzek
                   ` (2 preceding siblings ...)
  2024-08-22  1:46 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-08-22  2:01 ` Patchwork
  2024-08-22 12:52   ` Grzegorzek, Dominik
  3 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2024-08-22  2:01 UTC (permalink / raw)
  To: Dominik Grzegorzek; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
URL   : https://patchwork.freedesktop.org/series/136983/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15272_full -> IGTPW_11613_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gt_pm:
    - shard-rkl:          [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@i915_selftest@live@gt_pm.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@i915_selftest@live@gt_pm.html

  * igt@kms_sequence@get-idle@pipe-b-hdmi-a-2:
    - shard-glk:          [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk8/igt@kms_sequence@get-idle@pipe-b-hdmi-a-2.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk7/igt@kms_sequence@get-idle@pipe-b-hdmi-a-2.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-dg2:          NOTRUN -> [SKIP][5] ([i915#8411])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@api_intel_bb@object-reloc-purge-cache.html
    - shard-rkl:          NOTRUN -> [SKIP][6] ([i915#8411])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@api_intel_bb@object-reloc-purge-cache.html
    - shard-dg1:          NOTRUN -> [SKIP][7] ([i915#8411])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@debugfs_test@basic-hwmon:
    - shard-rkl:          NOTRUN -> [SKIP][8] ([i915#9318])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@debugfs_test@basic-hwmon.html

  * igt@drm_fdinfo@idle@rcs0:
    - shard-rkl:          NOTRUN -> [FAIL][9] ([i915#7742])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html

  * igt@drm_fdinfo@virtual-busy-hang:
    - shard-dg2:          NOTRUN -> [SKIP][10] ([i915#8414]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@drm_fdinfo@virtual-busy-hang.html

  * igt@gem_busy@semaphore:
    - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#3936])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@gem_busy@semaphore.html
    - shard-dg1:          NOTRUN -> [SKIP][12] ([i915#3936])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@gem_busy@semaphore.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-mtlp:         NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-rkl:          NOTRUN -> [SKIP][14] ([i915#9323])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
    - shard-dg1:          NOTRUN -> [SKIP][15] ([i915#9323])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#7697])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html
    - shard-rkl:          NOTRUN -> [SKIP][17] ([i915#7697])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html

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

  * igt@gem_ctx_persistence@engines-persistence:
    - shard-snb:          NOTRUN -> [SKIP][20] ([i915#1099])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb5/igt@gem_ctx_persistence@engines-persistence.html

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

  * igt@gem_ctx_persistence@heartbeat-stop:
    - shard-dg1:          NOTRUN -> [SKIP][22] ([i915#8555]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-stop.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
    - shard-dg2:          NOTRUN -> [SKIP][23] ([i915#5882]) +6 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-dg2:          NOTRUN -> [SKIP][24] ([i915#280])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@gem_ctx_sseu@invalid-args.html
    - shard-dg1:          NOTRUN -> [SKIP][25] ([i915#280])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-rkl:          NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@hibernate:
    - shard-tglu:         [PASS][27] -> [ABORT][28] ([i915#10030] / [i915#7975] / [i915#8213])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-tglu-9/igt@gem_eio@hibernate.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-10/igt@gem_eio@hibernate.html

  * igt@gem_eio@reset-stress:
    - shard-dg1:          [PASS][29] -> [FAIL][30] ([i915#5784])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg1-17/igt@gem_eio@reset-stress.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@gem_eio@reset-stress.html

  * igt@gem_exec_balancer@bonded-sync:
    - shard-dg2:          NOTRUN -> [SKIP][31] ([i915#4771]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-dg1:          NOTRUN -> [SKIP][32] ([i915#4036])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-13/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-rkl:          NOTRUN -> [SKIP][33] ([i915#4525])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-glk:          NOTRUN -> [FAIL][34] ([i915#2846])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk6/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-flow:
    - shard-dg1:          NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@gem_exec_fair@basic-flow.html

  * igt@gem_exec_fair@basic-pace:
    - shard-dg1:          NOTRUN -> [SKIP][36] ([i915#3539]) +2 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@gem_exec_fair@basic-pace.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][37] -> [FAIL][38] ([i915#2842])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo:
    - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#3539]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@gem_exec_fair@basic-pace-solo.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-tglu:         NOTRUN -> [FAIL][40] ([i915#2842])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_fence@concurrent:
    - shard-dg2:          NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_flush@basic-wb-rw-default:
    - shard-dg2:          NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@gem_exec_flush@basic-wb-rw-default.html

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

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

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

  * igt@gem_exec_reloc@basic-write-gtt-active:
    - shard-dg1:          NOTRUN -> [SKIP][46] ([i915#3281]) +10 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt-active.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-dg1:          NOTRUN -> [SKIP][47] ([i915#4812]) +1 other test skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@gem_exec_schedule@preempt-queue-chain.html

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

  * igt@gem_fence_thrash@bo-copy:
    - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@gem_fence_thrash@bo-copy.html

  * igt@gem_fence_thrash@bo-write-verify-x:
    - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#4860])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-x.html

  * igt@gem_huc_copy@huc-copy:
    - shard-glk:          NOTRUN -> [SKIP][51] ([i915#2190])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - shard-mtlp:         NOTRUN -> [SKIP][52] ([i915#4613])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-engines.html

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

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

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

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          NOTRUN -> [TIMEOUT][56] ([i915#5493])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_media_fill@media-fill:
    - shard-dg2:          NOTRUN -> [SKIP][57] ([i915#8289])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@gem_media_fill@media-fill.html

  * igt@gem_mmap@short-mmap:
    - shard-mtlp:         NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@gem_mmap@short-mmap.html

  * igt@gem_mmap_gtt@basic-small-copy:
    - shard-dg1:          NOTRUN -> [SKIP][59] ([i915#4077]) +8 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy.html

  * igt@gem_mmap_gtt@big-copy:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#4077]) +9 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@gem_mmap_gtt@big-copy.html

  * igt@gem_mmap_wc@invalid-flags:
    - shard-dg2:          NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-4/igt@gem_mmap_wc@invalid-flags.html

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

  * igt@gem_pread@bench:
    - shard-rkl:          NOTRUN -> [SKIP][63] ([i915#3282]) +5 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@gem_pread@bench.html
    - shard-dg1:          NOTRUN -> [SKIP][64] ([i915#3282]) +2 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@gem_pread@bench.html

  * igt@gem_pread@self:
    - shard-dg2:          NOTRUN -> [SKIP][65] ([i915#3282]) +5 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@gem_pread@self.html

  * igt@gem_pxp@create-regular-buffer:
    - shard-mtlp:         NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@gem_pxp@create-regular-buffer.html

  * igt@gem_pxp@display-protected-crc:
    - shard-rkl:          NOTRUN -> [SKIP][67] ([i915#4270])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@gem_pxp@display-protected-crc.html
    - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#4270]) +3 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@gem_pxp@display-protected-crc.html

  * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
    - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html

  * igt@gem_readwrite@read-write:
    - shard-mtlp:         NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@gem_readwrite@read-write.html

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

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

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#4079]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-dg2:          NOTRUN -> [SKIP][74] ([i915#4885])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@gem_softpin@evict-snoop.html

  * igt@gem_tiled_partial_pwrite_pread@reads:
    - shard-mtlp:         NOTRUN -> [SKIP][75] ([i915#4077]) +3 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@gem_tiled_partial_pwrite_pread@reads.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][76] ([i915#4079])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@access-control:
    - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#3297])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@gem_userptr_blits@access-control.html
    - shard-rkl:          NOTRUN -> [SKIP][78] ([i915#3297])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@gem_userptr_blits@access-control.html

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

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-rkl:          NOTRUN -> [SKIP][80] ([i915#3297] / [i915#3323])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-dg2:          NOTRUN -> [SKIP][81] ([i915#3282] / [i915#3297])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-mtlp:         NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

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

  * igt@gen9_exec_parse@batch-without-end:
    - shard-tglu:         NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-6/igt@gen9_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#2856]) +2 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@gen9_exec_parse@secure-batches.html

  * igt@gen9_exec_parse@unaligned-access:
    - shard-rkl:          NOTRUN -> [SKIP][86] ([i915#2527]) +3 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
    - shard-dg1:          NOTRUN -> [SKIP][87] ([i915#2527]) +5 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@gen9_exec_parse@unaligned-access.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-mtlp:         NOTRUN -> [SKIP][88] ([i915#2856])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-tglu:         [PASS][89] -> [ABORT][90] ([i915#9820])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
    - shard-mtlp:         [PASS][91] -> [ABORT][92] ([i915#10887] / [i915#11231])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html

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

  * igt@i915_pm_rps@min-max-config-loaded:
    - shard-dg1:          NOTRUN -> [SKIP][94] ([i915#11681] / [i915#6621])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@i915_pm_rps@min-max-config-loaded.html

  * igt@i915_pm_rps@thresholds-idle-park:
    - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#11681])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@i915_pm_rps@thresholds-idle-park.html

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

  * igt@i915_query@test-query-geometry-subslices:
    - shard-rkl:          NOTRUN -> [SKIP][97] ([i915#5723])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html
    - shard-dg1:          NOTRUN -> [SKIP][98] ([i915#5723])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@i915_query@test-query-geometry-subslices.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][99] ([i915#4817])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-glk:          [PASS][100] -> [INCOMPLETE][101] ([i915#4817])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk7/igt@i915_suspend@fence-restore-tiled2untiled.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk8/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_addfb_basic@addfb25-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][102] ([i915#4212])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-rkl:          NOTRUN -> [SKIP][103] ([i915#3826])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_addfb_basic@tile-pitch-mismatch:
    - shard-dg1:          NOTRUN -> [SKIP][104] ([i915#4212])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html

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

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

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#8709]) +11 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html

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

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

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

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-tglu:         NOTRUN -> [SKIP][112] ([i915#5286])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5286]) +2 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-mtlp:         [PASS][114] -> [FAIL][115] ([i915#5138])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html

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

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

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][118] +9 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-5/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-rkl:          NOTRUN -> [SKIP][119] +26 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-dg2:          NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +11 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-dg1:          NOTRUN -> [SKIP][121] ([i915#4538]) +5 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][122] ([i915#6095]) +11 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][123] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][124] ([i915#6095]) +15 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-edp-1.html

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

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

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][127] ([i915#6095]) +63 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html

  * igt@kms_cdclk@mode-transition:
    - shard-rkl:          NOTRUN -> [SKIP][128] ([i915#3742])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@kms_cdclk@mode-transition.html
    - shard-dg1:          NOTRUN -> [SKIP][129] ([i915#3742])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [SKIP][130] ([i915#7213]) +3 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html

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

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([i915#7828]) +9 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-rkl:          NOTRUN -> [SKIP][133] ([i915#7828]) +9 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@kms_chamelium_frames@vga-frame-dump.html
    - shard-dg1:          NOTRUN -> [SKIP][134] ([i915#7828]) +7 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][135] ([i915#7828])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

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

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-rkl:          NOTRUN -> [SKIP][137] ([i915#3116])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-dg1:          NOTRUN -> [SKIP][138] ([i915#3299])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2:          NOTRUN -> [SKIP][139] ([i915#3299])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@legacy:
    - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#7118] / [i915#9424])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@kms_content_protection@legacy.html
    - shard-rkl:          NOTRUN -> [SKIP][141] ([i915#7118] / [i915#9424])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_content_protection@legacy.html
    - shard-dg1:          NOTRUN -> [SKIP][142] ([i915#7116] / [i915#9424])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_content_protection@legacy.html

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

  * igt@kms_content_protection@mei-interface:
    - shard-dg1:          NOTRUN -> [SKIP][144] ([i915#9424]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@uevent:
    - shard-tglu:         NOTRUN -> [SKIP][145] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-dg1:          NOTRUN -> [SKIP][146] ([i915#3555]) +5 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-32x10.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-snb:          NOTRUN -> [SKIP][147] +51 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb5/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-dg1:          NOTRUN -> [SKIP][148] ([i915#11453]) +2 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][149] ([i915#11453] / [i915#3359])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          NOTRUN -> [SKIP][150] ([i915#11453])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-mtlp:         NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8814])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-max-size.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-rkl:          NOTRUN -> [SKIP][152] ([i915#3555]) +6 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-rkl:          NOTRUN -> [SKIP][153] ([i915#11453]) +2 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213]) +1 other test skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [PASS][155] -> [FAIL][156] ([i915#2346])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@forked-bo@pipe-b:
    - shard-glk:          NOTRUN -> [DMESG-WARN][157] ([i915#10166])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk5/igt@kms_cursor_legacy@forked-bo@pipe-b.html

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

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-rkl:          NOTRUN -> [SKIP][159] ([i915#8588])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_display_modes@mst-extended-mode-negative.html
    - shard-dg1:          NOTRUN -> [SKIP][160] ([i915#8588])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_display_modes@mst-extended-mode-negative.html

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

  * igt@kms_dp_aux_dev:
    - shard-dg2:          [PASS][162] -> [SKIP][163] ([i915#1257])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-11/igt@kms_dp_aux_dev.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_dp_aux_dev.html

  * igt@kms_dsc@dsc-basic:
    - shard-rkl:          NOTRUN -> [SKIP][164] ([i915#3555] / [i915#3840])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_dsc@dsc-basic.html
    - shard-dg1:          NOTRUN -> [SKIP][165] ([i915#3555] / [i915#3840]) +1 other test skip
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_dsc@dsc-basic.html

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

  * igt@kms_feature_discovery@chamelium:
    - shard-rkl:          NOTRUN -> [SKIP][167] ([i915#4854])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
    - shard-dg1:          NOTRUN -> [SKIP][168] ([i915#4854])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_feature_discovery@chamelium.html

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

  * igt@kms_feature_discovery@psr2:
    - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#658])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_feature_discovery@psr2.html
    - shard-dg2:          NOTRUN -> [SKIP][171] ([i915#658])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@kms_feature_discovery@psr2.html
    - shard-rkl:          NOTRUN -> [SKIP][172] ([i915#658])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-1/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          NOTRUN -> [SKIP][173] +16 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html

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

  * igt@kms_flip@2x-plain-flip-interruptible:
    - shard-dg1:          NOTRUN -> [SKIP][175] ([i915#9934]) +5 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_flip@2x-plain-flip-interruptible.html

  * igt@kms_flip@flip-vs-fences:
    - shard-dg2:          NOTRUN -> [SKIP][176] ([i915#8381]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_flip@flip-vs-fences.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][177] ([i915#2672]) +4 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
    - shard-dg1:          NOTRUN -> [SKIP][178] ([i915#2587] / [i915#2672]) +3 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][180] ([i915#2587] / [i915#2672])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][182] ([i915#2672] / [i915#3555])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [FAIL][183] ([i915#6880])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][185] ([i915#3458]) +15 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu:
    - shard-tglu:         NOTRUN -> [SKIP][186] +14 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][188] ([i915#8708]) +21 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][189] ([i915#3023]) +21 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
    - shard-dg1:          NOTRUN -> [SKIP][190] +37 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][191] ([i915#1825]) +46 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][192] ([i915#8708]) +20 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

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

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@static-toggle:
    - shard-rkl:          NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) +2 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_hdr@static-toggle.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg1:          NOTRUN -> [SKIP][196] ([i915#1839])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-dg2:          NOTRUN -> [SKIP][197] ([i915#6301])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_panel_fitting@legacy.html

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

  * igt@kms_plane_lowres@tiling-4:
    - shard-tglu:         NOTRUN -> [SKIP][199] ([i915#3555]) +1 other test skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-10/igt@kms_plane_lowres@tiling-4.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-dg2:          NOTRUN -> [SKIP][200] ([i915#5354] / [i915#9423])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [FAIL][201] ([i915#8292])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][202] ([i915#8292])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][203] ([i915#9423]) +24 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][204] ([i915#9423]) +3 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][205] ([i915#9423]) +3 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][206] ([i915#5235] / [i915#9423]) +2 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][207] ([i915#5235]) +1 other test skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][208] ([i915#9728]) +5 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][209] ([i915#9728]) +7 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][210] ([i915#5354])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][211] ([i915#5354])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-mtlp:         NOTRUN -> [SKIP][212] ([i915#9292])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg1:          NOTRUN -> [SKIP][213] ([i915#9685])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg1:          NOTRUN -> [SKIP][214] ([i915#3361])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2:          NOTRUN -> [SKIP][215] ([i915#9685])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-tglu:         [PASS][216] -> [SKIP][217] ([i915#4281])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][218] ([i915#9340])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-tglu:         NOTRUN -> [SKIP][219] ([i915#8430])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-3/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][220] ([i915#9519])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html
    - shard-rkl:          NOTRUN -> [SKIP][221] ([i915#9519]) +3 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg1:          NOTRUN -> [SKIP][222] ([i915#9519])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_prime@basic-crc-vgem:
    - shard-dg2:          NOTRUN -> [SKIP][223] ([i915#6524] / [i915#6805])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html

  * igt@kms_prime@basic-modeset-hybrid:
    - shard-rkl:          NOTRUN -> [SKIP][224] ([i915#6524])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html

  * igt@kms_prime@d3hot:
    - shard-dg1:          NOTRUN -> [SKIP][225] ([i915#6524]) +1 other test skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
    - shard-tglu:         NOTRUN -> [SKIP][226] ([i915#11520])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html

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

  * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
    - shard-dg2:          NOTRUN -> [SKIP][228] ([i915#11520]) +4 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
    - shard-rkl:          NOTRUN -> [SKIP][229] ([i915#11520]) +7 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][230] ([i915#9808]) +1 other test skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][231] ([i915#9683]) +1 other test skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr-primary-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][232] ([i915#1072] / [i915#9732]) +20 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_psr@fbc-psr-primary-mmap-gtt.html

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-dg2:          NOTRUN -> [SKIP][233] ([i915#1072] / [i915#9673] / [i915#9732])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
    - shard-glk:          NOTRUN -> [SKIP][234] +288 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk8/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html

  * igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
    - shard-tglu:         NOTRUN -> [SKIP][235] ([i915#9732]) +6 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-7/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-rkl:          NOTRUN -> [SKIP][236] ([i915#1072] / [i915#9732]) +18 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_psr@pr-cursor-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][237] ([i915#1072] / [i915#9732]) +19 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_psr@pr-cursor-mmap-gtt.html

  * igt@kms_psr@pr-primary-render:
    - shard-mtlp:         NOTRUN -> [SKIP][238] ([i915#9688]) +6 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-6/igt@kms_psr@pr-primary-render.html

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

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          NOTRUN -> [SKIP][240] ([i915#11131])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-dg1:          NOTRUN -> [SKIP][241] ([i915#5289])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
    - shard-mtlp:         NOTRUN -> [SKIP][242] ([i915#4235])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-dg2:          NOTRUN -> [SKIP][243] ([i915#3555]) +1 other test skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-mtlp:         NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8809])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          [PASS][245] -> [FAIL][246] ([IGT#2])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-11/igt@kms_sysfs_edid_timing.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@kms_sysfs_edid_timing.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg1:          NOTRUN -> [SKIP][247] ([i915#8623])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern.html
    - shard-rkl:          NOTRUN -> [SKIP][248] ([i915#8623])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
    - shard-rkl:          [PASS][249] -> [FAIL][250] ([i915#9196])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
    - shard-snb:          [PASS][251] -> [FAIL][252] ([i915#9196])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html

  * igt@kms_vrr@flipline:
    - shard-mtlp:         NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8808])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-4/igt@kms_vrr@flipline.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-rkl:          NOTRUN -> [SKIP][254] ([i915#9906])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html
    - shard-dg2:          NOTRUN -> [SKIP][255] ([i915#9906])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@kms_writeback@writeback-check-output:
    - shard-dg1:          NOTRUN -> [SKIP][256] ([i915#2437]) +1 other test skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@kms_writeback@writeback-check-output.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-dg1:          NOTRUN -> [SKIP][257] ([i915#2437] / [i915#9412])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-glk:          NOTRUN -> [SKIP][258] ([i915#2437])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk6/igt@kms_writeback@writeback-fb-id.html
    - shard-dg2:          NOTRUN -> [SKIP][259] ([i915#2437])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html

  * igt@perf_pmu@busy-idle@vcs1:
    - shard-mtlp:         NOTRUN -> [FAIL][260] ([i915#4349]) +3 other tests fail
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@perf_pmu@busy-idle@vcs1.html

  * igt@perf_pmu@module-unload:
    - shard-snb:          [PASS][261] -> [ABORT][262] ([i915#9853])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb4/igt@perf_pmu@module-unload.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb6/igt@perf_pmu@module-unload.html
    - shard-dg2:          NOTRUN -> [FAIL][263] ([i915#11823])
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@perf_pmu@module-unload.html

  * igt@prime_vgem@basic-write:
    - shard-dg1:          NOTRUN -> [SKIP][264] ([i915#3708]) +1 other test skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@prime_vgem@basic-write.html
    - shard-mtlp:         NOTRUN -> [SKIP][265] ([i915#10216] / [i915#3708])
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@prime_vgem@basic-write.html

  * igt@prime_vgem@fence-write-hang:
    - shard-dg2:          NOTRUN -> [SKIP][266] ([i915#3708]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@prime_vgem@fence-write-hang.html
    - shard-rkl:          NOTRUN -> [SKIP][267] ([i915#3708])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@prime_vgem@fence-write-hang.html

  * igt@sriov_basic@bind-unbind-vf:
    - shard-dg1:          NOTRUN -> [SKIP][268] ([i915#9917]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@sriov_basic@bind-unbind-vf.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-rkl:          NOTRUN -> [SKIP][269] ([i915#9917])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html

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

  * igt@syncobj_wait@invalid-wait-zero-handles:
    - shard-dg2:          NOTRUN -> [FAIL][271] ([i915#9781])
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@syncobj_wait@invalid-wait-zero-handles.html
    - shard-rkl:          NOTRUN -> [FAIL][272] ([i915#9781])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@syncobj_wait@invalid-wait-zero-handles.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-dg1:          NOTRUN -> [SKIP][273] ([i915#4818])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html
    - shard-mtlp:         NOTRUN -> [SKIP][274] ([i915#4818])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@fbdev@read:
    - shard-mtlp:         [FAIL][275] -> [PASS][276]
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-7/igt@fbdev@read.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@fbdev@read.html
    - shard-snb:          [FAIL][277] -> [PASS][278]
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb2/igt@fbdev@read.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb7/igt@fbdev@read.html

  * igt@gem_ctx_engines@invalid-engines:
    - shard-rkl:          [FAIL][279] -> [PASS][280]
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html

  * igt@gem_exec_fair@basic-none@bcs0:
    - shard-rkl:          [FAIL][281] ([i915#2842]) -> [PASS][282] +3 other tests pass
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html

  * igt@gem_mmap_offset@clear@smem0:
    - shard-mtlp:         [INCOMPLETE][283] ([i915#5493]) -> [PASS][284]
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html

  * igt@i915_module_load@reload-no-display:
    - shard-snb:          [ABORT][285] ([i915#11703]) -> [PASS][286]
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb5/igt@i915_module_load@reload-no-display.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb2/igt@i915_module_load@reload-no-display.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-rkl:          [ABORT][287] ([i915#9820]) -> [PASS][288]
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html
    - shard-dg1:          [ABORT][289] ([i915#9820]) -> [PASS][290]
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html
    - shard-glk:          [ABORT][291] ([i915#9820]) -> [PASS][292]
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk7/igt@i915_module_load@reload-with-fault-injection.html
    - shard-dg2:          [ABORT][293] ([i915#9820]) -> [PASS][294]
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
    - shard-dg2:          [FAIL][295] ([i915#3591]) -> [PASS][296]
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html

  * igt@i915_pm_rps@reset:
    - shard-dg1:          [FAIL][297] -> [PASS][298]
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg1-17/igt@i915_pm_rps@reset.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@i915_pm_rps@reset.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs:
    - shard-glk:          [FAIL][299] ([i915#11859]) -> [PASS][300]
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk9/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
    - shard-tglu:         [FAIL][301] ([i915#11808]) -> [PASS][302]
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-tglu-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-0:
    - shard-mtlp:         [ABORT][303] -> [PASS][304]
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-mtlp:         [ABORT][305] ([i915#10354]) -> [PASS][306]
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_flip@2x-absolute-wf_vblank@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [INCOMPLETE][307] -> [PASS][308]
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk7/igt@kms_flip@2x-absolute-wf_vblank@bc-hdmi-a1-hdmi-a2.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk6/igt@kms_flip@2x-absolute-wf_vblank@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2:
    - shard-rkl:          [FAIL][309] ([i915#11989]) -> [PASS][310]
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-dg2:          [SKIP][311] ([i915#9519]) -> [PASS][312]
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-mtlp:         [FAIL][313] ([i915#9196]) -> [PASS][314]
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
    - shard-snb:          [FAIL][315] ([i915#9196]) -> [PASS][316]
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
    - shard-tglu:         [FAIL][317] ([i915#9196]) -> [PASS][318]
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html

  * igt@perf_pmu@busy@vcs1:
    - shard-mtlp:         [FAIL][319] ([i915#4349]) -> [PASS][320] +1 other test pass
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-2/igt@perf_pmu@busy@vcs1.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@perf_pmu@busy@vcs1.html

  * igt@perf_pmu@module-unload:
    - shard-dg1:          [DMESG-WARN][321] ([i915#1982] / [i915#4391] / [i915#4423]) -> [PASS][322]
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg1-15/igt@perf_pmu@module-unload.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@perf_pmu@module-unload.html

  * igt@perf_pmu@most-busy-idle-check-all@rcs0:
    - shard-mtlp:         [FAIL][323] ([i915#11822]) -> [PASS][324]
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html

  * igt@perf_pmu@semaphore-wait@rcs0:
    - shard-dg2:          [FAIL][325] -> [PASS][326] +1 other test pass
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-4/igt@perf_pmu@semaphore-wait@rcs0.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@perf_pmu@semaphore-wait@rcs0.html

  
#### Warnings ####

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg2:          [DMESG-WARN][327] ([i915#4936] / [i915#5493]) -> [TIMEOUT][328] ([i915#5493])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@kms_content_protection@lic-type-0:
    - shard-snb:          [SKIP][329] -> [INCOMPLETE][330] ([i915#8816])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb2/igt@kms_content_protection@lic-type-0.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb7/igt@kms_content_protection@lic-type-0.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          [SKIP][331] ([i915#11453] / [i915#3359]) -> [SKIP][332] ([i915#11453])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-dg2:          [SKIP][333] ([i915#11453]) -> [SKIP][334] ([i915#11453] / [i915#3359])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
    - shard-dg2:          [SKIP][335] ([i915#10433] / [i915#3458]) -> [SKIP][336] ([i915#3458]) +1 other test skip
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          [SKIP][337] ([i915#4070] / [i915#4816]) -> [SKIP][338] ([i915#4816])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-rkl:          [FAIL][339] ([i915#9295]) -> [SKIP][340] ([i915#3361])
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_psr@psr-primary-mmap-cpu:
    - shard-dg2:          [SKIP][341] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][342] ([i915#1072] / [i915#9732]) +8 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-11/igt@kms_psr@psr-primary-mmap-cpu.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@kms_psr@psr-primary-mmap-cpu.html

  * igt@kms_psr@psr2-primary-mmap-gtt:
    - shard-dg2:          [SKIP][343] ([i915#1072] / [i915#9732]) -> [SKIP][344] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-4/igt@kms_psr@psr2-primary-mmap-gtt.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html

  
  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
  [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
  [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10354
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
  [i915#11231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11231
  [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
  [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
  [i915#11822]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11822
  [i915#11823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11823
  [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
  [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
  [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
  [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
  [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
  [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
  [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
  [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#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
  [i915#4936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936
  [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
  [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
  [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
  [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
  [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
  [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
  [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
  [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
  [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
  [i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
  [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
  [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
  [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
  [i915#9853]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9853
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7982 -> IGTPW_11613
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_15272: ddbda36f876f53498924155abfa1cd4c58517903 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11613: 8e9c328a4a26f146a2cca86f3b116ac89ccb264c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7982: 76ebe4ecfa1757f21e3f1d3be5993088a92cd274 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: ✗ CI.xeFULL: failure for lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
  2024-08-22  1:46 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-08-22 12:31   ` Grzegorzek, Dominik
  0 siblings, 0 replies; 7+ messages in thread
From: Grzegorzek, Dominik @ 2024-08-22 12:31 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org

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

On Thu, 2024-08-22 at 01:46 +0000, Patchwork wrote:
Patch Details
Series: lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
URL:    https://patchwork.freedesktop.org/series/136983/
State:  failure
Details:        https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/index.html
CI Bug Log - changes from XEIGT_7982_full -> XEIGTPW_11613_full
Summary

FAILURE

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

If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11613_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_11613_full:

IGT changes
Possible regressions

  *   igt@kms_async_flips@test-cursor@pipe-b-edp-1:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_async_flips@test-cursor@pipe-b-edp-1.html>
  *   igt@kms_flip@absolute-wf_vblank-interruptible@b-edp1:

     *   shard-lnl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@kms_flip@absolute-wf_vblank-interruptible@b-edp1.html> +1 other test dmesg-warn
  *   igt@kms_flip@basic-flip-vs-modeset:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-3/igt@kms_flip@basic-flip-vs-modeset.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_flip@basic-flip-vs-modeset.html> +10 other tests fail
  *   igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html> +31 other tests fail
  *   igt@xe_exec_threads@threads-userptr:

     *   shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@xe_exec_threads@threads-userptr.html> +2 other tests abort
  *   igt@xe_wedged@wedged-mode-toggle:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-7/igt@xe_wedged@wedged-mode-toggle.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@xe_wedged@wedged-mode-toggle.html> +3 other tests abort

Only xe_gpgpu_fill touched in this series. So non related failures.

Regards,
Dominik
Warnings

  *   igt@kms_big_fb@linear-32bpp-rotate-90:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_big_fb@linear-32bpp-rotate-90.html> +1 other test fail
  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> +2 other tests fail
  *   igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html> (Intel XE#1399<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html> +1 other test fail
  *   igt@kms_chamelium_hpd@vga-hpd-after-suspend:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html> +1 other test fail
  *   igt@kms_cursor_crc@cursor-random-512x512:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x512.html> (Intel XE#1413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_cursor_crc@cursor-random-512x512.html>
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html>
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html>
  *   igt@kms_hdr@invalid-metadata-sizes:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503> / Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_hdr@invalid-metadata-sizes.html>
  *   igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html> (Intel XE#2318<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html>

Suppressed

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

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

     *   {shard-bmg}: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html>
  *   igt@kms_cursor_legacy@torture-move@pipe-b:

     *   {shard-bmg}: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-5/igt@kms_cursor_legacy@torture-move@pipe-b.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-8/igt@kms_cursor_legacy@torture-move@pipe-b.html>
  *   igt@kms_flip@2x-blocking-wf_vblank:

     *   {shard-bmg}: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank.html> +2 other tests abort
  *   igt@kms_sequence@get-busy:

     *   {shard-bmg}: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-4/igt@kms_sequence@get-busy.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-8/igt@kms_sequence@get-busy.html> +2 other tests incomplete
  *   igt@xe_exec_fault_mode@many-execqueues-rebind:

     *   {shard-bmg}: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-rebind.html> (Intel XE#2583<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-rebind.html>
  *   igt@xe_pm@s3-d3hot-basic-exec:

     *   {shard-bmg}: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-8/igt@xe_pm@s3-d3hot-basic-exec.html> +2 other tests abort

Known issues

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

IGT changes
Issues hit

  *   igt@intel_hwmon@hwmon-write:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@intel_hwmon@hwmon-write.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>)
  *   igt@kms_3d:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_3d.html> (Intel XE#1465<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465>)
  *   igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#1466<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466>)
  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3 other tests fail
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (Intel XE#1659<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659>)
  *   igt@kms_big_fb@x-tiled-64bpp-rotate-90:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +5 other tests skip
  *   igt@kms_big_fb@y-tiled-32bpp-rotate-0:

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

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>)
  *   igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) +1 other test skip
  *   igt@kms_big_joiner@basic:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_big_joiner@basic.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
  *   igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +1 other test skip
  *   igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) +2 other tests skip
  *   igt@kms_bw@linear-tiling-2-displays-2560x1440p:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
  *   igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html> (Intel XE#2576<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2576>) +3 other tests fail
  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html> (Intel XE#1399<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399>) +25 other tests skip
  *   igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +1 other test skip
  *   igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +6 other tests skip
  *   igt@kms_cdclk@plane-scaling:

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

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@kms_chamelium_color@ctm-blue-to-red.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +4 other tests skip
  *   igt@kms_chamelium_edid@dp-edid-change-during-suspend:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +14 other tests skip
  *   igt@kms_content_protection@dp-mst-lic-type-0:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) +2 other tests skip
  *   igt@kms_cursor_crc@cursor-onscreen-512x512:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (Intel XE#1413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413>) +1 other test skip
  *   igt@kms_cursor_crc@cursor-rapid-movement-256x85:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +5 other tests skip
  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:

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

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +5 other tests skip
  *   igt@kms_dsc@dsc-with-output-formats-with-bpc:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +6 other tests skip
  *   igt@kms_feature_discovery@display-3x:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
  *   igt@kms_flip@2x-flip-vs-rmfb-interruptible:

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

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1551<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551> / Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>)
  *   igt@kms_flip@flip-vs-suspend@a-hdmi-a6:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html> (Intel XE#1551<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551>)
  *   igt@kms_flip@flip-vs-suspend@d-dp4:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049>)
  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) +1 other test incomplete
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:

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

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

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

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +10 other tests skip
  *   igt@kms_force_connector_basic@prune-stale-modes:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@kms_force_connector_basic@prune-stale-modes.html> (Intel XE#352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/352>) +1 other test skip
  *   igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +24 other tests skip
  *   igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +2 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-suspend:

     *   shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-suspend.html> (Intel XE#2019<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019>)
  *   igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html> (Intel XE#2583<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583>) +10 other tests abort
  *   igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-edp-1:

     *   shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-edp-1.html> (Intel XE#2583<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583>) +5 other tests abort
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +67 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +3 other tests skip
  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#498<https://gitlab.freedesktop.org/drm/xe/kernel/issues/498>) +1 other test skip
  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html> (Intel XE#498<https://gitlab.freedesktop.org/drm/xe/kernel/issues/498>) +2 other tests skip
  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-edp-1:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-edp-1.html> (Intel XE#498<https://gitlab.freedesktop.org/drm/xe/kernel/issues/498>) +3 other tests skip
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:

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

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1128<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>)
  *   igt@kms_psr@fbc-psr-sprite-plane-move:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-move.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>)
  *   igt@kms_psr@pr-cursor-plane-move:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_psr@pr-cursor-plane-move.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +3 other tests skip
  *   igt@kms_rotation_crc@bad-tiling:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_rotation_crc@bad-tiling.html> (Intel XE#1437<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437>) +2 other tests skip
  *   igt@kms_setmode@basic-clone-single-crtc:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@kms_setmode@basic-clone-single-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) +1 other test skip
  *   igt@kms_vblank@ts-continuation-suspend:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_vblank@ts-continuation-suspend.html> (Intel XE#2019<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019>) +2 other tests dmesg-warn
  *   igt@kms_vrr@max-min:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-3/igt@kms_vrr@max-min.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_vrr@max-min.html> (Intel XE#2443<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) +1 other test fail
  *   igt@kms_vrr@seamless-rr-switch-drrs:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-drrs.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499> / Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>)
  *   igt@kms_writeback@writeback-pixel-formats:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_writeback@writeback-pixel-formats.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +1 other test skip
  *   igt@xe_create@create-big-vram:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@xe_create@create-big-vram.html> (Intel XE#1062<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062>)
  *   igt@xe_evict@evict-beng-mixed-many-threads-small:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#402<https://gitlab.freedesktop.org/drm/xe/kernel/issues/402>)
  *   igt@xe_evict@evict-beng-threads-large-multi-vm:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@xe_evict@evict-beng-threads-large-multi-vm.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +19 other tests skip
  *   igt@xe_evict@evict-cm-threads-large:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@xe_evict@evict-cm-threads-large.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
  *   igt@xe_evict@evict-mixed-threads-large:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_evict@evict-mixed-threads-large.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) +2 other tests timeout
  *   igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +12 other tests skip
  *   igt@xe_exec_fault_mode@once-rebind-prefetch:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-prefetch.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +3 other tests skip
  *   igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
  *   igt@xe_module_load@load:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@xe_module_load@load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
  *   igt@xe_oa@mmio-triggered-reports:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html> (Intel XE#2249<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249>) +1 other test fail
  *   igt@xe_oa@oa-tlb-invalidate:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>)
  *   igt@xe_pat@pat-index-xelp:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-5/igt@xe_pat@pat-index-xelp.html> (Intel XE#977<https://gitlab.freedesktop.org/drm/xe/kernel/issues/977>)
  *   igt@xe_peer2peer@read:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-4/igt@xe_peer2peer@read.html> (Intel XE#1061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061>) +1 other test skip
  *   igt@xe_pm@d3cold-basic-exec:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@xe_pm@d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +1 other test skip
  *   igt@xe_pm@s3-multiple-execs:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@xe_pm@s3-multiple-execs.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>) +3 other tests skip
  *   igt@xe_query@multigpu-query-cs-cycles:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@xe_query@multigpu-query-cs-cycles.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 other test skip
  *   igt@xe_wedged@basic-wedged:

     *   shard-lnl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@xe_wedged@basic-wedged.html> (Intel XE#1760<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760>)

Possible fixes

  *   igt@kms_async_flips@test-cursor:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_async_flips@test-cursor.html> (Intel XE#664<https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_async_flips@test-cursor.html>
  *   igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> +11 other tests pass
  *   igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2:

     *   {shard-bmg}: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-4/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-6/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2.html> +1 other test pass
  *   igt@kms_flip@2x-blocking-absolute-wf_vblank:

     *   shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_flip@2x-blocking-absolute-wf_vblank.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_flip@2x-blocking-absolute-wf_vblank.html> +3 other tests pass
  *   igt@kms_flip@2x-flip-vs-panning@ad-dp2-hdmi-a3:

     *   {shard-bmg}: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning@ad-dp2-hdmi-a3.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning@ad-dp2-hdmi-a3.html>
  *   igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt:

     *   {shard-bmg}: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html> (Intel XE#2583<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html> +1 other test pass
  *   igt@kms_plane@plane-position-covered:

     *   {shard-bmg}: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-3/igt@kms_plane@plane-position-covered.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-1/igt@kms_plane@plane-position-covered.html> +1 other test pass
  *   igt@xe_evict@evict-beng-mixed-many-threads-small:

     *   {shard-bmg}: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html>
  *   igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind:

     *   shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind.html> (Intel XE#2583<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind.html> +8 other tests pass
  *   igt@xe_pm@s4-mocs:

     *   shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_pm@s4-mocs.html> (Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@xe_pm@s4-mocs.html>

Warnings

  *   igt@kms_async_flips@invalid-async-flip:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
  *   igt@kms_big_fb@linear-16bpp-rotate-270:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-270.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +2 other tests skip
  *   igt@kms_big_fb@linear-16bpp-rotate-90:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-90.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>)
  *   igt@kms_big_fb@y-tiled-addfb:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#619<https://gitlab.freedesktop.org/drm/xe/kernel/issues/619>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html> (Intel XE#619<https://gitlab.freedesktop.org/drm/xe/kernel/issues/619>)
  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:

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

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +5 other tests skip
  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-180:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>)
  *   igt@kms_big_fb@yf-tiled-addfb-size-overflow:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
  *   igt@kms_big_joiner@basic:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_big_joiner@basic.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_big_joiner@basic.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
  *   igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip
  *   igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +3 other tests skip
  *   igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
  *   igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +83 other tests skip
  *   igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html> (Intel XE#1252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#1252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252>) +1 other test skip
  *   igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +83 other tests skip
  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +23 other tests skip
  *   igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html> (Intel XE#1399<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399>)
  *   igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +23 other tests skip
  *   igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#1252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html> (Intel XE#1252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252>)
  *   igt@kms_chamelium_color@ctm-red-to-blue:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +2 other tests skip
  *   igt@kms_chamelium_color@gamma:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_chamelium_color@gamma.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_chamelium_color@gamma.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +2 other tests skip
  *   igt@kms_chamelium_hpd@hdmi-hpd:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +8 other tests skip
  *   igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +5 other tests skip
  *   igt@kms_chamelium_hpd@vga-hpd-without-ddc:

     *   shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html> (Intel XE#2583<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>)
  *   igt@kms_content_protection@dp-mst-lic-type-0:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) +1 other test skip
  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)
  *   igt@kms_content_protection@lic-type-1:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_content_protection@lic-type-1.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_content_protection@lic-type-1.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +13 other tests skip
  *   igt@kms_cursor_crc@cursor-onscreen-512x512:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) +1 other test skip
  *   igt@kms_cursor_crc@cursor-rapid-movement-64x21:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>)
  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>)
  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +2 other tests skip
  *   igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html> (i915#3804<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / i915#3804<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
  *   igt@kms_feature_discovery@display-3x:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_feature_discovery@display-3x.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
  *   igt@kms_feature_discovery@dp-mst:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html> (Intel XE#1137<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html> (Intel XE#1137<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>)
  *   igt@kms_feature_discovery@psr2:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_feature_discovery@psr2.html> (Intel XE#1135<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@kms_feature_discovery@psr2.html> (Intel XE#1135<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>)
  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:

     *   shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#2583<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>)
  *   igt@kms_flip@2x-flip-vs-panning:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_flip@2x-flip-vs-panning.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-1/igt@kms_flip@2x-flip-vs-panning.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>)
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:

     *   shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> (Intel XE#2583<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>)
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode:

     *   shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html> (Intel XE#2583<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>)
  *   igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>)
  *   igt@kms_frontbuffer_tracking@drrs-suspend:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +26 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +4 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-tiling-y:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> (Intel XE#658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/658>)
  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +21 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html> (Intel XE#2591<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2591>)
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +21 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +26 other tests skip
  *   igt@kms_hdmi_inject@inject-audio:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#417<https://gitlab.freedesktop.org/drm/xe/kernel/issues/417>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_hdmi_inject@inject-audio.html> (Intel XE#417<https://gitlab.freedesktop.org/drm/xe/kernel/issues/417>)
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html> (Intel XE#2318<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#2318<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318>) +2 other tests skip
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html> (Intel XE#2318<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#2318<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip
  *   igt@kms_pm_dc@dc5-psr:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html> (Intel XE#1129<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html> (Intel XE#1129<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>)
  *   igt@kms_pm_dc@dc6-dpms:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#908<https://gitlab.freedesktop.org/drm/xe/kernel/issues/908>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#908<https://gitlab.freedesktop.org/drm/xe/kernel/issues/908>) +1 other test skip
  *   igt@kms_pm_dc@dc6-psr:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html> (Intel XE#1129<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html> (Intel XE#1129<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129>)
  *   igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +3 other tests skip
  *   igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +3 other tests skip
  *   igt@kms_psr2_su@frontbuffer-xrgb8888:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-433/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (Intel XE#1122<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (Intel XE#1122<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122>)
  *   igt@kms_psr@fbc-psr2-cursor-plane-onoff:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html> (Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +13 other tests skip
  *   igt@kms_psr@psr2-cursor-plane-onoff:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_psr@psr2-cursor-plane-onoff.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_psr@psr2-cursor-plane-onoff.html> (Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +9 other tests skip
  *   igt@kms_rotation_crc@primary-rotation-90:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-90.html> (Intel XE#327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>) +1 other test skip
  *   igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>)
  *   igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (Intel XE#327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>)
  *   igt@kms_tv_load_detect@load-detect:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/330>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html> (Intel XE#330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/330>)
  *   igt@kms_vrr@cmrr:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@kms_vrr@cmrr.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_vrr@cmrr.html> (Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>)
  *   igt@kms_vrr@flipline:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@kms_vrr@flipline.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_vrr@flipline.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +17 other tests skip
  *   igt@kms_writeback@writeback-invalid-parameters:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
  *   igt@kms_writeback@writeback-pixel-formats:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@kms_writeback@writeback-pixel-formats.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
  *   igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html> (Intel XE#1280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#1280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip
  *   igt@xe_copy_basic@mem-copy-linear-0x3fff:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html> (Intel XE#1123<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x3fff.html> (Intel XE#1123<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) +1 other test skip
  *   igt@xe_copy_basic@mem-set-linear-0x369:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x369.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>)
  *   igt@xe_copy_basic@mem-set-linear-0xfffe:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126>) +1 other test skip
  *   igt@xe_evict@evict-beng-threads-large:

     *   shard-dg2-set2: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@xe_evict@evict-beng-threads-large.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
  *   igt@xe_evict@evict-small-multi-vm-cm:

     *   shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-3/igt@xe_evict@evict-small-multi-vm-cm.html> (Intel XE#2583<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-7/igt@xe_evict@evict-small-multi-vm-cm.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>)
  *   igt@xe_exec_fault_mode@once-bindexecqueue-imm:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +24 other tests skip
  *   igt@xe_exec_fault_mode@once-invalid-userptr-fault:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-466/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +20 other tests skip
  *   igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html> (Intel XE#2360<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#2360<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360>)
  *   igt@xe_live_ktest@xe_bo:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_live_ktest@xe_bo.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-466/igt@xe_live_ktest@xe_bo.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192> / Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) +1 other test skip
  *   igt@xe_mmap@small-bar:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_mmap@small-bar.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/512>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_mmap@small-bar.html> (Intel XE#512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/512>)
  *   igt@xe_module_load@load:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_module_load@load.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_module_load@load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
  *   igt@xe_oa@invalid-create-userspace-config:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_oa@invalid-create-userspace-config.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_oa@invalid-create-userspace-config.html> (Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) +4 other tests skip
  *   igt@xe_oa@oa-unit-exclusive-stream-sample-oa:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html> (Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) +5 other tests skip
  *   igt@xe_pm@d3cold-basic-exec:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +1 other test skip
  *   igt@xe_pm@s2idle-d3cold-basic-exec:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>)
     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-lnl-6/igt@xe_pm@s2idle-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-lnl-8/igt@xe_pm@s2idle-d3cold-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358>)
  *   igt@xe_query@multigpu-query-topology:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-432/igt@xe_query@multigpu-query-topology.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-433/igt@xe_query@multigpu-query-topology.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 other test skip
  *   igt@xe_query@multigpu-query-uc-fw-version-guc:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7982/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html> (Intel XE#1201<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11613/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 other test skip

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

Build changes

  *   IGT: IGT_7982 -> IGTPW_11613
  *   Linux: xe-1805-74e833f3bd5db6f5e13d3e660ecdf0d8a7063cac -> xe-1807-ddbda36f876f53498924155abfa1cd4c58517903

IGTPW_11613: 8e9c328a4a26f146a2cca86f3b116ac89ccb264c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7982: 76ebe4ecfa1757f21e3f1d3be5993088a92cd274 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1805-74e833f3bd5db6f5e13d3e660ecdf0d8a7063cac: 74e833f3bd5db6f5e13d3e660ecdf0d8a7063cac
xe-1807-ddbda36f876f53498924155abfa1cd4c58517903: ddbda36f876f53498924155abfa1cd4c58517903


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

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

* Re: ✗ Fi.CI.IGT: failure for lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
  2024-08-22  2:01 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-08-22 12:52   ` Grzegorzek, Dominik
  0 siblings, 0 replies; 7+ messages in thread
From: Grzegorzek, Dominik @ 2024-08-22 12:52 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org

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

On Thu, 2024-08-22 at 02:01 +0000, Patchwork wrote:
Patch Details
Series: lib/gpgpu_fill: Write kernel using inline iga64 api (rev4)
URL:    https://patchwork.freedesktop.org/series/136983/
State:  failure
Details:        https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/index.html
CI Bug Log - changes from CI_DRM_15272_full -> IGTPW_11613_full
Summary

FAILURE

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

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

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

Participating hosts (9 -> 9)

No changes in participating hosts

Possible new issues

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

IGT changes
Possible regressions

  *   igt@i915_selftest@live@gt_pm:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@i915_selftest@live@gt_pm.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@i915_selftest@live@gt_pm.html>
  *   igt@kms_sequence@get-idle@pipe-b-hdmi-a-2:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk8/igt@kms_sequence@get-idle@pipe-b-hdmi-a-2.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk7/igt@kms_sequence@get-idle@pipe-b-hdmi-a-2.html>

Not related,
Regards, Dominik
Known issues

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

IGT changes
Issues hit

  *   igt@api_intel_bb@object-reloc-purge-cache:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
  *   igt@debugfs_test@basic-hwmon:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@debugfs_test@basic-hwmon.html> (i915#9318<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>)
  *   igt@drm_fdinfo@idle@rcs0:

     *   shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html> (i915#7742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742>)
  *   igt@drm_fdinfo@virtual-busy-hang:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@drm_fdinfo@virtual-busy-hang.html> (i915#8414<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) +1 other test skip
  *   igt@gem_busy@semaphore:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@gem_busy@semaphore.html> (i915#3936<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@gem_busy@semaphore.html> (i915#3936<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936>)
  *   igt@gem_ccs@block-copy-compressed:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
  *   igt@gem_ccs@block-multicopy-compressed:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@gem_ccs@block-multicopy-compressed.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
  *   igt@gem_close_race@multigpu-basic-process:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
  *   igt@gem_create@create-ext-set-pat:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-10/igt@gem_create@create-ext-set-pat.html> (i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@gem_create@create-ext-set-pat.html> (i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>)
  *   igt@gem_ctx_persistence@engines-persistence:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb5/igt@gem_ctx_persistence@engines-persistence.html> (i915#1099<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>)
  *   igt@gem_ctx_persistence@hang:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-4/igt@gem_ctx_persistence@hang.html> (i915#8555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) +1 other test skip
  *   igt@gem_ctx_persistence@heartbeat-stop:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-stop.html> (i915#8555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) +3 other tests skip
  *   igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html> (i915#5882<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882>) +6 other tests skip
  *   igt@gem_ctx_sseu@invalid-args:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@gem_ctx_sseu@invalid-args.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
  *   igt@gem_ctx_sseu@mmap-args:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) +1 other test skip
  *   igt@gem_eio@hibernate:

     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-tglu-9/igt@gem_eio@hibernate.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-10/igt@gem_eio@hibernate.html> (i915#10030<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030> / i915#7975<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213>)
  *   igt@gem_eio@reset-stress:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg1-17/igt@gem_eio@reset-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@gem_eio@reset-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>)
  *   igt@gem_exec_balancer@bonded-sync:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html> (i915#4771<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) +1 other test skip
  *   igt@gem_exec_balancer@invalid-bonds:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-13/igt@gem_exec_balancer@invalid-bonds.html> (i915#4036<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036>)
  *   igt@gem_exec_balancer@parallel-keep-in-fence:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
  *   igt@gem_exec_fair@basic-deadline:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk6/igt@gem_exec_fair@basic-deadline.html> (i915#2846<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846>)
  *   igt@gem_exec_fair@basic-flow:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@gem_exec_fair@basic-flow.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
  *   igt@gem_exec_fair@basic-pace:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@gem_exec_fair@basic-pace.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>) +2 other tests skip
  *   igt@gem_exec_fair@basic-pace-share@rcs0:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>)
  *   igt@gem_exec_fair@basic-pace-solo:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@gem_exec_fair@basic-pace-solo.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>) +1 other test skip
  *   igt@gem_exec_fair@basic-throttle@rcs0:

     *   shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>)
  *   igt@gem_exec_fence@concurrent:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@gem_exec_fence@concurrent.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) +1 other test skip
  *   igt@gem_exec_flush@basic-wb-rw-default:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@gem_exec_flush@basic-wb-rw-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +2 other tests skip
  *   igt@gem_exec_reloc@basic-cpu-read:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-read.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +5 other tests skip
  *   igt@gem_exec_reloc@basic-gtt-wc-noreloc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +11 other tests skip
  *   igt@gem_exec_reloc@basic-wc-gtt:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-gtt.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +3 other tests skip
  *   igt@gem_exec_reloc@basic-write-gtt-active:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +10 other tests skip
  *   igt@gem_exec_schedule@preempt-queue-chain:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@gem_exec_schedule@preempt-queue-chain.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) +1 other test skip
  *   igt@gem_exec_schedule@preempt-queue-contexts-chain:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts-chain.html> (i915#4537<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> / i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
  *   igt@gem_fence_thrash@bo-copy:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@gem_fence_thrash@bo-copy.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) +1 other test skip
  *   igt@gem_fence_thrash@bo-write-verify-x:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-x.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
  *   igt@gem_huc_copy@huc-copy:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk7/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>)
  *   igt@gem_lmem_swapping@parallel-random-engines:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
  *   igt@gem_lmem_swapping@parallel-random-verify-ccs:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +4 other tests skip
  *   igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html> (i915#4565<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565>)
  *   igt@gem_lmem_swapping@random-engines:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk9/igt@gem_lmem_swapping@random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip
  *   igt@gem_lmem_swapping@smem-oom@lmem0:

     *   shard-dg1: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>)
  *   igt@gem_media_fill@media-fill:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@gem_media_fill@media-fill.html> (i915#8289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289>)
  *   igt@gem_mmap@short-mmap:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@gem_mmap@short-mmap.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +1 other test skip
  *   igt@gem_mmap_gtt@basic-small-copy:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +8 other tests skip
  *   igt@gem_mmap_gtt@big-copy:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@gem_mmap_gtt@big-copy.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +9 other tests skip
  *   igt@gem_mmap_wc@invalid-flags:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-4/igt@gem_mmap_wc@invalid-flags.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +2 other tests skip
  *   igt@gem_mmap_wc@write-read:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@gem_mmap_wc@write-read.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +4 other tests skip
  *   igt@gem_pread@bench:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@gem_pread@bench.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +5 other tests skip
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@gem_pread@bench.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +2 other tests skip
  *   igt@gem_pread@self:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@gem_pread@self.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +5 other tests skip
  *   igt@gem_pxp@create-regular-buffer:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@gem_pxp@create-regular-buffer.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +1 other test skip
  *   igt@gem_pxp@display-protected-crc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@gem_pxp@display-protected-crc.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@gem_pxp@display-protected-crc.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +3 other tests skip
  *   igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +1 other test skip
  *   igt@gem_readwrite@read-write:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@gem_readwrite@read-write.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip
  *   igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +4 other tests skip
  *   igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html> (i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +2 other tests skip
  *   igt@gem_set_tiling_vs_blt@untiled-to-tiled:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) +1 other test skip
  *   igt@gem_softpin@evict-snoop:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@gem_softpin@evict-snoop.html> (i915#4885<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885>)
  *   igt@gem_tiled_partial_pwrite_pread@reads:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@gem_tiled_partial_pwrite_pread@reads.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +3 other tests skip
  *   igt@gem_tiled_pread_pwrite:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@gem_tiled_pread_pwrite.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
  *   igt@gem_userptr_blits@access-control:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@gem_userptr_blits@access-control.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@gem_userptr_blits@access-control.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
  *   igt@gem_userptr_blits@coherency-sync:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-9/igt@gem_userptr_blits@coherency-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
  *   igt@gem_userptr_blits@dmabuf-sync:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#3323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>)
  *   igt@gem_userptr_blits@forbidden-operations:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@gem_userptr_blits@forbidden-operations.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
  *   igt@gem_userptr_blits@map-fixed-invalidate-busy:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip
  *   igt@gem_userptr_blits@sd-probe:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@gem_userptr_blits@sd-probe.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#4958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>)
  *   igt@gen9_exec_parse@batch-without-end:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-6/igt@gen9_exec_parse@batch-without-end.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
  *   igt@gen9_exec_parse@secure-batches:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@gen9_exec_parse@secure-batches.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +2 other tests skip
  *   igt@gen9_exec_parse@unaligned-access:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +3 other tests skip
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@gen9_exec_parse@unaligned-access.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +5 other tests skip
  *   igt@gen9_exec_parse@valid-registers:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@gen9_exec_parse@valid-registers.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
  *   igt@i915_module_load@reload-with-fault-injection:

     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>)
     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html> (i915#10887<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887> / i915#11231<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11231>)
  *   igt@i915_pm_freq_api@freq-reset:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
  *   igt@i915_pm_rps@min-max-config-loaded:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@i915_pm_rps@min-max-config-loaded.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> / i915#6621<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>)
  *   igt@i915_pm_rps@thresholds-idle-park:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@i915_pm_rps@thresholds-idle-park.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>)
  *   igt@i915_power@sanity:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@i915_power@sanity.html> (i915#7984<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984>)
  *   igt@i915_query@test-query-geometry-subslices:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html> (i915#5723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@i915_query@test-query-geometry-subslices.html> (i915#5723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>)
  *   igt@i915_suspend@basic-s3-without-i915:

     *   shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html> (i915#4817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>)
  *   igt@i915_suspend@fence-restore-tiled2untiled:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk7/igt@i915_suspend@fence-restore-tiled2untiled.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk8/igt@i915_suspend@fence-restore-tiled2untiled.html> (i915#4817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>)
  *   igt@kms_addfb_basic@addfb25-x-tiled-legacy:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
  *   igt@kms_addfb_basic@invalid-smem-bo-on-discrete:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#3826<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826>)
  *   igt@kms_addfb_basic@tile-pitch-mismatch:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html> (i915#8709<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) +3 other tests skip
  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html> (i915#8709<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) +7 other tests skip
  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html> (i915#8709<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) +11 other tests skip
  *   igt@kms_atomic_transition@plane-all-modeset-transition-fencing:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_big_fb@4-tiled-16bpp-rotate-0:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +7 other tests skip
  *   igt@kms_big_fb@4-tiled-addfb-size-overflow:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb-size-overflow.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:

     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html> (i915#5138<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>)
  *   igt@kms_big_fb@y-tiled-64bpp-rotate-270:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +2 other tests skip
  *   igt@kms_big_fb@y-tiled-64bpp-rotate-90:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +4 other tests skip
  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> +9 other tests skip
  *   igt@kms_big_fb@yf-tiled-16bpp-rotate-270:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> +26 other tests skip
  *   igt@kms_big_fb@yf-tiled-64bpp-rotate-0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +11 other tests skip
  *   igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) +5 other tests skip
  *   igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +11 other tests skip
  *   igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#10434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +4 other tests skip
  *   igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-edp-1:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-edp-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +15 other tests skip
  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +59 other tests skip
  *   igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +174 other tests skip
  *   igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +63 other tests skip
  *   igt@kms_cdclk@mode-transition:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@kms_cdclk@mode-transition.html> (i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@kms_cdclk@mode-transition.html> (i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
  *   igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html> (i915#7213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213>) +3 other tests skip
  *   igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087>) +3 other tests skip
  *   igt@kms_chamelium_frames@dp-crc-fast:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html> (i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +9 other tests skip
  *   igt@kms_chamelium_frames@vga-frame-dump:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@kms_chamelium_frames@vga-frame-dump.html> (i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +9 other tests skip
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_chamelium_frames@vga-frame-dump.html> (i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +7 other tests skip
  *   igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
  *   igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html> (i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +2 other tests skip
  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html> (i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-1.html> (i915#3299<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
  *   igt@kms_content_protection@dp-mst-type-0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html> (i915#3299<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
  *   igt@kms_content_protection@legacy:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@kms_content_protection@legacy.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_content_protection@legacy.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_content_protection@legacy.html> (i915#7116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
  *   igt@kms_content_protection@lic-type-0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@kms_content_protection@lic-type-0.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) +1 other test skip
  *   igt@kms_content_protection@mei-interface:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_content_protection@mei-interface.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) +1 other test skip
  *   igt@kms_content_protection@uevent:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-5/igt@kms_content_protection@uevent.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#7116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> / i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
  *   igt@kms_cursor_crc@cursor-offscreen-32x10:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +5 other tests skip
  *   igt@kms_cursor_crc@cursor-offscreen-32x32:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb5/igt@kms_cursor_crc@cursor-offscreen-32x32.html> +51 other tests skip
  *   igt@kms_cursor_crc@cursor-offscreen-512x170:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) +2 other tests skip
  *   igt@kms_cursor_crc@cursor-offscreen-512x512:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453> / i915#3359<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>)
  *   igt@kms_cursor_crc@cursor-random-512x170:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>)
  *   igt@kms_cursor_crc@cursor-random-max-size:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8814<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>)
  *   igt@kms_cursor_crc@cursor-rapid-movement-max-size:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +6 other tests skip
  *   igt@kms_cursor_crc@cursor-sliding-512x512:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) +2 other tests skip
  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) +1 other test skip
  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>)
  *   igt@kms_cursor_legacy@forked-bo@pipe-b:

     *   shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk5/igt@kms_cursor_legacy@forked-bo@pipe-b.html> (i915#10166<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166>)
  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
  *   igt@kms_display_modes@mst-extended-mode-negative:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_display_modes@mst-extended-mode-negative.html> (i915#8588<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_display_modes@mst-extended-mode-negative.html> (i915#8588<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588>)
  *   igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html> (i915#3804<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
  *   igt@kms_dp_aux_dev:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-11/igt@kms_dp_aux_dev.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>)
  *   igt@kms_dsc@dsc-basic:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) +1 other test skip
  *   igt@kms_dsc@dsc-with-formats:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_dsc@dsc-with-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
  *   igt@kms_feature_discovery@chamelium:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@kms_feature_discovery@chamelium.html> (i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_feature_discovery@chamelium.html> (i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
  *   igt@kms_feature_discovery@display-3x:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_feature_discovery@display-3x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
  *   igt@kms_feature_discovery@psr2:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@kms_feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-1/igt@kms_feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
  *   igt@kms_flip@2x-modeset-vs-vblank-race:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html> +16 other tests skip
  *   igt@kms_flip@2x-plain-flip:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-8/igt@kms_flip@2x-plain-flip.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +2 other tests skip
  *   igt@kms_flip@2x-plain-flip-interruptible:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_flip@2x-plain-flip-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +5 other tests skip
  *   igt@kms_flip@flip-vs-fences:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_flip@flip-vs-fences.html> (i915#8381<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) +1 other test skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +4 other tests skip
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +3 other tests skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other tests skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
  *   igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html> (i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>)
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +33 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +15 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu.html> +14 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +12 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +21 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +21 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html> +37 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +46 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +20 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +17 other tests skip
  *   igt@kms_hdr@bpc-switch-dpms:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_hdr@bpc-switch-dpms.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
  *   igt@kms_hdr@static-toggle:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) +2 other tests skip
  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
  *   igt@kms_panel_fitting@legacy:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_panel_fitting@legacy.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
  *   igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk7/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html> (i915#10647<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>) +1 other test fail
  *   igt@kms_plane_lowres@tiling-4:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-10/igt@kms_plane_lowres@tiling-4.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip
  *   igt@kms_plane_scaling@2x-scaler-multi-pipe:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354> / i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
  *   igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html> (i915#8292<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292>)
  *   igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:

     *   shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html> (i915#8292<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292>)
  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3.html> (i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +24 other tests skip
  *   igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html> (i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +3 other tests skip
  *   igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html> (i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +3 other tests skip
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235> / i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +2 other tests skip
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html> (i915#5235<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235>) +1 other test skip
  *   igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html> (i915#9728<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728>) +5 other tests skip
  *   igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html> (i915#9728<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728>) +7 other tests skip
  *   igt@kms_pm_backlight@fade-with-dpms:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
  *   igt@kms_pm_dc@dc3co-vpb-simulation:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html> (i915#9292<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292>)
  *   igt@kms_pm_dc@dc5-psr:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
  *   igt@kms_pm_dc@dc6-dpms:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html> (i915#3361<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361>)
  *   igt@kms_pm_dc@dc6-psr:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_pm_dc@dc6-psr.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
  *   igt@kms_pm_dc@dc9-dpms:

     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html> (i915#4281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281>)
  *   igt@kms_pm_lpsp@kms-lpsp:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html> (i915#9340<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>)
  *   igt@kms_pm_lpsp@screens-disabled:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-3/igt@kms_pm_lpsp@screens-disabled.html> (i915#8430<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>)
  *   igt@kms_pm_rpm@dpms-lpsp:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +3 other tests skip
  *   igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
  *   igt@kms_prime@basic-crc-vgem:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> / i915#6805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>)
  *   igt@kms_prime@basic-modeset-hybrid:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
  *   igt@kms_prime@d3hot:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_prime@d3hot.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) +1 other test skip
  *   igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
  *   igt@kms_psr2_sf@cursor-plane-move-continuous-sf:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip
  *   igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other tests skip
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +7 other tests skip
  *   igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html> (i915#9808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808>) +1 other test skip
  *   igt@kms_psr2_su@page_flip-xrgb8888:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) +1 other test skip
  *   igt@kms_psr@fbc-psr-primary-mmap-gtt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-3/igt@kms_psr@fbc-psr-primary-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +20 other tests skip
  *   igt@kms_psr@fbc-psr-sprite-render:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_psr@fbc-psr-sprite-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9673<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
  *   igt@kms_psr@fbc-psr2-cursor-mmap-gtt:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk8/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html> +288 other tests skip
  *   igt@kms_psr@fbc-psr2-sprite-mmap-gtt:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-7/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +6 other tests skip
  *   igt@kms_psr@fbc-psr2-sprite-render:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +18 other tests skip
  *   igt@kms_psr@pr-cursor-mmap-gtt:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_psr@pr-cursor-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +19 other tests skip
  *   igt@kms_psr@pr-primary-render:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-6/igt@kms_psr@pr-primary-render.html> (i915#9688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) +6 other tests skip
  *   igt@kms_psr_stress_test@invalidate-primary-flip-overlay:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
  *   igt@kms_rotation_crc@primary-rotation-270:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html> (i915#11131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131>)
  *   igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#4235<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235>)
  *   igt@kms_scaling_modes@scaling-mode-full:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@kms_scaling_modes@scaling-mode-full.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip
  *   igt@kms_setmode@invalid-clone-single-crtc-stealing:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8809<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809>)
  *   igt@kms_sysfs_edid_timing:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-11/igt@kms_sysfs_edid_timing.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@kms_sysfs_edid_timing.html> (IGT#2<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2>)
  *   igt@kms_tiled_display@basic-test-pattern:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
  *   igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>)
     *   shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>)
  *   igt@kms_vrr@flipline:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-4/igt@kms_vrr@flipline.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>)
  *   igt@kms_vrr@seamless-rr-switch-drrs:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
  *   igt@kms_writeback@writeback-check-output:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@kms_writeback@writeback-check-output.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) +1 other test skip
  *   igt@kms_writeback@writeback-check-output-xrgb2101010:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>)
  *   igt@kms_writeback@writeback-fb-id:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk6/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
  *   igt@perf_pmu@busy-idle@vcs1:

     *   shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@perf_pmu@busy-idle@vcs1.html> (i915#4349<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) +3 other tests fail
  *   igt@perf_pmu@module-unload:

     *   shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb4/igt@perf_pmu@module-unload.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb6/igt@perf_pmu@module-unload.html> (i915#9853<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9853>)
     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@perf_pmu@module-unload.html> (i915#11823<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11823>)
  *   igt@prime_vgem@basic-write:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-17/igt@prime_vgem@basic-write.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) +1 other test skip
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@prime_vgem@basic-write.html> (i915#10216<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
  *   igt@prime_vgem@fence-write-hang:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-7/igt@prime_vgem@fence-write-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) +1 other test skip
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@prime_vgem@fence-write-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
  *   igt@sriov_basic@bind-unbind-vf:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@sriov_basic@bind-unbind-vf.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) +1 other test skip
  *   igt@sriov_basic@enable-vfs-autoprobe-off:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
  *   igt@sriov_basic@enable-vfs-bind-unbind-each:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
  *   igt@syncobj_wait@invalid-wait-zero-handles:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-6/igt@syncobj_wait@invalid-wait-zero-handles.html> (i915#9781<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781>)
     *   shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@syncobj_wait@invalid-wait-zero-handles.html> (i915#9781<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781>)
  *   igt@tools_test@sysfs_l3_parity:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html> (i915#4818<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818>)
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@tools_test@sysfs_l3_parity.html> (i915#4818<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818>)

Possible fixes

  *   igt@fbdev@read:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-7/igt@fbdev@read.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@fbdev@read.html>
     *   shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb2/igt@fbdev@read.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb7/igt@fbdev@read.html>
  *   igt@gem_ctx_engines@invalid-engines:

     *   shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html>
  *   igt@gem_exec_fair@basic-none@bcs0:

     *   shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html> +3 other tests pass
  *   igt@gem_mmap_offset@clear@smem0:

     *   shard-mtlp: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html>
  *   igt@i915_module_load@reload-no-display:

     *   shard-snb: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb5/igt@i915_module_load@reload-no-display.html> (i915#11703<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb2/igt@i915_module_load@reload-no-display.html>
  *   igt@i915_module_load@reload-with-fault-injection:

     *   shard-rkl: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html>
     *   shard-dg1: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html>
     *   shard-glk: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk7/igt@i915_module_load@reload-with-fault-injection.html>
     *   shard-dg2: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html>
  *   igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:

     *   shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html>
  *   igt@i915_pm_rps@reset:

     *   shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg1-17/igt@i915_pm_rps@reset.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-18/igt@i915_pm_rps@reset.html>
  *   igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html> (i915#11859<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk9/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html>
  *   igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:

     *   shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-tglu-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html> (i915#11808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html>
  *   igt@kms_big_fb@4-tiled-8bpp-rotate-0:

     *   shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html>
  *   igt@kms_big_fb@4-tiled-8bpp-rotate-180:

     *   shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html> (i915#10354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10354>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html>
  *   igt@kms_flip@2x-absolute-wf_vblank@bc-hdmi-a1-hdmi-a2:

     *   shard-glk: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-glk7/igt@kms_flip@2x-absolute-wf_vblank@bc-hdmi-a1-hdmi-a2.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-glk6/igt@kms_flip@2x-absolute-wf_vblank@bc-hdmi-a1-hdmi-a2.html>
  *   igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2:

     *   shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2.html> (i915#11989<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2.html>
  *   igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
  *   igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html>
  *   igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:

     *   shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html>
     *   shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html>
  *   igt@perf_pmu@busy@vcs1:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-2/igt@perf_pmu@busy@vcs1.html> (i915#4349<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-2/igt@perf_pmu@busy@vcs1.html> +1 other test pass
  *   igt@perf_pmu@module-unload:

     *   shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg1-15/igt@perf_pmu@module-unload.html> (i915#1982<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982> / i915#4391<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg1-16/igt@perf_pmu@module-unload.html>
  *   igt@perf_pmu@most-busy-idle-check-all@rcs0:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-mtlp-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html> (i915#11822<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11822>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html>
  *   igt@perf_pmu@semaphore-wait@rcs0:

     *   shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-4/igt@perf_pmu@semaphore-wait@rcs0.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-2/igt@perf_pmu@semaphore-wait@rcs0.html> +1 other test pass

Warnings

  *   igt@gem_lmem_swapping@smem-oom@lmem0:

     *   shard-dg2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#4936<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936> / i915#5493<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>)
  *   igt@kms_content_protection@lic-type-0:

     *   shard-snb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-snb2/igt@kms_content_protection@lic-type-0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-snb7/igt@kms_content_protection@lic-type-0.html> (i915#8816<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816>)
  *   igt@kms_cursor_crc@cursor-random-512x512:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453> / i915#3359<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>)
  *   igt@kms_cursor_crc@cursor-rapid-movement-512x170:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453> / i915#3359<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>)
  *   igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip
  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4070<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070> / i915#4816<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4816<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>)
  *   igt@kms_pm_dc@dc6-dpms:

     *   shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html> (i915#9295<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html> (i915#3361<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361>)
  *   igt@kms_psr@psr-primary-mmap-cpu:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-11/igt@kms_psr@psr-primary-mmap-cpu.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9673<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-1/igt@kms_psr@psr-primary-mmap-cpu.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +8 other tests skip
  *   igt@kms_psr@psr2-primary-mmap-gtt:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15272/shard-dg2-4/igt@kms_psr@psr2-primary-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11613/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9673<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +9 other tests skip

Build changes

  *   CI: CI-20190529 -> None
  *   IGT: IGT_7982 -> IGTPW_11613
  *   Piglit: piglit_4509 -> None

CI-20190529: 20190529
CI_DRM_15272: ddbda36f876f53498924155abfa1cd4c58517903 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11613: 8e9c328a4a26f146a2cca86f3b116ac89ccb264c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7982: 76ebe4ecfa1757f21e3f1d3be5993088a92cd274 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit


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

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

end of thread, other threads:[~2024-08-22 12:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-21 13:58 [PATCH i-g-t v3] lib/gpgpu_fill: Write kernel using inline iga64 api Dominik Grzegorzek
2024-08-21 19:01 ` ✓ CI.xeBAT: success for lib/gpgpu_fill: Write kernel using inline iga64 api (rev4) Patchwork
2024-08-21 19:03 ` ✓ Fi.CI.BAT: " Patchwork
2024-08-22  1:46 ` ✗ CI.xeFULL: failure " Patchwork
2024-08-22 12:31   ` Grzegorzek, Dominik
2024-08-22  2:01 ` ✗ Fi.CI.IGT: " Patchwork
2024-08-22 12:52   ` Grzegorzek, Dominik

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