Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms
@ 2023-11-07 20:59 Jagmeet Randhawa
  2023-11-07 20:59 ` [igt-dev] [PATCH] " Jagmeet Randhawa
                   ` (13 more replies)
  0 siblings, 14 replies; 18+ messages in thread
From: Jagmeet Randhawa @ 2023-11-07 20:59 UTC (permalink / raw)
  Cc: igt-dev

Addresed Christoph Manszewski comments: fixed warnings and errors
brought up by checkpatch

Jagmeet Randhawa (1):
  lib/gpgpu_fill: Add support for Xe2 platforms

 lib/gpgpu_fill.c                              | 23 ++++++++
 lib/gpgpu_fill.h                              |  6 ++
 lib/gpu_cmds.c                                | 59 +++++++++++++++----
 .../shaders/gpgpu/xe2lpg_gpgpu_kernel.asm     | 13 ++++
 lib/intel_batchbuffer.c                       |  4 +-
 5 files changed, 93 insertions(+), 12 deletions(-)
 create mode 100644 lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm

-- 
2.25.1

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

* [igt-dev] [PATCH] lib/gpgpu_fill: Add support for Xe2 platforms
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
@ 2023-11-07 20:59 ` Jagmeet Randhawa
  2023-11-07 22:05 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Jagmeet Randhawa @ 2023-11-07 20:59 UTC (permalink / raw)
  Cc: igt-dev

Add xe2lpg_gpgpu_fillfunc to have gpgpu_fill running on XE2
On XE2 there are a few changes to gpu command instruction lengths.

There's also no 'Media Block Write' message, thus 'Typed 2D Block
Store' message has to be used in the shader.

The shader was compiled using the following command:

iga64 -p=2 -Wall -Xprint-ldst -Xauto-deps --assemble
xe2lpg_gpgpu_kernel.asm | od -A n -v -t x4 |sed -e 's/ / 0x/g'
| sed -e 's/^/\t{/' | sed -e 's/([0-9]|[a-f]|[A-F]) /\1, /g'
| sed -e 's/$/ },/g' | sed -e 's/\t /\t/g'

Signed-off-by: Christoph Manszewski <christoph.manszewski@intel.com>
Signed-off-by: Jagmeet Randhawa <jagmeet.randhawa@intel.com>
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 lib/gpgpu_fill.c                              | 23 ++++++++
 lib/gpgpu_fill.h                              |  6 ++
 lib/gpu_cmds.c                                | 58 +++++++++++++++----
 .../shaders/gpgpu/xe2lpg_gpgpu_kernel.asm     | 13 +++++
 lib/intel_batchbuffer.c                       |  4 +-
 5 files changed, 93 insertions(+), 11 deletions(-)
 create mode 100644 lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm

diff --git a/lib/gpgpu_fill.c b/lib/gpgpu_fill.c
index eed821872..1270c2b22 100644
--- a/lib/gpgpu_fill.c
+++ b/lib/gpgpu_fill.c
@@ -124,6 +124,18 @@ static const uint32_t xehpc_gpgpu_kernel[][4] = {
 	{ 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,
  *
@@ -398,3 +410,14 @@ void xehpc_gpgpu_fillfunc(int i915,
 			      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 f81cd0b53..c3b47c10a 100644
--- a/lib/gpgpu_fill.h
+++ b/lib/gpgpu_fill.h
@@ -75,4 +75,10 @@ xehpc_gpgpu_fillfunc(int i915,
 		     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/gpu_cmds.c b/lib/gpu_cmds.c
index f19f93b28..49ba364f9 100644
--- a/lib/gpu_cmds.c
+++ b/lib/gpu_cmds.c
@@ -328,18 +328,41 @@ fill_binding_table(struct intel_bb *ibb, struct intel_buf *buf)
 	binding_table = intel_bb_ptr(ibb);
 	intel_bb_ptr_add(ibb, 64);
 
-	if (intel_graphics_ver(devid) >= IP_VER(12, 50))
+	if (intel_graphics_ver(devid) >= IP_VER(20, 0)) {
+		/*
+		 * Up until now, SURFACEFORMAT_R8_UNROM was used regardless of the 'bpp' value.
+		 * For bpp 32 this results in a surface that is 4x narrower than expected. However
+		 * it worked, because the 'Media Block Read/Write' message assumes the surface width
+		 * is always in units of dwords.
+		 *
+		 * Since Xe2 the Media Block Write message got replaced with 'Typed 2D Block
+		 * Load/Store Message' which correctly interprets the surface format.
+		 */
+		if (buf->bpp == 32)
+			binding_table[0] = xehp_fill_surface_state(ibb, buf,
+								      SURFACEFORMAT_R8G8B8A8_UNORM,
+								      1);
+		else if (buf->bpp == 8)
+			binding_table[0] = xehp_fill_surface_state(ibb, buf,
+								      SURFACEFORMAT_R8_UNORM,
+								      1);
+		else
+			igt_assert_f(false,
+				     "Surface state for bpp = %u not implemented",
+				     buf->bpp);
+	} else if (intel_graphics_ver(devid) >= IP_VER(12, 50)) {
 		binding_table[0] = xehp_fill_surface_state(ibb, buf,
 							   SURFACEFORMAT_R8_UNORM, 1);
-	else if (intel_graphics_ver(devid) >= IP_VER(9, 0))
+	} else if (intel_graphics_ver(devid) >= IP_VER(9, 0)) {
 		binding_table[0] = gen9_fill_surface_state(ibb, buf,
 							   SURFACEFORMAT_R8_UNORM, 1);
-	else if (intel_graphics_ver(devid) >= IP_VER(8, 0))
+	} else if (intel_graphics_ver(devid) >= IP_VER(8, 0)) {
 		binding_table[0] = gen8_fill_surface_state(ibb, buf,
 							   SURFACEFORMAT_R8_UNORM, 1);
-	else
+	} else {
 		binding_table[0] = gen7_fill_surface_state(ibb, buf,
 							   SURFACEFORMAT_R8_UNORM, 1);
+	}
 
 	return binding_table_offset;
 }
@@ -959,8 +982,14 @@ xehp_emit_cfe_state(struct intel_bb *ibb, uint32_t threads)
 void
 xehp_emit_state_compute_mode(struct intel_bb *ibb)
 {
-	intel_bb_out(ibb, XEHP_STATE_COMPUTE_MODE);
+
+	uint32_t dword_length = intel_graphics_ver(ibb->devid) >= IP_VER(20, 0);
+
+	intel_bb_out(ibb, XEHP_STATE_COMPUTE_MODE | dword_length);
 	intel_bb_out(ibb, 0);
+
+	if (dword_length)
+		intel_bb_out(ibb, 0);
 }
 
 void
@@ -976,6 +1005,8 @@ xehp_emit_state_binding_table_pool_alloc(struct intel_bb *ibb)
 void
 xehp_emit_state_base_address(struct intel_bb *ibb)
 {
+	uint32_t tmp;
+
 	intel_bb_out(ibb, GEN8_STATE_BASE_ADDRESS | 0x14);            //dw0
 
 	/* general */
@@ -983,7 +1014,8 @@ xehp_emit_state_base_address(struct intel_bb *ibb)
 	intel_bb_out(ibb, 0);
 
 	/* stateless data port */
-	intel_bb_out(ibb, 0 | BASE_ADDRESS_MODIFY);                   //dw3
+	tmp = intel_graphics_ver(ibb->devid) == IP_VER(20, 0) ? 0 : BASE_ADDRESS_MODIFY;
+	intel_bb_out(ibb, 0 | tmp);                  //dw3
 
 	/* surface */
 	intel_bb_emit_reloc(ibb, ibb->handle, I915_GEM_DOMAIN_SAMPLER, //dw4-dw5
@@ -1008,7 +1040,10 @@ xehp_emit_state_base_address(struct intel_bb *ibb)
 	/* dynamic state buffer size */
 	intel_bb_out(ibb, 1 << 12 | 1);                             //dw13
 	/* indirect object buffer size */
-	intel_bb_out(ibb, 0xfffff000 | 1);                          //dw14
+	if (intel_graphics_ver(ibb->devid) == IP_VER(20, 0))	    //dw14
+		intel_bb_out(ibb, 0);
+	else
+		intel_bb_out(ibb, 0xfffff000 | 1);
 	/* intruction buffer size */
 	intel_bb_out(ibb, 1 << 12 | 1);                             //dw15
 
@@ -1030,7 +1065,7 @@ xehp_emit_compute_walk(struct intel_bb *ibb,
 		       struct xehp_interface_descriptor_data *pidd,
 		       uint8_t color)
 {
-	uint32_t x_dim, y_dim, mask;
+	uint32_t x_dim, y_dim, mask, dword_length;
 
 	/*
 	 * Simply do SIMD16 based dispatch, so every thread uses
@@ -1052,7 +1087,8 @@ xehp_emit_compute_walk(struct intel_bb *ibb,
 	else
 		mask = (1 << mask) - 1;
 
-	intel_bb_out(ibb, XEHP_COMPUTE_WALKER | 0x25);
+	dword_length = intel_graphics_ver(ibb->devid) >= IP_VER(20, 0) ? 0x26 : 0x25;
+	intel_bb_out(ibb, XEHP_COMPUTE_WALKER | dword_length);
 
 	intel_bb_out(ibb, 0); /* debug object */		//dw1
 	intel_bb_out(ibb, 0); /* indirect data length */	//dw2
@@ -1091,8 +1127,10 @@ xehp_emit_compute_walk(struct intel_bb *ibb,
 	intel_bb_out(ibb, 0);					//dw16
 	intel_bb_out(ibb, 0);					//dw17
 
+	if (intel_graphics_ver(ibb->devid) >= IP_VER(20, 0))	//Xe2:dw18
+		intel_bb_out(ibb, 0);
 	/* Interface descriptor data */
-	for (int i = 0; i < 8; i++) {			       //dw18-25
+	for (int i = 0; i < 8; i++) {			       //dw18-25 (Xe2:dw19-26)
 		intel_bb_out(ibb, ((uint32_t *) pidd)[i]);
 	}
 
diff --git a/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm b/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
new file mode 100644
index 000000000..e2ecc71f5
--- /dev/null
+++ b/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
@@ -0,0 +1,13 @@
+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/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index df82ef5f5..fe767d8c2 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -755,7 +755,9 @@ igt_fillfunc_t igt_get_gpgpu_fillfunc(int devid)
 {
 	igt_fillfunc_t fill = NULL;
 
-	if (IS_METEORLAKE(devid))
+	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;
-- 
2.25.1

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

* [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
  2023-11-07 20:59 ` [igt-dev] [PATCH] " Jagmeet Randhawa
@ 2023-11-07 22:05 ` Patchwork
  2023-11-07 22:18 ` [igt-dev] ✗ CI.xeBAT: " Patchwork
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-07 22:05 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms
URL   : https://patchwork.freedesktop.org/series/126096/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13846 -> IGTPW_10132
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_10132 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_10132, please notify your bug team (lgci.bug.filing@intel.com) 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_10132/index.html

Participating hosts (32 -> 33)
------------------------------

  Additional (3): bat-dg2-14 fi-hsw-4770 bat-atsm-1 
  Missing    (2): bat-dg2-9 bat-mtlp-8 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@guc_hang:
    - fi-kbl-soraka:      [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/fi-kbl-soraka/igt@i915_selftest@live@guc_hang.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/fi-kbl-soraka/igt@i915_selftest@live@guc_hang.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@debugfs_test@basic-hwmon:
    - bat-adlp-11:        NOTRUN -> [SKIP][3] ([i915#9318])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-adlp-11/igt@debugfs_test@basic-hwmon.html

  * igt@gem_exec_suspend@basic-s3@lmem0:
    - bat-atsm-1:         NOTRUN -> [DMESG-WARN][4] ([i915#8841]) +4 other tests dmesg-warn
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@gem_exec_suspend@basic-s3@lmem0.html

  * igt@gem_mmap@basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][5] ([i915#4083])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@gem_mmap@basic.html

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

  * igt@gem_tiled_pread_basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@gem_tiled_pread_basic.html
    - bat-adlp-11:        NOTRUN -> [SKIP][8] ([i915#3282])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-adlp-11/igt@gem_tiled_pread_basic.html

  * igt@i915_pm_rps@basic-api:
    - bat-atsm-1:         NOTRUN -> [SKIP][9] ([i915#6621])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@i915_pm_rps@basic-api.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-kbl-soraka:      [PASS][10] -> [DMESG-FAIL][11] ([i915#5334] / [i915#7872])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@workarounds:
    - bat-dg2-11:         [PASS][12] -> [DMESG-FAIL][13] ([i915#9500])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/bat-dg2-11/igt@i915_selftest@live@workarounds.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-dg2-11/igt@i915_selftest@live@workarounds.html

  * igt@i915_suspend@basic-s3-without-i915:
    - bat-atsm-1:         NOTRUN -> [SKIP][14] ([i915#6645])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - fi-hsw-4770:        NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#5190])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@size-max:
    - bat-atsm-1:         NOTRUN -> [SKIP][16] ([i915#6077]) +36 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@kms_addfb_basic@size-max.html

  * igt@kms_addfb_basic@tile-pitch-mismatch:
    - bat-atsm-1:         NOTRUN -> [SKIP][17] ([i915#5608] / [i915#6077])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@kms_addfb_basic@tile-pitch-mismatch.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-atsm-1:         NOTRUN -> [SKIP][18] ([i915#5608] / [i915#6078]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - bat-adlp-11:        NOTRUN -> [SKIP][19] ([i915#4103] / [i915#5608]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
    - bat-atsm-1:         NOTRUN -> [SKIP][20] ([i915#6078]) +8 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
    - bat-adlp-11:        NOTRUN -> [DMESG-WARN][21] ([i915#6868])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - bat-adlp-11:        NOTRUN -> [SKIP][22] ([i915#3546])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-adlp-11:        NOTRUN -> [SKIP][23] ([i915#3555] / [i915#3840])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-adlp-11/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@basic-plain-flip:
    - bat-atsm-1:         NOTRUN -> [SKIP][24] ([i915#6166]) +3 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@kms_flip@basic-plain-flip.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - bat-atsm-1:         NOTRUN -> [SKIP][25] ([i915#6093]) +4 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html
    - bat-adlp-11:        NOTRUN -> [SKIP][26] ([i915#4093]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-adlp-11/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_hdmi_inject@inject-audio:
    - bat-adlp-11:        NOTRUN -> [SKIP][27] ([i915#4369])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-adlp-11/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1:
    - fi-hsw-4770:        NOTRUN -> [SKIP][28] ([fdo#109271]) +12 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
    - bat-atsm-1:         NOTRUN -> [SKIP][29] ([i915#1836]) +7 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
    - bat-dg2-11:         NOTRUN -> [SKIP][30] ([i915#1845] / [i915#9197]) +3 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
    - bat-rplp-1:         [PASS][31] -> [ABORT][32] ([i915#8668])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1:
    - fi-hsw-4770:        NOTRUN -> [DMESG-WARN][33] ([i915#8841]) +6 other tests dmesg-warn
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html

  * igt@kms_prop_blob@basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][34] ([i915#7357])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@kms_prop_blob@basic.html

  * igt@kms_psr@sprite_plane_onoff:
    - bat-atsm-1:         NOTRUN -> [SKIP][35] ([i915#1072]) +3 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@kms_psr@sprite_plane_onoff.html
    - fi-hsw-4770:        NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#1072]) +3 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-atsm-1:         NOTRUN -> [SKIP][37] ([i915#6094])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-flip:
    - bat-atsm-1:         NOTRUN -> [SKIP][38] ([fdo#109295] / [i915#6078])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-fence-mmap:
    - bat-atsm-1:         NOTRUN -> [SKIP][39] ([fdo#109295] / [i915#4077]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-write:
    - bat-atsm-1:         NOTRUN -> [SKIP][40] ([fdo#109295]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-atsm-1/igt@prime_vgem@basic-write.html

  
#### Possible fixes ####

  * igt@kms_psr@sprite_plane_onoff:
    - bat-jsl-3:          [SKIP][41] -> [PASS][42] +3 other tests pass
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/bat-jsl-3/igt@kms_psr@sprite_plane_onoff.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/bat-jsl-3/igt@kms_psr@sprite_plane_onoff.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
  [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
  [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
  [i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093
  [i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094
  [i915#6166]: https://gitlab.freedesktop.org/drm/intel/issues/6166
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
  [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
  [i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357
  [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
  [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872
  [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
  [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
  [i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
  [i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197
  [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
  [i915#9500]: https://gitlab.freedesktop.org/drm/intel/issues/9500


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7575 -> IGTPW_10132

  CI-20190529: 20190529
  CI_DRM_13846: 8381a59e1809d7b35b7f19e0dde04e8ceec4cd92 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10132: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/index.html
  IGT_7575: 6edf8b6808de2bde968415926d2b55817f7ea1de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ CI.xeBAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
  2023-11-07 20:59 ` [igt-dev] [PATCH] " Jagmeet Randhawa
  2023-11-07 22:05 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
@ 2023-11-07 22:18 ` Patchwork
  2023-11-15 21:01 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev2) Patchwork
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-07 22:18 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms
URL   : https://patchwork.freedesktop.org/series/126096/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_7575_BAT -> XEIGTPW_10132_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_10132_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_10132_BAT, please notify your bug team (lgci.bug.filing@intel.com) 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_10132_BAT:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_dma_buf_sync@export-dma-buf-once:
    - bat-pvc-2:          [PASS][1] -> [FAIL][2] +14 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-pvc-2/igt@xe_dma_buf_sync@export-dma-buf-once.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-pvc-2/igt@xe_dma_buf_sync@export-dma-buf-once.html

  * igt@xe_intel_bb@intel-bb-blit-y:
    - bat-pvc-2:          NOTRUN -> [FAIL][3] +164 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-pvc-2/igt@xe_intel_bb@intel-bb-blit-y.html

  * igt@xe_live_ktest@bo:
    - bat-pvc-2:          NOTRUN -> [INCOMPLETE][4]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-pvc-2/igt@xe_live_ktest@bo.html

  
#### Warnings ####

  * igt@xe_evict@evict-beng-small-external:
    - bat-pvc-2:          [FAIL][5] ([Intel XE#389]) -> [FAIL][6] +3 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html

  * igt@xe_evict@evict-small-cm:
    - bat-pvc-2:          [DMESG-FAIL][7] ([Intel XE#482]) -> [FAIL][8] +3 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-pvc-2/igt@xe_evict@evict-small-cm.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-pvc-2/igt@xe_evict@evict-small-cm.html

  * igt@xe_exec_balancer@twice-virtual-basic:
    - bat-pvc-2:          [INCOMPLETE][9] -> [FAIL][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-pvc-2/igt@xe_exec_balancer@twice-virtual-basic.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-pvc-2/igt@xe_exec_balancer@twice-virtual-basic.html

  
#### Suppressed ####

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

  * {igt@xe_evict_ccs@evict-ccs-overcommit-parallel-nofree-samefd}:
    - bat-pvc-2:          [FAIL][11] ([Intel XE#862]) -> [FAIL][12]
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-pvc-2/igt@xe_evict_ccs@evict-ccs-overcommit-parallel-nofree-samefd.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-pvc-2/igt@xe_evict_ccs@evict-ccs-overcommit-parallel-nofree-samefd.html

  * {igt@xe_evict_ccs@evict-ccs-overcommit-simple}:
    - bat-pvc-2:          [PASS][13] -> [FAIL][14] +2 other tests fail
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-pvc-2/igt@xe_evict_ccs@evict-ccs-overcommit-simple.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-pvc-2/igt@xe_evict_ccs@evict-ccs-overcommit-simple.html

  * {igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate}:
    - bat-pvc-2:          NOTRUN -> [FAIL][15] +12 other tests fail
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-pvc-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_module_load@load:
    - bat-dg2-oem2:       [PASS][16] -> [INCOMPLETE][17] ([Intel XE#597] / [Intel XE#714])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-dg2-oem2/igt@xe_module_load@load.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-dg2-oem2/igt@xe_module_load@load.html
    - bat-atsm-2:         [PASS][18] -> [INCOMPLETE][19] ([Intel XE#714])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-atsm-2/igt@xe_module_load@load.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-atsm-2/igt@xe_module_load@load.html
    - bat-adlp-7:         [PASS][20] -> [INCOMPLETE][21] ([Intel XE#597])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-adlp-7/igt@xe_module_load@load.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10132/bat-adlp-7/igt@xe_module_load@load.html

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

  [Intel XE#389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/389
  [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482
  [Intel XE#597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/597
  [Intel XE#714]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/714
  [Intel XE#862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/862


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

  * IGT: IGT_7575 -> IGTPW_10132
  * Linux: xe-472-5a3a6fdda31fc8fa60db6d2fa30bd4db2509eb8b -> xe-477-ca9ad81ba3f8a973358c7c4175f552b11e14ef62

  IGTPW_10132: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10132/index.html
  IGT_7575: 6edf8b6808de2bde968415926d2b55817f7ea1de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-472-5a3a6fdda31fc8fa60db6d2fa30bd4db2509eb8b: 5a3a6fdda31fc8fa60db6d2fa30bd4db2509eb8b
  xe-477-ca9ad81ba3f8a973358c7c4175f552b11e14ef62: ca9ad81ba3f8a973358c7c4175f552b11e14ef62

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev2)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (2 preceding siblings ...)
  2023-11-07 22:18 ` [igt-dev] ✗ CI.xeBAT: " Patchwork
@ 2023-11-15 21:01 ` Patchwork
  2023-11-16 11:19   ` Kamil Konieczny
  2023-11-15 21:31 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork
                   ` (9 subsequent siblings)
  13 siblings, 1 reply; 18+ messages in thread
From: Patchwork @ 2023-11-15 21:01 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev2)
URL   : https://patchwork.freedesktop.org/series/126096/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13881 -> IGTPW_10197
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_10197 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_10197, please notify your bug team (lgci.bug.filing@intel.com) 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_10197/index.html

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

  Additional (1): fi-kbl-soraka 
  Missing    (3): fi-hsw-4770 bat-atsm-1 fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@dmabuf:
    - bat-mtlp-6:         [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/bat-mtlp-6/igt@i915_selftest@live@dmabuf.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/bat-mtlp-6/igt@i915_selftest@live@dmabuf.html

  * igt@i915_selftest@live@perf:
    - fi-kbl-soraka:      NOTRUN -> [ABORT][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt@i915_selftest@live@perf.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@random-engines:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][6] ([fdo#109271]) +14 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html

  * igt@i915_selftest@live@gt_pm:
    - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][7] ([i915#1886])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html

  * igt@i915_suspend@basic-s3-without-i915:
    - bat-rpls-1:         [PASS][8] -> [ABORT][9] ([i915#7978] / [i915#9631])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_dsc@dsc-basic:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][10] ([fdo#109271]) +9 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html

  * igt@kms_hdmi_inject@inject-audio:
    - fi-bsw-n3050:       NOTRUN -> [FAIL][11] ([IGT#3])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-bsw-n3050/igt@kms_hdmi_inject@inject-audio.html

  
#### Possible fixes ####

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
    - bat-rplp-1:         [ABORT][12] ([i915#8668]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html

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

  [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
  [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
  [i915#9631]: https://gitlab.freedesktop.org/drm/intel/issues/9631
  [i915#9648]: https://gitlab.freedesktop.org/drm/intel/issues/9648


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7590 -> IGTPW_10197

  CI-20190529: 20190529
  CI_DRM_13881: 36732395a74634a9ff9db10c79c4c52719cdab40 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10197: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/index.html
  IGT_7590: c484e1422184a3183d11f1595e53a6715574520f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@xe_waitfence@hasengine

== Logs ==

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

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

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

* [igt-dev] ✓ CI.xeBAT: success for lib/gpgpu_fill: Add support for Xe2 platforms (rev2)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (3 preceding siblings ...)
  2023-11-15 21:01 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev2) Patchwork
@ 2023-11-15 21:31 ` Patchwork
  2023-11-20 22:27 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev3) Patchwork
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-15 21:31 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev2)
URL   : https://patchwork.freedesktop.org/series/126096/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_7590_BAT -> XEIGTPW_10197_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp3:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2] ([Intel XE#480])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp3.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10197/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp3.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
    - bat-adlp-7:         [PASS][3] -> [FAIL][4] ([Intel XE#480])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10197/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html

  * igt@xe_exec_fault_mode@many-basic:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][5] ([Intel XE#288]) +17 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10197/bat-dg2-oem2/igt@xe_exec_fault_mode@many-basic.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - bat-adlp-7:         [FAIL][6] ([i915#2346]) -> [PASS][7]
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10197/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
    - bat-adlp-7:         [FAIL][8] ([Intel XE#480]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10197/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3:
    - bat-dg2-oem2:       [FAIL][10] ([Intel XE#480]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10197/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html

  * igt@kms_pipe_crc_basic@hang-read-crc:
    - bat-dg2-oem2:       [INCOMPLETE][12] ([Intel XE#282] / [Intel XE#749]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10197/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3:
    - bat-dg2-oem2:       [INCOMPLETE][14] ([Intel XE#282] / [Intel XE#545]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10197/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html

  
#### Warnings ####

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
    - bat-dg2-oem2:       [TIMEOUT][16] ([Intel XE#430] / [Intel XE#530]) -> [FAIL][17] ([Intel XE#400] / [Intel XE#616])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10197/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3:
    - bat-dg2-oem2:       [TIMEOUT][18] ([Intel XE#530]) -> [FAIL][19] ([Intel XE#400] / [Intel XE#616])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10197/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3.html

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

  [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400
  [Intel XE#430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/430
  [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
  [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
  [Intel XE#530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/530
  [Intel XE#545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/545
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#749]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/749
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346


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

  * IGT: IGT_7590 -> IGTPW_10197
  * Linux: xe-492-14d1d786caacdb3438d07ab86fabf2e36c8151cc -> xe-493-eba8bfb1dc87535362e28de282addc8752204df4

  IGTPW_10197: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/index.html
  IGT_7590: c484e1422184a3183d11f1595e53a6715574520f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-492-14d1d786caacdb3438d07ab86fabf2e36c8151cc: 14d1d786caacdb3438d07ab86fabf2e36c8151cc
  xe-493-eba8bfb1dc87535362e28de282addc8752204df4: eba8bfb1dc87535362e28de282addc8752204df4

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure  for lib/gpgpu_fill: Add support for Xe2 platforms (rev2)
  2023-11-15 21:01 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev2) Patchwork
@ 2023-11-16 11:19   ` Kamil Konieczny
  2023-11-21 12:29     ` Illipilli, TejasreeX
  0 siblings, 1 reply; 18+ messages in thread
From: Kamil Konieczny @ 2023-11-16 11:19 UTC (permalink / raw)
  To: igt-dev; +Cc: SaiX Nandan Yedireswarapu, lgci.bug.filing

Hi,

On 2023-11-15 at 21:01:30 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev2)
> URL   : https://patchwork.freedesktop.org/series/126096/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13881 -> IGTPW_10197
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_10197 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_10197, please notify your bug team (lgci.bug.filing@intel.com) 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_10197/index.html
> 
> Participating hosts (40 -> 38)
> ------------------------------
> 
>   Additional (1): fi-kbl-soraka 
>   Missing    (3): fi-hsw-4770 bat-atsm-1 fi-snb-2520m 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_10197:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live@dmabuf:
>     - bat-mtlp-6:         [PASS][1] -> [DMESG-FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/bat-mtlp-6/igt@i915_selftest@live@dmabuf.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/bat-mtlp-6/igt@i915_selftest@live@dmabuf.html
> 
>   * igt@i915_selftest@live@perf:
>     - fi-kbl-soraka:      NOTRUN -> [ABORT][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt@i915_selftest@live@perf.html
> 

This is unrelated to a change, please supress and respin.

Regards,
Kamil

>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_10197 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_huc_copy@huc-copy:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190])
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
> 
>   * igt@gem_lmem_swapping@basic:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 other tests skip
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
> 
>   * igt@gem_lmem_swapping@random-engines:
>     - fi-bsw-n3050:       NOTRUN -> [SKIP][6] ([fdo#109271]) +14 other tests skip
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html
> 
>   * igt@i915_selftest@live@gt_pm:
>     - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][7] ([i915#1886])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
> 
>   * igt@i915_suspend@basic-s3-without-i915:
>     - bat-rpls-1:         [PASS][8] -> [ABORT][9] ([i915#7978] / [i915#9631])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
> 
>   * igt@kms_dsc@dsc-basic:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][10] ([fdo#109271]) +9 other tests skip
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html
> 
>   * igt@kms_hdmi_inject@inject-audio:
>     - fi-bsw-n3050:       NOTRUN -> [FAIL][11] ([IGT#3])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-bsw-n3050/igt@kms_hdmi_inject@inject-audio.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
>     - bat-rplp-1:         [ABORT][12] ([i915#8668]) -> [PASS][13]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
>   [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
>   [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
>   [i915#9631]: https://gitlab.freedesktop.org/drm/intel/issues/9631
>   [i915#9648]: https://gitlab.freedesktop.org/drm/intel/issues/9648
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7590 -> IGTPW_10197
> 
>   CI-20190529: 20190529
>   CI_DRM_13881: 36732395a74634a9ff9db10c79c4c52719cdab40 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_10197: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/index.html
>   IGT_7590: c484e1422184a3183d11f1595e53a6715574520f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> 
> 
> Testlist changes
> ----------------
> 
> -igt@xe_waitfence@hasengine
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/index.html

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

* [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev3)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (4 preceding siblings ...)
  2023-11-15 21:31 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork
@ 2023-11-20 22:27 ` Patchwork
  2023-11-20 23:49 ` [igt-dev] ✗ CI.xeBAT: " Patchwork
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-20 22:27 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev3)
URL   : https://patchwork.freedesktop.org/series/126096/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13900 -> IGTPW_10222
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_10222 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_10222, please notify your bug team (lgci.bug.filing@intel.com) 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_10222/index.html

Participating hosts (33 -> 34)
------------------------------

  Additional (2): fi-kbl-soraka fi-hsw-4770 
  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@hangcheck:
    - fi-kbl-soraka:      NOTRUN -> [ABORT][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/fi-kbl-soraka/igt@i915_selftest@live@hangcheck.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s0@lmem0:
    - bat-dg2-9:          [PASS][2] -> [INCOMPLETE][3] ([i915#9275])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13900/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html

  * igt@i915_selftest@live@gt_pm:
    - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][6] ([i915#1886])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - fi-hsw-4770:        NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#5190])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_dsc@dsc-basic:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][8] ([fdo#109271]) +9 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1:
    - fi-hsw-4770:        NOTRUN -> [SKIP][9] ([fdo#109271]) +12 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-apl-guc:         [DMESG-FAIL][10] ([i915#5334]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13900/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@gt_mocs:
    - bat-mtlp-6:         [DMESG-WARN][12] -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13900/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html

  * igt@kms_hdmi_inject@inject-audio:
    - fi-kbl-guc:         [FAIL][14] ([IGT#3]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13900/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html

  * {igt@kms_psr@psr_cursor_plane_move@edp-1}:
    - bat-jsl-1:          [SKIP][16] ([i915#9648]) -> [PASS][17] +2 other tests pass
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13900/bat-jsl-1/igt@kms_psr@psr_cursor_plane_move@edp-1.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/bat-jsl-1/igt@kms_psr@psr_cursor_plane_move@edp-1.html

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

  [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
  [i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
  [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
  [i915#9648]: https://gitlab.freedesktop.org/drm/intel/issues/9648


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7595 -> IGTPW_10222

  CI-20190529: 20190529
  CI_DRM_13900: 7e7a522c80874faff37a7a66bdaff0747f978e11 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10222: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/index.html
  IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@xe_mmap@cpu-caching
-igt@xe_pat@pat-index-all
-igt@xe_pat@pat-index-xe2
-igt@xe_pat@pat-index-xehpc
-igt@xe_pat@pat-index-xelp
-igt@xe_pat@pat-index-xelpg
-igt@xe_pat@prime-external-import-coh
-igt@xe_pat@prime-self-import-coh
-igt@xe_pat@userptr-coh-none

== Logs ==

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

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

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

* [igt-dev] ✗ CI.xeBAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev3)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (5 preceding siblings ...)
  2023-11-20 22:27 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev3) Patchwork
@ 2023-11-20 23:49 ` Patchwork
  2023-11-21 22:03 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/gpgpu_fill: Add support for Xe2 platforms (rev4) Patchwork
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-20 23:49 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev3)
URL   : https://patchwork.freedesktop.org/series/126096/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_7595_BAT -> XEIGTPW_10222_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_10222_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_10222_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

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

  Missing    (1): bat-dg2-oem2 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10222/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html

  * igt@xe_guc_pc@freq_basic_api:
    - bat-adlp-7:         [PASS][3] -> [FAIL][4] +2 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@xe_guc_pc@freq_basic_api.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10222/bat-adlp-7/igt@xe_guc_pc@freq_basic_api.html
    - bat-pvc-2:          [PASS][5] -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-pvc-2/igt@xe_guc_pc@freq_basic_api.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10222/bat-pvc-2/igt@xe_guc_pc@freq_basic_api.html

  * igt@xe_guc_pc@freq_fixed_idle:
    - bat-atsm-2:         [PASS][7] -> [FAIL][8] +2 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-atsm-2/igt@xe_guc_pc@freq_fixed_idle.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10222/bat-atsm-2/igt@xe_guc_pc@freq_fixed_idle.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
    - bat-adlp-7:         [PASS][9] -> [FAIL][10] ([Intel XE#480]) +2 other tests fail
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10222/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
    - bat-adlp-7:         [FAIL][11] ([i915#2346]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10222/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html

  
#### Warnings ####

  * igt@kms_frontbuffer_tracking@basic:
    - bat-adlp-7:         [FAIL][13] ([Intel XE#616] / [Intel XE#750]) -> [DMESG-FAIL][14] ([Intel XE#282] / [i915#2017])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10222/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html

  
  [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
  [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/750
  [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346


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

  * IGT: IGT_7595 -> IGTPW_10222
  * Linux: xe-505-b25aa17bffa88c86fec716e40bdb3848eea17b23 -> xe-509-e580c76ab4e23dfd26e0199c8054e951f8f7d05f

  IGTPW_10222: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10222/index.html
  IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-505-b25aa17bffa88c86fec716e40bdb3848eea17b23: b25aa17bffa88c86fec716e40bdb3848eea17b23
  xe-509-e580c76ab4e23dfd26e0199c8054e951f8f7d05f: e580c76ab4e23dfd26e0199c8054e951f8f7d05f

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev2)
  2023-11-16 11:19   ` Kamil Konieczny
@ 2023-11-21 12:29     ` Illipilli, TejasreeX
  0 siblings, 0 replies; 18+ messages in thread
From: Illipilli, TejasreeX @ 2023-11-21 12:29 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev@lists.freedesktop.org
  Cc: Yedireswarapu, SaiX Nandan, LGCI Bug Filing

Hi,

Addressed failures from CI.BAT  https://patchwork.freedesktop.org/series/126096/ . re-reporting for Xe is not possible, Issues were addressed you can re-trigger testing or merge.

Thanks,
Tejasree

-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com> 
Sent: Thursday, November 16, 2023 4:50 PM
To: igt-dev@lists.freedesktop.org
Cc: Randhawa, Jagmeet <jagmeet.randhawa@intel.com>; Illipilli, TejasreeX <tejasreex.illipilli@intel.com>; Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com>; LGCI Bug Filing <lgci.bug.filing@intel.com>
Subject: Re: [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev2)

Hi,

On 2023-11-15 at 21:01:30 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev2)
> URL   : https://patchwork.freedesktop.org/series/126096/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13881 -> IGTPW_10197 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_10197 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_10197, please notify your bug team (lgci.bug.filing@intel.com) 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_10197/index.html
> 
> Participating hosts (40 -> 38)
> ------------------------------
> 
>   Additional (1): fi-kbl-soraka 
>   Missing    (3): fi-hsw-4770 bat-atsm-1 fi-snb-2520m 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_10197:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live@dmabuf:
>     - bat-mtlp-6:         [PASS][1] -> [DMESG-FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/bat-mtlp-6/igt@i915_selftest@live@dmabuf.html
>    [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/bat-mtlp-6/igt@i9
> 15_selftest@live@dmabuf.html
> 
>   * igt@i915_selftest@live@perf:
>     - fi-kbl-soraka:      NOTRUN -> [ABORT][3]
>    [3]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt
> @i915_selftest@live@perf.html
> 

This is unrelated to a change, please supress and respin.

Regards,
Kamil

>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_10197 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_huc_copy@huc-copy:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190])
>    [4]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt
> @gem_huc_copy@huc-copy.html
> 
>   * igt@gem_lmem_swapping@basic:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 other tests skip
>    [5]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt
> @gem_lmem_swapping@basic.html
> 
>   * igt@gem_lmem_swapping@random-engines:
>     - fi-bsw-n3050:       NOTRUN -> [SKIP][6] ([fdo#109271]) +14 other tests skip
>    [6]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-bsw-n3050/igt@
> gem_lmem_swapping@random-engines.html
> 
>   * igt@i915_selftest@live@gt_pm:
>     - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][7] ([i915#1886])
>    [7]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt
> @i915_selftest@live@gt_pm.html
> 
>   * igt@i915_suspend@basic-s3-without-i915:
>     - bat-rpls-1:         [PASS][8] -> [ABORT][9] ([i915#7978] / [i915#9631])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
>    [9]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/bat-rpls-1/igt@i9
> 15_suspend@basic-s3-without-i915.html
> 
>   * igt@kms_dsc@dsc-basic:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][10] ([fdo#109271]) +9 other tests skip
>    [10]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-kbl-soraka/igt
> @kms_dsc@dsc-basic.html
> 
>   * igt@kms_hdmi_inject@inject-audio:
>     - fi-bsw-n3050:       NOTRUN -> [FAIL][11] ([IGT#3])
>    [11]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/fi-bsw-n3050/igt@
> kms_hdmi_inject@inject-audio.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
>     - bat-rplp-1:         [ABORT][12] ([i915#8668]) -> [PASS][13]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
>    [13]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/bat-rplp-1/igt@km
> s_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
>   [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
>   [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
>   [i915#9631]: https://gitlab.freedesktop.org/drm/intel/issues/9631
>   [i915#9648]: https://gitlab.freedesktop.org/drm/intel/issues/9648
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7590 -> IGTPW_10197
> 
>   CI-20190529: 20190529
>   CI_DRM_13881: 36732395a74634a9ff9db10c79c4c52719cdab40 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_10197: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/index.html
>   IGT_7590: c484e1422184a3183d11f1595e53a6715574520f @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> 
> 
> Testlist changes
> ----------------
> 
> -igt@xe_waitfence@hasengine
> 
> == Logs ==
> 
> For more details see: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10197/index.html

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (6 preceding siblings ...)
  2023-11-20 23:49 ` [igt-dev] ✗ CI.xeBAT: " Patchwork
@ 2023-11-21 22:03 ` Patchwork
  2023-11-21 22:04 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-21 22:03 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
URL   : https://patchwork.freedesktop.org/series/126096/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13908 -> IGTPW_10233
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (33 -> 32)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@i915_selftest@live@gem_contexts:
    - bat-mtlp-6:         [DMESG-FAIL][1] -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/bat-mtlp-6/igt@i915_selftest@live@gem_contexts.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/bat-mtlp-6/igt@i915_selftest@live@gem_contexts.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-apl-guc:         [DMESG-FAIL][3] ([i915#5334]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
    - bat-rplp-1:         [ABORT][5] ([i915#8668]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html

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

  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7595 -> IGTPW_10233

  CI-20190529: 20190529
  CI_DRM_13908: 6f60ad772d45558e865e152a6a7cd39fefe950cf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10233: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/index.html
  IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@xe_create@create-big-vram

== Logs ==

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

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

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

* [igt-dev] ✓ CI.xeBAT: success for lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (7 preceding siblings ...)
  2023-11-21 22:03 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/gpgpu_fill: Add support for Xe2 platforms (rev4) Patchwork
@ 2023-11-21 22:04 ` Patchwork
  2023-11-22 16:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-21 22:04 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
URL   : https://patchwork.freedesktop.org/series/126096/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_7595_BAT -> XEIGTPW_10233_BAT
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with XEIGTPW_10233_BAT need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_10233_BAT, please notify your bug team (lgci.bug.filing@intel.com) 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_10233_BAT:

### IGT changes ###

#### Warnings ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-atsm-2:         [INCOMPLETE][1] ([Intel XE#764]) -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-atsm-2/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-atsm-2/igt@core_hotunplug@unbind-rebind.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-adlp-7:         [PASS][3] -> [DMESG-WARN][4] ([Intel XE#939])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
    - bat-dg2-oem2:       NOTRUN -> [DMESG-WARN][5] ([Intel XE#939])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-adlp-7:         [PASS][6] -> [FAIL][7] ([Intel XE#480]) +1 other test fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html

  * igt@xe_exec_fault_mode@many-basic:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][8] ([Intel XE#288]) +17 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-dg2-oem2/igt@xe_exec_fault_mode@many-basic.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
    - bat-atsm-2:         NOTRUN -> [SKIP][9] ([Intel XE#288]) +17 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html

  * igt@xe_guc_pc@freq_basic_api:
    - bat-adlp-7:         [PASS][10] -> [FAIL][11] ([Intel XE#935])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@xe_guc_pc@freq_basic_api.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-adlp-7/igt@xe_guc_pc@freq_basic_api.html
    - bat-pvc-2:          [PASS][12] -> [FAIL][13] ([Intel XE#935])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-pvc-2/igt@xe_guc_pc@freq_basic_api.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-pvc-2/igt@xe_guc_pc@freq_basic_api.html
    - bat-dg2-oem2:       [PASS][14] -> [FAIL][15] ([Intel XE#935])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-dg2-oem2/igt@xe_guc_pc@freq_basic_api.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-dg2-oem2/igt@xe_guc_pc@freq_basic_api.html
    - bat-atsm-2:         [PASS][16] -> [FAIL][17] ([Intel XE#935])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-atsm-2/igt@xe_guc_pc@freq_basic_api.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-atsm-2/igt@xe_guc_pc@freq_basic_api.html

  * igt@xe_guc_pc@freq_fixed_idle:
    - bat-atsm-2:         [PASS][18] -> [FAIL][19] ([Intel XE#940]) +1 other test fail
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-atsm-2/igt@xe_guc_pc@freq_fixed_idle.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-atsm-2/igt@xe_guc_pc@freq_fixed_idle.html
    - bat-dg2-oem2:       [PASS][20] -> [FAIL][21] ([Intel XE#940]) +1 other test fail
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-dg2-oem2/igt@xe_guc_pc@freq_fixed_idle.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-dg2-oem2/igt@xe_guc_pc@freq_fixed_idle.html

  * igt@xe_guc_pc@freq_range_idle:
    - bat-adlp-7:         [PASS][22] -> [FAIL][23] ([Intel XE#940]) +1 other test fail
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@xe_guc_pc@freq_range_idle.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-adlp-7/igt@xe_guc_pc@freq_range_idle.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
    - bat-adlp-7:         [FAIL][24] ([i915#2346]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html

  * igt@kms_pipe_crc_basic@hang-read-crc:
    - bat-dg2-oem2:       [INCOMPLETE][26] ([Intel XE#749]) -> [PASS][27]
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3:
    - bat-dg2-oem2:       [INCOMPLETE][28] ([Intel XE#545]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html

  
#### Warnings ####

  * igt@kms_frontbuffer_tracking@basic:
    - bat-adlp-7:         [FAIL][30] ([Intel XE#616] / [Intel XE#750]) -> [DMESG-FAIL][31] ([Intel XE#282] / [i915#2017])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
    - bat-dg2-oem2:       [TIMEOUT][32] ([Intel XE#430] / [Intel XE#530]) -> [FAIL][33] ([Intel XE#400] / [Intel XE#616])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3:
    - bat-dg2-oem2:       [TIMEOUT][34] ([Intel XE#530]) -> [FAIL][35] ([Intel XE#400] / [Intel XE#616])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10233/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3.html

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

  [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400
  [Intel XE#430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/430
  [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
  [Intel XE#530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/530
  [Intel XE#545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/545
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#749]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/749
  [Intel XE#750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/750
  [Intel XE#764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/764
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/935
  [Intel XE#939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/939
  [Intel XE#940]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/940
  [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346


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

  * IGT: IGT_7595 -> IGTPW_10233
  * Linux: xe-505-b25aa17bffa88c86fec716e40bdb3848eea17b23 -> xe-515-a9ee4928479a5449991149cc38747e8e20376db9

  IGTPW_10233: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/index.html
  IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-505-b25aa17bffa88c86fec716e40bdb3848eea17b23: b25aa17bffa88c86fec716e40bdb3848eea17b23
  xe-515-a9ee4928479a5449991149cc38747e8e20376db9: a9ee4928479a5449991149cc38747e8e20376db9

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (8 preceding siblings ...)
  2023-11-21 22:04 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-11-22 16:54 ` Patchwork
  2023-11-23  9:27   ` Kamil Konieczny
  2023-11-23 10:35 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
                   ` (3 subsequent siblings)
  13 siblings, 1 reply; 18+ messages in thread
From: Patchwork @ 2023-11-22 16:54 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
URL   : https://patchwork.freedesktop.org/series/126096/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13908_full -> IGTPW_10233_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_10233_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_10233_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10233/index.html

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_suspend@forcewake:
    - shard-dg2:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-5/igt@i915_suspend@forcewake.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@i915_suspend@forcewake.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-glk:          [FAIL][3] ([i915#2842]) -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk5/igt@gem_exec_fair@basic-none@vecs0.html

  
#### Suppressed ####

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

  * {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0}:
    - shard-tglu:         [FAIL][5] ([i915#3591]) -> [WARN][6] +2 other tests warn
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html

  * {igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4}:
    - shard-dg1:          NOTRUN -> [SKIP][7] +1 other test skip
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html

  * {igt@kms_psr@psr2_sprite_render@edp-1}:
    - shard-mtlp:         [PASS][8] -> [FAIL][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@kms_psr@psr2_sprite_render@edp-1.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_psr@psr2_sprite_render@edp-1.html

  
New tests
---------

  New tests have been introduced between CI_DRM_13908_full and IGTPW_10233_full:

### New IGT tests (2) ###

  * igt@kms_cursor_crc@cursor-offscreen-256x256@pipe-a-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-mtlp:         NOTRUN -> [SKIP][10] ([i915#8411])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@api_intel_bb@object-reloc-purge-cache.html
    - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#8411])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html

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

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

  * igt@drm_fdinfo@most-busy-check-all@vcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#8414]) +13 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@drm_fdinfo@most-busy-check-all@vcs0.html

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

  * igt@gem_ctx_exec@basic-norecovery:
    - shard-mtlp:         [PASS][16] -> [ABORT][17] ([i915#9414]) +2 other tests abort
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_ctx_exec@basic-norecovery.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-mtlp:         NOTRUN -> [SKIP][18] ([fdo#109314])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_ctx_param@set-priority-not-supported.html

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

  * igt@gem_exec_balancer@noheartbeat:
    - shard-mtlp:         NOTRUN -> [SKIP][20] ([i915#8555])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_exec_balancer@noheartbeat.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-tglu:         NOTRUN -> [FAIL][21] ([i915#6117])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_capture@capture-invisible@lmem0:
    - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#6334]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_capture@capture-invisible@lmem0.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-tglu:         NOTRUN -> [SKIP][23] ([i915#6344])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_capture@many-4k-zero:
    - shard-dg2:          NOTRUN -> [FAIL][24] ([i915#9606])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_exec_capture@many-4k-zero.html
    - shard-mtlp:         NOTRUN -> [FAIL][25] ([i915#9606])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_capture@many-4k-zero.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglu:         [PASS][26] -> [FAIL][27] ([i915#2842]) +1 other test fail
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo:
    - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#4473])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-glk:          [PASS][29] -> [FAIL][30] ([i915#2842]) +1 other test fail
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fence@submit67:
    - shard-dg2:          NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@gem_exec_fence@submit67.html
    - shard-mtlp:         NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_fence@submit67.html

  * igt@gem_exec_flush@basic-uc-set-default:
    - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#3539])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@gem_exec_flush@basic-uc-set-default.html

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

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

  * igt@gem_exec_reloc@basic-gtt-wc:
    - shard-dg1:          NOTRUN -> [SKIP][36] ([i915#3281])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-wc.html

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

  * igt@gem_exec_schedule@preempt-queue-contexts:
    - shard-mtlp:         NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-contexts.html
    - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html

  * igt@gem_exec_suspend@basic-s4-devices@lmem0:
    - shard-dg2:          [PASS][40] -> [ABORT][41] ([i915#7975] / [i915#8213])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html

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

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
    - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#4860]) +3 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-tglu:         NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random.html
    - shard-glk:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#4613])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk3/igt@gem_lmem_swapping@heavy-verify-random.html

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

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          [PASS][47] -> [DMESG-WARN][48] ([i915#4936] / [i915#5493])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][49] ([i915#4613])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#4077]) +8 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-xy:
    - shard-dg1:          NOTRUN -> [SKIP][51] ([i915#4077]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html

  * igt@gem_mmap_gtt@zero-extend:
    - shard-dg2:          NOTRUN -> [SKIP][52] ([i915#4077]) +8 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html

  * igt@gem_mmap_wc@bad-object:
    - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4083]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_mmap_wc@bad-object.html

  * igt@gem_mmap_wc@bad-offset:
    - shard-dg1:          NOTRUN -> [SKIP][54] ([i915#4083])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_mmap_wc@bad-offset.html

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

  * igt@gem_partial_pwrite_pread@writes-after-reads:
    - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#3282])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html

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

  * igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
    - shard-mtlp:         NOTRUN -> [SKIP][58] ([i915#3282]) +3 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-tglu:         NOTRUN -> [SKIP][59] ([i915#4270]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#4270]) +2 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-snb:          NOTRUN -> [SKIP][61] ([fdo#109271]) +52 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

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

  * igt@gem_render_tiled_blits@basic:
    - shard-dg1:          NOTRUN -> [SKIP][63] ([i915#4079]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_render_tiled_blits@basic.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-mtlp:         NOTRUN -> [SKIP][64] ([i915#4079]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][65] ([i915#4079]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][66] ([i915#3297])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#3297]) +2 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#3297] / [i915#4880])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-mtlp:         NOTRUN -> [SKIP][69] ([i915#3297])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

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

  * igt@gem_userptr_blits@vma-merge:
    - shard-dg2:          NOTRUN -> [FAIL][71] ([i915#3318])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@gem_userptr_blits@vma-merge.html

  * igt@gen3_render_linear_blits:
    - shard-tglu:         NOTRUN -> [SKIP][72] ([fdo#109289]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gen3_render_linear_blits.html

  * igt@gen3_render_tiledy_blits:
    - shard-mtlp:         NOTRUN -> [SKIP][73] ([fdo#109289]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gen3_render_tiledy_blits.html

  * igt@gen7_exec_parse@chained-batch:
    - shard-dg2:          NOTRUN -> [SKIP][74] ([fdo#109289]) +3 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@gen7_exec_parse@chained-batch.html

  * igt@gen9_exec_parse@bb-chained:
    - shard-tglu:         NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@gen9_exec_parse@bb-chained.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-mtlp:         NOTRUN -> [SKIP][76] ([i915#2856])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gen9_exec_parse@bb-start-out.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#2856]) +3 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-dg1:          NOTRUN -> [SKIP][78] ([i915#2527])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          [PASS][79] -> [INCOMPLETE][80] ([i915#9407])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-dg1:          NOTRUN -> [SKIP][81] ([fdo#109303])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@i915_query@query-topology-known-pci-ids.html

  * igt@i915_selftest@mock@memory_region:
    - shard-tglu:         NOTRUN -> [DMESG-WARN][82] ([i915#9311])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@i915_selftest@mock@memory_region.html
    - shard-mtlp:         NOTRUN -> [DMESG-WARN][83] ([i915#9311])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@i915_selftest@mock@memory_region.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - shard-dg1:          NOTRUN -> [SKIP][84] ([i915#4212])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#4212]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
    - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4212])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#4215] / [i915#5190])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-tglu:         NOTRUN -> [SKIP][88] ([i915#3826])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
    - shard-mtlp:         NOTRUN -> [SKIP][89] ([i915#3826])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][90] ([i915#6228])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          NOTRUN -> [SKIP][91] ([i915#4098] / [i915#9531])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-mtlp:         NOTRUN -> [SKIP][92] ([i915#1769] / [i915#3555]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][94] ([i915#4538] / [i915#5286])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

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

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-mtlp:         NOTRUN -> [SKIP][96] ([fdo#111614])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-tglu:         NOTRUN -> [SKIP][97] ([fdo#111614])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][98] ([fdo#111614]) +2 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-tglu:         [PASS][99] -> [FAIL][100] ([i915#3743])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglu:         NOTRUN -> [FAIL][101] ([i915#3743])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

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

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][103] ([i915#3638])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
    - shard-tglu:         NOTRUN -> [SKIP][104] ([fdo#111615])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][106] ([i915#4538]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][107] ([fdo#111615]) +6 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-tglu:         NOTRUN -> [SKIP][108] ([i915#2705])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_joiner@invalid-modeset.html

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

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

  * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][111] ([i915#4087]) +3 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-mtlp:         NOTRUN -> [SKIP][112] ([fdo#111827]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2:          NOTRUN -> [SKIP][113] ([fdo#111827]) +1 other test skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_color@gamma:
    - shard-tglu:         NOTRUN -> [SKIP][114] ([fdo#111827])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][115] ([i915#7828]) +1 other test skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-14/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

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

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-mtlp:         NOTRUN -> [SKIP][117] ([i915#7828]) +3 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
    - shard-dg2:          NOTRUN -> [SKIP][118] ([i915#7828]) +8 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic:
    - shard-dg2:          NOTRUN -> [SKIP][119] ([i915#7118])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][120] ([i915#6944] / [i915#7116] / [i915#7118])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html

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

  * igt@kms_content_protection@uevent:
    - shard-mtlp:         NOTRUN -> [SKIP][122] ([i915#6944]) +1 other test skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][123] ([i915#3359]) +2 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#3359]) +2 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#3555]) +3 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-mtlp:         NOTRUN -> [SKIP][126] ([i915#3555] / [i915#8814])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-mtlp:         NOTRUN -> [SKIP][127] ([i915#3359]) +1 other test skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-dg1:          NOTRUN -> [SKIP][128] ([i915#4103] / [i915#4213])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-tglu:         NOTRUN -> [SKIP][129] ([fdo#109274]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][130] ([fdo#109274] / [i915#5354]) +4 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
    - shard-mtlp:         NOTRUN -> [SKIP][131] ([i915#3546]) +3 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([fdo#109274] / [fdo#111767] / [i915#5354])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-snb:          NOTRUN -> [SKIP][133] ([fdo#109271] / [fdo#111767])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-mtlp:         NOTRUN -> [SKIP][135] ([i915#4213])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2:          NOTRUN -> [SKIP][136] ([i915#8588])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][137] ([i915#3555] / [i915#8812])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html

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

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][139] ([i915#3637]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][140] ([fdo#109274] / [fdo#111767] / [i915#3637])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([fdo#109274]) +2 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-fences-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][142] ([i915#8381])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_flip@flip-vs-fences-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#2672])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html

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

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

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

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-dg2:          [PASS][148] -> [FAIL][149] ([i915#6880])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][151] ([i915#3458]) +16 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg1:          NOTRUN -> [SKIP][152] ([i915#3458]) +3 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-dg1:          NOTRUN -> [SKIP][153] ([fdo#111825]) +5 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][154] ([i915#8708]) +14 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> [SKIP][155] ([fdo#109280]) +18 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
    - shard-mtlp:         NOTRUN -> [SKIP][156] ([i915#1825]) +18 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][157] ([i915#8708]) +2 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#5460])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
    - shard-mtlp:         NOTRUN -> [SKIP][159] ([i915#5460])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

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

  * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
    - shard-tglu:         NOTRUN -> [SKIP][161] ([fdo#110189]) +8 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html

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

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][163] ([i915#3555] / [i915#8228])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_hdr@static-toggle-suspend.html

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

  * igt@kms_panel_fitting@legacy:
    - shard-tglu:         NOTRUN -> [SKIP][165] ([i915#6301])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_panel_fitting@legacy.html

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

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu:         NOTRUN -> [SKIP][167] ([i915#3555])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-dg1:          NOTRUN -> [SKIP][168] ([i915#3555]) +2 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html

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

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#5176] / [i915#9423]) +3 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][171] ([i915#5235]) +7 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][172] ([i915#5235]) +3 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][173] ([i915#5235]) +23 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-dg2:          NOTRUN -> [SKIP][174] ([i915#6524] / [i915#6805]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
    - shard-dg1:          NOTRUN -> [SKIP][175] ([i915#9683])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
    - shard-tglu:         NOTRUN -> [SKIP][176] ([i915#9683])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-tglu:         NOTRUN -> [SKIP][177] ([fdo#111068] / [i915#9683])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][178] ([i915#9683]) +2 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@psr2_cursor_plane_move:
    - shard-dg2:          NOTRUN -> [SKIP][179] ([i915#9681]) +5 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_psr@psr2_cursor_plane_move.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-dg1:          NOTRUN -> [SKIP][180] ([i915#9673]) +1 other test skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-tglu:         NOTRUN -> [SKIP][181] ([i915#9673]) +1 other test skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_psr@psr2_sprite_render.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-mtlp:         NOTRUN -> [SKIP][182] ([i915#4235]) +2 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#4235] / [i915#5190])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          NOTRUN -> [FAIL][184] ([IGT#2])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_sysfs_edid_timing.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-mtlp:         NOTRUN -> [SKIP][185] ([i915#8623])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
    - shard-tglu:         [PASS][186] -> [FAIL][187] ([i915#9196])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html

  * igt@kms_vrr@flip-suspend:
    - shard-mtlp:         NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8808])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@negative-basic:
    - shard-glk:          NOTRUN -> [SKIP][189] ([fdo#109271]) +44 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@kms_vrr@negative-basic.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-mtlp:         NOTRUN -> [SKIP][190] ([i915#2437])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-dg2:          NOTRUN -> [SKIP][191] ([i915#2437]) +1 other test skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html

  * igt@perf@enable-disable@0-rcs0:
    - shard-dg2:          [PASS][192] -> [FAIL][193] ([i915#8724])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@perf@enable-disable@0-rcs0.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html

  * igt@perf_pmu@busy-double-start@ccs0:
    - shard-mtlp:         [PASS][194] -> [FAIL][195] ([i915#4349])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html

  * igt@perf_pmu@cpu-hotplug:
    - shard-dg1:          NOTRUN -> [SKIP][196] ([i915#8850])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@perf_pmu@cpu-hotplug.html

  * igt@prime_vgem@basic-write:
    - shard-dg1:          NOTRUN -> [SKIP][197] ([i915#3708])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@prime_vgem@basic-write.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-dg2:          NOTRUN -> [SKIP][198] ([i915#3708])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html

  * igt@v3d/v3d_perfmon@get-values-valid-perfmon:
    - shard-dg1:          NOTRUN -> [SKIP][199] ([i915#2575])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html

  * igt@v3d/v3d_submit_cl@bad-bo:
    - shard-dg2:          NOTRUN -> [SKIP][200] ([i915#2575]) +12 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-bo.html

  * igt@v3d/v3d_submit_cl@valid-submission:
    - shard-tglu:         NOTRUN -> [SKIP][201] ([fdo#109315] / [i915#2575]) +5 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@v3d/v3d_submit_cl@valid-submission.html
    - shard-mtlp:         NOTRUN -> [SKIP][202] ([i915#2575]) +8 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@v3d/v3d_submit_cl@valid-submission.html

  * igt@vc4/vc4_lookup_fail@bad-color-write:
    - shard-dg2:          NOTRUN -> [SKIP][203] ([i915#7711]) +6 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@vc4/vc4_lookup_fail@bad-color-write.html

  * igt@vc4/vc4_purgeable_bo@free-purged-bo:
    - shard-mtlp:         NOTRUN -> [SKIP][204] ([i915#7711]) +4 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@free-purged-bo.html

  * igt@vc4/vc4_wait_bo@bad-bo:
    - shard-dg1:          NOTRUN -> [SKIP][205] ([i915#7711]) +1 other test skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@vc4/vc4_wait_bo@bad-bo.html

  * igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
    - shard-tglu:         NOTRUN -> [SKIP][206] ([i915#2575]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html

  
#### Possible fixes ####

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-tglu:         [FAIL][207] ([i915#6268]) -> [PASS][208]
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html

  * igt@gem_eio@banned:
    - shard-mtlp:         [ABORT][209] ([i915#9414]) -> [PASS][210] +2 other tests pass
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-2/igt@gem_eio@banned.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_eio@banned.html

  * igt@gem_eio@reset-stress:
    - shard-dg1:          [FAIL][211] ([i915#5784]) -> [PASS][212]
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-17/igt@gem_eio@reset-stress.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@gem_eio@reset-stress.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-tglu:         [FAIL][213] ([i915#2842]) -> [PASS][214]
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@i915_module_load@reload-no-display:
    - shard-snb:          [INCOMPLETE][215] -> [PASS][216]
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb5/igt@i915_module_load@reload-no-display.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@i915_module_load@reload-no-display.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-snb:          [INCOMPLETE][217] ([i915#9200]) -> [PASS][218]
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rps@reset:
    - shard-snb:          [INCOMPLETE][219] ([i915#7790]) -> [PASS][220]
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb4/igt@i915_pm_rps@reset.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb2/igt@i915_pm_rps@reset.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-mtlp:         [FAIL][221] ([i915#5138]) -> [PASS][222]
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_busy@extended-modeset-hang-newfb@pipe-a:
    - shard-tglu:         [ABORT][223] -> [PASS][224]
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-10/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][225] ([i915#2346]) -> [PASS][226]
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
    - shard-dg2:          [FAIL][227] ([i915#6880]) -> [PASS][228] +2 other tests pass
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-mtlp:         [FAIL][229] ([i915#9196]) -> [PASS][230]
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/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-tglu:         [FAIL][231] ([i915#9196]) -> [PASS][232]
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html

  * igt@perf_pmu@render-node-busy@vcs0:
    - shard-mtlp:         [FAIL][233] ([i915#4349]) -> [PASS][234] +1 other test pass
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@perf_pmu@render-node-busy@vcs0.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@perf_pmu@render-node-busy@vcs0.html

  
#### Warnings ####

  * igt@gem_pread@exhaustion:
    - shard-glk:          [INCOMPLETE][235] -> [WARN][236] ([i915#2658])
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk5/igt@gem_pread@exhaustion.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@gem_pread@exhaustion.html

  * igt@kms_async_flips@crc@pipe-a-edp-1:
    - shard-mtlp:         [FAIL][237] ([i915#8247]) -> [DMESG-FAIL][238] ([i915#8561]) +1 other test dmesg-fail
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-4/igt@kms_async_flips@crc@pipe-a-edp-1.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_async_flips@crc@pipe-a-edp-1.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          [SKIP][239] ([i915#7118] / [i915#7162]) -> [SKIP][240] ([i915#7118])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-11/igt@kms_content_protection@type1.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_content_protection@type1.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - shard-dg2:          [CRASH][241] ([i915#9351]) -> [INCOMPLETE][242] ([i915#5493])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

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

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
  [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
  [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
  [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
  [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
  [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
  [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
  [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
  [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
  [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
  [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
  [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
  [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
  [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
  [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
  [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
  [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
  [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
  [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
  [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
  [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
  [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
  [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
  [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
  [i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407
  [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
  [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
  [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
  [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
  [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
  [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
  [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
  [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
  [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
  [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7595 -> IGTPW_10233
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13908: 6f60ad772d45558e865e152a6a7cd39fefe950cf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10233: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/index.html
  IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ 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_10233/index.html

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure  for lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
  2023-11-22 16:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-11-23  9:27   ` Kamil Konieczny
  0 siblings, 0 replies; 18+ messages in thread
From: Kamil Konieczny @ 2023-11-23  9:27 UTC (permalink / raw)
  To: igt-dev; +Cc: lgci.bug.filing

Hi,

On 2023-11-22 at 16:54:01 -0000, Patchwork wrote:

below is unrelated to gpgpu_fill changes, please supress,
no need for respin.

Regards,
Kamil

> == Series Details ==
> 
> Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
> URL   : https://patchwork.freedesktop.org/series/126096/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13908_full -> IGTPW_10233_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_10233_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_10233_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10233/index.html
> 
> Participating hosts (11 -> 11)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_10233_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_suspend@forcewake:
>     - shard-dg2:          [PASS][1] -> [ABORT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-5/igt@i915_suspend@forcewake.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@i915_suspend@forcewake.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_exec_fair@basic-none@vecs0:
>     - shard-glk:          [FAIL][3] ([i915#2842]) -> [INCOMPLETE][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk5/igt@gem_exec_fair@basic-none@vecs0.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0}:
>     - shard-tglu:         [FAIL][5] ([i915#3591]) -> [WARN][6] +2 other tests warn
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
> 
>   * {igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4}:
>     - shard-dg1:          NOTRUN -> [SKIP][7] +1 other test skip
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
> 
>   * {igt@kms_psr@psr2_sprite_render@edp-1}:
>     - shard-mtlp:         [PASS][8] -> [FAIL][9]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@kms_psr@psr2_sprite_render@edp-1.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_psr@psr2_sprite_render@edp-1.html
> 
>   
> New tests
> ---------
> 
>   New tests have been introduced between CI_DRM_13908_full and IGTPW_10233_full:
> 
> ### New IGT tests (2) ###
> 
>   * igt@kms_cursor_crc@cursor-offscreen-256x256@pipe-a-dp-4:
>     - Statuses : 1 pass(s)
>     - Exec time: [0.0] s
> 
>   * igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-dp-4:
>     - Statuses : 1 pass(s)
>     - Exec time: [0.0] s
> 
>   
> 
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_10233_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@api_intel_bb@object-reloc-purge-cache:
>     - shard-mtlp:         NOTRUN -> [SKIP][10] ([i915#8411])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@api_intel_bb@object-reloc-purge-cache.html
>     - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#8411])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html
> 
>   * igt@device_reset@unbind-cold-reset-rebind:
>     - shard-tglu:         NOTRUN -> [SKIP][12] ([i915#7701])
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html
> 
>   * igt@drm_fdinfo@all-busy-check-all:
>     - shard-dg2:          NOTRUN -> [SKIP][13] ([i915#8414]) +1 other test skip
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@drm_fdinfo@all-busy-check-all.html
> 
>   * igt@drm_fdinfo@most-busy-check-all@vcs0:
>     - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#8414]) +13 other tests skip
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@drm_fdinfo@most-busy-check-all@vcs0.html
> 
>   * igt@gem_close_race@multigpu-basic-process:
>     - shard-dg2:          NOTRUN -> [SKIP][15] ([i915#7697])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html
> 
>   * igt@gem_ctx_exec@basic-norecovery:
>     - shard-mtlp:         [PASS][16] -> [ABORT][17] ([i915#9414]) +2 other tests abort
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_ctx_exec@basic-norecovery.html
> 
>   * igt@gem_ctx_param@set-priority-not-supported:
>     - shard-mtlp:         NOTRUN -> [SKIP][18] ([fdo#109314])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_ctx_param@set-priority-not-supported.html
> 
>   * igt@gem_ctx_persistence@heartbeat-hang:
>     - shard-dg2:          NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html
> 
>   * igt@gem_exec_balancer@noheartbeat:
>     - shard-mtlp:         NOTRUN -> [SKIP][20] ([i915#8555])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_exec_balancer@noheartbeat.html
> 
>   * igt@gem_exec_balancer@parallel-ordering:
>     - shard-tglu:         NOTRUN -> [FAIL][21] ([i915#6117])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html
> 
>   * igt@gem_exec_capture@capture-invisible@lmem0:
>     - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#6334]) +1 other test skip
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_capture@capture-invisible@lmem0.html
> 
>   * igt@gem_exec_capture@capture-recoverable:
>     - shard-tglu:         NOTRUN -> [SKIP][23] ([i915#6344])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@gem_exec_capture@capture-recoverable.html
> 
>   * igt@gem_exec_capture@many-4k-zero:
>     - shard-dg2:          NOTRUN -> [FAIL][24] ([i915#9606])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_exec_capture@many-4k-zero.html
>     - shard-mtlp:         NOTRUN -> [FAIL][25] ([i915#9606])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_capture@many-4k-zero.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-tglu:         [PASS][26] -> [FAIL][27] ([i915#2842]) +1 other test fail
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-solo:
>     - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#4473])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - shard-glk:          [PASS][29] -> [FAIL][30] ([i915#2842]) +1 other test fail
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@gem_exec_fence@submit67:
>     - shard-dg2:          NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@gem_exec_fence@submit67.html
>     - shard-mtlp:         NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_fence@submit67.html
> 
>   * igt@gem_exec_flush@basic-uc-set-default:
>     - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#3539])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@gem_exec_flush@basic-uc-set-default.html
> 
>   * igt@gem_exec_flush@basic-wb-rw-default:
>     - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +2 other tests skip
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_exec_flush@basic-wb-rw-default.html
> 
>   * igt@gem_exec_reloc@basic-gtt-read:
>     - shard-mtlp:         NOTRUN -> [SKIP][35] ([i915#3281]) +6 other tests skip
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-read.html
> 
>   * igt@gem_exec_reloc@basic-gtt-wc:
>     - shard-dg1:          NOTRUN -> [SKIP][36] ([i915#3281])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-wc.html
> 
>   * igt@gem_exec_reloc@basic-wc:
>     - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#3281]) +7 other tests skip
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_exec_reloc@basic-wc.html
> 
>   * igt@gem_exec_schedule@preempt-queue-contexts:
>     - shard-mtlp:         NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-contexts.html
>     - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html
> 
>   * igt@gem_exec_suspend@basic-s4-devices@lmem0:
>     - shard-dg2:          [PASS][40] -> [ABORT][41] ([i915#7975] / [i915#8213])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
> 
>   * igt@gem_fenced_exec_thrash@2-spare-fences:
>     - shard-mtlp:         NOTRUN -> [SKIP][42] ([i915#4860]) +1 other test skip
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_fenced_exec_thrash@2-spare-fences.html
> 
>   * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
>     - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#4860]) +3 other tests skip
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-random:
>     - shard-tglu:         NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random.html
>     - shard-glk:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#4613])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk3/igt@gem_lmem_swapping@heavy-verify-random.html
> 
>   * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
>     - shard-dg1:          NOTRUN -> [SKIP][46] ([i915#4565])
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
> 
>   * igt@gem_lmem_swapping@smem-oom@lmem0:
>     - shard-dg1:          [PASS][47] -> [DMESG-WARN][48] ([i915#4936] / [i915#5493])
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
> 
>   * igt@gem_lmem_swapping@verify-ccs:
>     - shard-mtlp:         NOTRUN -> [SKIP][49] ([i915#4613])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_lmem_swapping@verify-ccs.html
> 
>   * igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#4077]) +8 other tests skip
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html
> 
>   * igt@gem_mmap_gtt@cpuset-medium-copy-xy:
>     - shard-dg1:          NOTRUN -> [SKIP][51] ([i915#4077]) +1 other test skip
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
> 
>   * igt@gem_mmap_gtt@zero-extend:
>     - shard-dg2:          NOTRUN -> [SKIP][52] ([i915#4077]) +8 other tests skip
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html
> 
>   * igt@gem_mmap_wc@bad-object:
>     - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4083]) +1 other test skip
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_mmap_wc@bad-object.html
> 
>   * igt@gem_mmap_wc@bad-offset:
>     - shard-dg1:          NOTRUN -> [SKIP][54] ([i915#4083])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_mmap_wc@bad-offset.html
> 
>   * igt@gem_mmap_wc@write-wc-read-gtt:
>     - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4083]) +4 other tests skip
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html
> 
>   * igt@gem_partial_pwrite_pread@writes-after-reads:
>     - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#3282])
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html
> 
>   * igt@gem_partial_pwrite_pread@writes-after-reads-display:
>     - shard-dg2:          NOTRUN -> [SKIP][57] ([i915#3282]) +5 other tests skip
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
> 
>   * igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
>     - shard-mtlp:         NOTRUN -> [SKIP][58] ([i915#3282]) +3 other tests skip
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
> 
>   * igt@gem_pxp@protected-raw-src-copy-not-readible:
>     - shard-tglu:         NOTRUN -> [SKIP][59] ([i915#4270]) +2 other tests skip
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
> 
>   * igt@gem_pxp@regular-baseline-src-copy-readible:
>     - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#4270]) +2 other tests skip
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
> 
>   * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
>     - shard-snb:          NOTRUN -> [SKIP][61] ([fdo#109271]) +52 other tests skip
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
> 
>   * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
>     - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#8428]) +2 other tests skip
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
> 
>   * igt@gem_render_tiled_blits@basic:
>     - shard-dg1:          NOTRUN -> [SKIP][63] ([i915#4079]) +1 other test skip
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_render_tiled_blits@basic.html
> 
>   * igt@gem_set_tiling_vs_pwrite:
>     - shard-mtlp:         NOTRUN -> [SKIP][64] ([i915#4079]) +1 other test skip
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_set_tiling_vs_pwrite.html
> 
>   * igt@gem_tiled_pread_pwrite:
>     - shard-dg2:          NOTRUN -> [SKIP][65] ([i915#4079]) +1 other test skip
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_tiled_pread_pwrite.html
> 
>   * igt@gem_userptr_blits@coherency-unsync:
>     - shard-tglu:         NOTRUN -> [SKIP][66] ([i915#3297])
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_userptr_blits@coherency-unsync.html
> 
>   * igt@gem_userptr_blits@dmabuf-unsync:
>     - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#3297]) +2 other tests skip
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
>     - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#3297] / [i915#4880])
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
>     - shard-mtlp:         NOTRUN -> [SKIP][69] ([i915#3297])
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
> 
>   * igt@gem_userptr_blits@sd-probe:
>     - shard-dg2:          NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4958])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_userptr_blits@sd-probe.html
> 
>   * igt@gem_userptr_blits@vma-merge:
>     - shard-dg2:          NOTRUN -> [FAIL][71] ([i915#3318])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@gem_userptr_blits@vma-merge.html
> 
>   * igt@gen3_render_linear_blits:
>     - shard-tglu:         NOTRUN -> [SKIP][72] ([fdo#109289]) +1 other test skip
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gen3_render_linear_blits.html
> 
>   * igt@gen3_render_tiledy_blits:
>     - shard-mtlp:         NOTRUN -> [SKIP][73] ([fdo#109289]) +1 other test skip
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gen3_render_tiledy_blits.html
> 
>   * igt@gen7_exec_parse@chained-batch:
>     - shard-dg2:          NOTRUN -> [SKIP][74] ([fdo#109289]) +3 other tests skip
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@gen7_exec_parse@chained-batch.html
> 
>   * igt@gen9_exec_parse@bb-chained:
>     - shard-tglu:         NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856]) +1 other test skip
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@gen9_exec_parse@bb-chained.html
> 
>   * igt@gen9_exec_parse@bb-start-out:
>     - shard-mtlp:         NOTRUN -> [SKIP][76] ([i915#2856])
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gen9_exec_parse@bb-start-out.html
> 
>   * igt@gen9_exec_parse@bb-start-param:
>     - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#2856]) +3 other tests skip
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html
> 
>   * igt@gen9_exec_parse@valid-registers:
>     - shard-dg1:          NOTRUN -> [SKIP][78] ([i915#2527])
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gen9_exec_parse@valid-registers.html
> 
>   * igt@i915_pm_freq_api@freq-suspend@gt0:
>     - shard-dg2:          [PASS][79] -> [INCOMPLETE][80] ([i915#9407])
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
> 
>   * igt@i915_query@query-topology-known-pci-ids:
>     - shard-dg1:          NOTRUN -> [SKIP][81] ([fdo#109303])
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@i915_query@query-topology-known-pci-ids.html
> 
>   * igt@i915_selftest@mock@memory_region:
>     - shard-tglu:         NOTRUN -> [DMESG-WARN][82] ([i915#9311])
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@i915_selftest@mock@memory_region.html
>     - shard-mtlp:         NOTRUN -> [DMESG-WARN][83] ([i915#9311])
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@i915_selftest@mock@memory_region.html
> 
>   * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
>     - shard-dg1:          NOTRUN -> [SKIP][84] ([i915#4212])
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
> 
>   * igt@kms_addfb_basic@basic-x-tiled-legacy:
>     - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#4212]) +1 other test skip
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
>     - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4212])
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
> 
>   * igt@kms_addfb_basic@basic-y-tiled-legacy:
>     - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#4215] / [i915#5190])
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
> 
>   * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
>     - shard-tglu:         NOTRUN -> [SKIP][88] ([i915#3826])
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
>     - shard-mtlp:         NOTRUN -> [SKIP][89] ([i915#3826])
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
> 
>   * igt@kms_async_flips@invalid-async-flip:
>     - shard-mtlp:         NOTRUN -> [SKIP][90] ([i915#6228])
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html
> 
>   * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>     - shard-dg2:          NOTRUN -> [SKIP][91] ([i915#4098] / [i915#9531])
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
>     - shard-mtlp:         NOTRUN -> [SKIP][92] ([i915#1769] / [i915#3555]) +1 other test skip
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>     - shard-tglu:         NOTRUN -> [SKIP][93] ([fdo#111615] / [i915#5286]) +3 other tests skip
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>     - shard-dg1:          NOTRUN -> [SKIP][94] ([i915#4538] / [i915#5286])
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>     - shard-mtlp:         NOTRUN -> [FAIL][95] ([i915#5138])
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@linear-64bpp-rotate-270:
>     - shard-mtlp:         NOTRUN -> [SKIP][96] ([fdo#111614])
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
> 
>   * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
>     - shard-tglu:         NOTRUN -> [SKIP][97] ([fdo#111614])
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
> 
>   * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
>     - shard-dg2:          NOTRUN -> [SKIP][98] ([fdo#111614]) +2 other tests skip
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>     - shard-tglu:         [PASS][99] -> [FAIL][100] ([i915#3743])
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
>     - shard-tglu:         NOTRUN -> [FAIL][101] ([i915#3743])
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
> 
>   * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
>     - shard-dg2:          NOTRUN -> [SKIP][102] ([i915#5190]) +12 other tests skip
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
> 
>   * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
>     - shard-dg1:          NOTRUN -> [SKIP][103] ([i915#3638])
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
>     - shard-tglu:         NOTRUN -> [SKIP][104] ([fdo#111615])
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
> 
>   * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
>     - shard-dg2:          NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5190]) +6 other tests skip
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>     - shard-dg1:          NOTRUN -> [SKIP][106] ([i915#4538]) +1 other test skip
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>     - shard-mtlp:         NOTRUN -> [SKIP][107] ([fdo#111615]) +6 other tests skip
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> 
>   * igt@kms_big_joiner@invalid-modeset:
>     - shard-tglu:         NOTRUN -> [SKIP][108] ([i915#2705])
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_joiner@invalid-modeset.html
> 
>   * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#4087] / [i915#7213]) +3 other tests skip
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
>     - shard-dg2:          NOTRUN -> [SKIP][110] ([i915#4087]) +3 other tests skip
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][111] ([i915#4087]) +3 other tests skip
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
> 
>   * igt@kms_chamelium_color@ctm-blue-to-red:
>     - shard-mtlp:         NOTRUN -> [SKIP][112] ([fdo#111827]) +1 other test skip
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html
> 
>   * igt@kms_chamelium_color@degamma:
>     - shard-dg2:          NOTRUN -> [SKIP][113] ([fdo#111827]) +1 other test skip
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_chamelium_color@degamma.html
> 
>   * igt@kms_chamelium_color@gamma:
>     - shard-tglu:         NOTRUN -> [SKIP][114] ([fdo#111827])
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_chamelium_color@gamma.html
> 
>   * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
>     - shard-dg1:          NOTRUN -> [SKIP][115] ([i915#7828]) +1 other test skip
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-14/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
> 
>   * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
>     - shard-tglu:         NOTRUN -> [SKIP][116] ([i915#7828]) +2 other tests skip
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
> 
>   * igt@kms_chamelium_hpd@vga-hpd-fast:
>     - shard-mtlp:         NOTRUN -> [SKIP][117] ([i915#7828]) +3 other tests skip
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-fast.html
> 
>   * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
>     - shard-dg2:          NOTRUN -> [SKIP][118] ([i915#7828]) +8 other tests skip
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
> 
>   * igt@kms_content_protection@atomic:
>     - shard-dg2:          NOTRUN -> [SKIP][119] ([i915#7118])
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_content_protection@atomic.html
> 
>   * igt@kms_content_protection@atomic-dpms:
>     - shard-tglu:         NOTRUN -> [SKIP][120] ([i915#6944] / [i915#7116] / [i915#7118])
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html
> 
>   * igt@kms_content_protection@dp-mst-type-0:
>     - shard-dg2:          NOTRUN -> [SKIP][121] ([i915#3299])
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_content_protection@dp-mst-type-0.html
> 
>   * igt@kms_content_protection@uevent:
>     - shard-mtlp:         NOTRUN -> [SKIP][122] ([i915#6944]) +1 other test skip
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_content_protection@uevent.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-512x512:
>     - shard-tglu:         NOTRUN -> [SKIP][123] ([i915#3359]) +2 other tests skip
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-random-512x170:
>     - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#3359]) +2 other tests skip
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-32x10:
>     - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#3555]) +3 other tests skip
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-32x32:
>     - shard-mtlp:         NOTRUN -> [SKIP][126] ([i915#3555] / [i915#8814])
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-32x32.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-512x170:
>     - shard-mtlp:         NOTRUN -> [SKIP][127] ([i915#3359]) +1 other test skip
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>     - shard-dg1:          NOTRUN -> [SKIP][128] ([i915#4103] / [i915#4213])
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
>     - shard-tglu:         NOTRUN -> [SKIP][129] ([fdo#109274]) +1 other test skip
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
>     - shard-dg2:          NOTRUN -> [SKIP][130] ([fdo#109274] / [i915#5354]) +4 other tests skip
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
>     - shard-mtlp:         NOTRUN -> [SKIP][131] ([i915#3546]) +3 other tests skip
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>     - shard-dg2:          NOTRUN -> [SKIP][132] ([fdo#109274] / [fdo#111767] / [i915#5354])
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
>     - shard-snb:          NOTRUN -> [SKIP][133] ([fdo#109271] / [fdo#111767])
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>     - shard-dg2:          NOTRUN -> [SKIP][134] ([i915#4103] / [i915#4213])
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
>     - shard-mtlp:         NOTRUN -> [SKIP][135] ([i915#4213])
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_display_modes@mst-extended-mode-negative:
>     - shard-dg2:          NOTRUN -> [SKIP][136] ([i915#8588])
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html
> 
>   * igt@kms_draw_crc@draw-method-mmap-gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][137] ([i915#3555] / [i915#8812])
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
> 
>   * igt@kms_dsc@dsc-with-bpc:
>     - shard-dg2:          NOTRUN -> [SKIP][138] ([i915#3555] / [i915#3840] / [i915#4098])
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_dsc@dsc-with-bpc.html
> 
>   * igt@kms_flip@2x-blocking-absolute-wf_vblank:
>     - shard-mtlp:         NOTRUN -> [SKIP][139] ([i915#3637]) +1 other test skip
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
> 
>   * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
>     - shard-tglu:         NOTRUN -> [SKIP][140] ([fdo#109274] / [fdo#111767] / [i915#3637])
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][141] ([fdo#109274]) +2 other tests skip
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@flip-vs-fences-interruptible:
>     - shard-mtlp:         NOTRUN -> [SKIP][142] ([i915#8381])
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_flip@flip-vs-fences-interruptible.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#2672])
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
>     - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#2587] / [i915#2672]) +2 other tests skip
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][145] ([i915#8810])
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][146] ([i915#3555] / [i915#8810])
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
>     - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#2672]) +6 other tests skip
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
>     - shard-dg2:          [PASS][148] -> [FAIL][149] ([i915#6880])
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
>     - shard-dg2:          NOTRUN -> [SKIP][150] ([i915#5354]) +36 other tests skip
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
>     - shard-dg2:          NOTRUN -> [SKIP][151] ([i915#3458]) +16 other tests skip
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
>     - shard-dg1:          NOTRUN -> [SKIP][152] ([i915#3458]) +3 other tests skip
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
>     - shard-dg1:          NOTRUN -> [SKIP][153] ([fdo#111825]) +5 other tests skip
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
>     - shard-dg2:          NOTRUN -> [SKIP][154] ([i915#8708]) +14 other tests skip
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
>     - shard-tglu:         NOTRUN -> [SKIP][155] ([fdo#109280]) +18 other tests skip
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
>     - shard-mtlp:         NOTRUN -> [SKIP][156] ([i915#1825]) +18 other tests skip
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
>     - shard-dg1:          NOTRUN -> [SKIP][157] ([i915#8708]) +2 other tests skip
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
>     - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#5460])
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
>     - shard-mtlp:         NOTRUN -> [SKIP][159] ([i915#5460])
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#8708]) +5 other tests skip
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
>     - shard-tglu:         NOTRUN -> [SKIP][161] ([fdo#110189]) +8 other tests skip
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
> 
>   * igt@kms_hdr@static-toggle:
>     - shard-dg2:          NOTRUN -> [SKIP][162] ([i915#3555] / [i915#8228]) +2 other tests skip
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_hdr@static-toggle.html
> 
>   * igt@kms_hdr@static-toggle-suspend:
>     - shard-dg1:          NOTRUN -> [SKIP][163] ([i915#3555] / [i915#8228])
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_hdr@static-toggle-suspend.html
> 
>   * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>     - shard-dg2:          NOTRUN -> [SKIP][164] ([i915#4816])
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> 
>   * igt@kms_panel_fitting@legacy:
>     - shard-tglu:         NOTRUN -> [SKIP][165] ([i915#6301])
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_panel_fitting@legacy.html
> 
>   * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#3582]) +3 other tests skip
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
> 
>   * igt@kms_plane_lowres@tiling-yf:
>     - shard-tglu:         NOTRUN -> [SKIP][167] ([i915#3555])
>    [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_plane_lowres@tiling-yf.html
> 
>   * igt@kms_plane_multiple@tiling-yf:
>     - shard-dg1:          NOTRUN -> [SKIP][168] ([i915#3555]) +2 other tests skip
>    [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html
> 
>   * igt@kms_plane_scaling@intel-max-src-size:
>     - shard-dg2:          NOTRUN -> [SKIP][169] ([i915#6953])
>    [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html
> 
>   * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
>     - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#5176] / [i915#9423]) +3 other tests skip
>    [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
>     - shard-dg1:          NOTRUN -> [SKIP][171] ([i915#5235]) +7 other tests skip
>    [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
>     - shard-tglu:         NOTRUN -> [SKIP][172] ([i915#5235]) +3 other tests skip
>    [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][173] ([i915#5235]) +23 other tests skip
>    [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_prime@basic-crc-hybrid:
>     - shard-dg2:          NOTRUN -> [SKIP][174] ([i915#6524] / [i915#6805]) +1 other test skip
>    [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_prime@basic-crc-hybrid.html
> 
>   * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
>     - shard-dg1:          NOTRUN -> [SKIP][175] ([i915#9683])
>    [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
> 
>   * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
>     - shard-tglu:         NOTRUN -> [SKIP][176] ([i915#9683])
>    [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
>     - shard-tglu:         NOTRUN -> [SKIP][177] ([fdo#111068] / [i915#9683])
>    [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
> 
>   * igt@kms_psr2_su@frontbuffer-xrgb8888:
>     - shard-dg2:          NOTRUN -> [SKIP][178] ([i915#9683]) +2 other tests skip
>    [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
> 
>   * igt@kms_psr@psr2_cursor_plane_move:
>     - shard-dg2:          NOTRUN -> [SKIP][179] ([i915#9681]) +5 other tests skip
>    [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_psr@psr2_cursor_plane_move.html
> 
>   * igt@kms_psr@psr2_sprite_mmap_gtt:
>     - shard-dg1:          NOTRUN -> [SKIP][180] ([i915#9673]) +1 other test skip
>    [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_psr@psr2_sprite_mmap_gtt.html
> 
>   * igt@kms_psr@psr2_sprite_render:
>     - shard-tglu:         NOTRUN -> [SKIP][181] ([i915#9673]) +1 other test skip
>    [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_psr@psr2_sprite_render.html
> 
>   * igt@kms_rotation_crc@primary-rotation-90:
>     - shard-mtlp:         NOTRUN -> [SKIP][182] ([i915#4235]) +2 other tests skip
>    [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-90.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
>     - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#4235] / [i915#5190])
>    [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
> 
>   * igt@kms_sysfs_edid_timing:
>     - shard-dg2:          NOTRUN -> [FAIL][184] ([IGT#2])
>    [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_sysfs_edid_timing.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-mtlp:         NOTRUN -> [SKIP][185] ([i915#8623])
>    [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
>     - shard-tglu:         [PASS][186] -> [FAIL][187] ([i915#9196])
>    [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
>    [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
> 
>   * igt@kms_vrr@flip-suspend:
>     - shard-mtlp:         NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8808])
>    [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_vrr@flip-suspend.html
> 
>   * igt@kms_vrr@negative-basic:
>     - shard-glk:          NOTRUN -> [SKIP][189] ([fdo#109271]) +44 other tests skip
>    [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@kms_vrr@negative-basic.html
> 
>   * igt@kms_writeback@writeback-invalid-parameters:
>     - shard-mtlp:         NOTRUN -> [SKIP][190] ([i915#2437])
>    [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html
> 
>   * igt@kms_writeback@writeback-pixel-formats:
>     - shard-dg2:          NOTRUN -> [SKIP][191] ([i915#2437]) +1 other test skip
>    [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html
> 
>   * igt@perf@enable-disable@0-rcs0:
>     - shard-dg2:          [PASS][192] -> [FAIL][193] ([i915#8724])
>    [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@perf@enable-disable@0-rcs0.html
>    [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
> 
>   * igt@perf_pmu@busy-double-start@ccs0:
>     - shard-mtlp:         [PASS][194] -> [FAIL][195] ([i915#4349])
>    [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
>    [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html
> 
>   * igt@perf_pmu@cpu-hotplug:
>     - shard-dg1:          NOTRUN -> [SKIP][196] ([i915#8850])
>    [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@perf_pmu@cpu-hotplug.html
> 
>   * igt@prime_vgem@basic-write:
>     - shard-dg1:          NOTRUN -> [SKIP][197] ([i915#3708])
>    [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@prime_vgem@basic-write.html
> 
>   * igt@prime_vgem@fence-flip-hang:
>     - shard-dg2:          NOTRUN -> [SKIP][198] ([i915#3708])
>    [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html
> 
>   * igt@v3d/v3d_perfmon@get-values-valid-perfmon:
>     - shard-dg1:          NOTRUN -> [SKIP][199] ([i915#2575])
>    [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html
> 
>   * igt@v3d/v3d_submit_cl@bad-bo:
>     - shard-dg2:          NOTRUN -> [SKIP][200] ([i915#2575]) +12 other tests skip
>    [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-bo.html
> 
>   * igt@v3d/v3d_submit_cl@valid-submission:
>     - shard-tglu:         NOTRUN -> [SKIP][201] ([fdo#109315] / [i915#2575]) +5 other tests skip
>    [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@v3d/v3d_submit_cl@valid-submission.html
>     - shard-mtlp:         NOTRUN -> [SKIP][202] ([i915#2575]) +8 other tests skip
>    [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@v3d/v3d_submit_cl@valid-submission.html
> 
>   * igt@vc4/vc4_lookup_fail@bad-color-write:
>     - shard-dg2:          NOTRUN -> [SKIP][203] ([i915#7711]) +6 other tests skip
>    [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@vc4/vc4_lookup_fail@bad-color-write.html
> 
>   * igt@vc4/vc4_purgeable_bo@free-purged-bo:
>     - shard-mtlp:         NOTRUN -> [SKIP][204] ([i915#7711]) +4 other tests skip
>    [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
> 
>   * igt@vc4/vc4_wait_bo@bad-bo:
>     - shard-dg1:          NOTRUN -> [SKIP][205] ([i915#7711]) +1 other test skip
>    [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@vc4/vc4_wait_bo@bad-bo.html
> 
>   * igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
>     - shard-tglu:         NOTRUN -> [SKIP][206] ([i915#2575]) +1 other test skip
>    [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_exec@basic-nohangcheck:
>     - shard-tglu:         [FAIL][207] ([i915#6268]) -> [PASS][208]
>    [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html
>    [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html
> 
>   * igt@gem_eio@banned:
>     - shard-mtlp:         [ABORT][209] ([i915#9414]) -> [PASS][210] +2 other tests pass
>    [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-2/igt@gem_eio@banned.html
>    [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_eio@banned.html
> 
>   * igt@gem_eio@reset-stress:
>     - shard-dg1:          [FAIL][211] ([i915#5784]) -> [PASS][212]
>    [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-17/igt@gem_eio@reset-stress.html
>    [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@gem_eio@reset-stress.html
> 
>   * igt@gem_exec_fair@basic-pace-solo@rcs0:
>     - shard-tglu:         [FAIL][213] ([i915#2842]) -> [PASS][214]
>    [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
>    [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
> 
>   * igt@i915_module_load@reload-no-display:
>     - shard-snb:          [INCOMPLETE][215] -> [PASS][216]
>    [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb5/igt@i915_module_load@reload-no-display.html
>    [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@i915_module_load@reload-no-display.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-snb:          [INCOMPLETE][217] ([i915#9200]) -> [PASS][218]
>    [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
>    [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_pm_rps@reset:
>     - shard-snb:          [INCOMPLETE][219] ([i915#7790]) -> [PASS][220]
>    [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb4/igt@i915_pm_rps@reset.html
>    [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb2/igt@i915_pm_rps@reset.html
> 
>   * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
>     - shard-mtlp:         [FAIL][221] ([i915#5138]) -> [PASS][222]
>    [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
>    [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
> 
>   * igt@kms_busy@extended-modeset-hang-newfb@pipe-a:
>     - shard-tglu:         [ABORT][223] -> [PASS][224]
>    [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-10/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html
>    [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>     - shard-glk:          [FAIL][225] ([i915#2346]) -> [PASS][226]
>    [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>    [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
>     - shard-dg2:          [FAIL][227] ([i915#6880]) -> [PASS][228] +2 other tests pass
>    [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
>    [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
>     - shard-mtlp:         [FAIL][229] ([i915#9196]) -> [PASS][230]
>    [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
>    [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/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-tglu:         [FAIL][231] ([i915#9196]) -> [PASS][232]
>    [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
>    [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
> 
>   * igt@perf_pmu@render-node-busy@vcs0:
>     - shard-mtlp:         [FAIL][233] ([i915#4349]) -> [PASS][234] +1 other test pass
>    [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@perf_pmu@render-node-busy@vcs0.html
>    [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@perf_pmu@render-node-busy@vcs0.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_pread@exhaustion:
>     - shard-glk:          [INCOMPLETE][235] -> [WARN][236] ([i915#2658])
>    [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk5/igt@gem_pread@exhaustion.html
>    [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@gem_pread@exhaustion.html
> 
>   * igt@kms_async_flips@crc@pipe-a-edp-1:
>     - shard-mtlp:         [FAIL][237] ([i915#8247]) -> [DMESG-FAIL][238] ([i915#8561]) +1 other test dmesg-fail
>    [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-4/igt@kms_async_flips@crc@pipe-a-edp-1.html
>    [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_async_flips@crc@pipe-a-edp-1.html
> 
>   * igt@kms_content_protection@type1:
>     - shard-dg2:          [SKIP][239] ([i915#7118] / [i915#7162]) -> [SKIP][240] ([i915#7118])
>    [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-11/igt@kms_content_protection@type1.html
>    [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_content_protection@type1.html
> 
>   * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
>     - shard-dg2:          [CRASH][241] ([i915#9351]) -> [INCOMPLETE][242] ([i915#5493])
>    [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
>    [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>   [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
>   [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
>   [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
>   [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
>   [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
>   [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>   [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>   [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
>   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>   [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
>   [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
>   [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
>   [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
>   [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
>   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>   [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>   [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
>   [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
>   [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
>   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
>   [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>   [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
>   [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
>   [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
>   [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
>   [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>   [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
>   [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
>   [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
>   [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>   [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
>   [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
>   [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
>   [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
>   [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
>   [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
>   [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
>   [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
>   [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
>   [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
>   [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
>   [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
>   [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
>   [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
>   [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
>   [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
>   [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
>   [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
>   [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
>   [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
>   [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
>   [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
>   [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
>   [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
>   [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
>   [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
>   [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
>   [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
>   [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
>   [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
>   [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
>   [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
>   [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
>   [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
>   [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
>   [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
>   [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
>   [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
>   [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
>   [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
>   [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
>   [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
>   [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
>   [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
>   [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
>   [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
>   [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
>   [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
>   [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
>   [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
>   [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
>   [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
>   [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
>   [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
>   [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
>   [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
>   [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
>   [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
>   [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
>   [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
>   [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
>   [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
>   [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
>   [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
>   [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
>   [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
>   [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
>   [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
>   [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
>   [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
>   [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
>   [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
>   [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
>   [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
>   [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
>   [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
>   [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
>   [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
>   [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
>   [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
>   [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
>   [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
>   [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
>   [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
>   [i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407
>   [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
>   [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
>   [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
>   [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
>   [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
>   [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
>   [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
>   [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
>   [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
>   [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
>   [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
>   [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
>   [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7595 -> IGTPW_10233
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_13908: 6f60ad772d45558e865e152a6a7cd39fefe950cf @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_10233: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/index.html
>   IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ 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_10233/index.html

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (9 preceding siblings ...)
  2023-11-22 16:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-11-23 10:35 ` Patchwork
  2023-11-23 22:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-23 10:35 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
URL   : https://patchwork.freedesktop.org/series/126096/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13908 -> IGTPW_10233
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (33 -> 32)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@i915_selftest@live@gem_contexts:
    - bat-mtlp-6:         [DMESG-FAIL][1] ([i915#9579]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/bat-mtlp-6/igt@i915_selftest@live@gem_contexts.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/bat-mtlp-6/igt@i915_selftest@live@gem_contexts.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-apl-guc:         [DMESG-FAIL][3] ([i915#5334]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
    - bat-rplp-1:         [ABORT][5] ([i915#8668]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html

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

  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
  [i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7595 -> IGTPW_10233

  CI-20190529: 20190529
  CI_DRM_13908: 6f60ad772d45558e865e152a6a7cd39fefe950cf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10233: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/index.html
  IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@xe_create@create-big-vram

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (10 preceding siblings ...)
  2023-11-23 10:35 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-11-23 22:48 ` Patchwork
  2023-11-25  6:44 ` Patchwork
  2023-11-25  7:42 ` Patchwork
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-23 22:48 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
URL   : https://patchwork.freedesktop.org/series/126096/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13908_full -> IGTPW_10233_full
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_10233_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_10233_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10233/index.html

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Warnings ####

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-glk:          [FAIL][1] ([i915#2842]) -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk5/igt@gem_exec_fair@basic-none@vecs0.html

  
#### Suppressed ####

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

  * {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0}:
    - shard-tglu:         [FAIL][3] ([i915#3591]) -> [WARN][4] +2 other tests warn
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html

  * {igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4}:
    - shard-dg1:          NOTRUN -> [SKIP][5] +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html

  * {igt@kms_psr@psr2_sprite_render@edp-1}:
    - shard-mtlp:         [PASS][6] -> [FAIL][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@kms_psr@psr2_sprite_render@edp-1.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_psr@psr2_sprite_render@edp-1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-mtlp:         NOTRUN -> [SKIP][8] ([i915#8411])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@api_intel_bb@object-reloc-purge-cache.html
    - shard-dg2:          NOTRUN -> [SKIP][9] ([i915#8411])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html

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

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

  * igt@drm_fdinfo@most-busy-check-all@vcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][12] ([i915#8414]) +13 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@drm_fdinfo@most-busy-check-all@vcs0.html

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

  * igt@gem_ctx_exec@basic-norecovery:
    - shard-mtlp:         [PASS][14] -> [ABORT][15] ([i915#9414]) +2 other tests abort
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_ctx_exec@basic-norecovery.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-mtlp:         NOTRUN -> [SKIP][16] ([fdo#109314])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_ctx_param@set-priority-not-supported.html

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

  * igt@gem_exec_balancer@noheartbeat:
    - shard-mtlp:         NOTRUN -> [SKIP][18] ([i915#8555])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_exec_balancer@noheartbeat.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-tglu:         NOTRUN -> [FAIL][19] ([i915#6117])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_capture@capture-invisible@lmem0:
    - shard-dg2:          NOTRUN -> [SKIP][20] ([i915#6334]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_capture@capture-invisible@lmem0.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-tglu:         NOTRUN -> [SKIP][21] ([i915#6344])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_capture@many-4k-zero:
    - shard-dg2:          NOTRUN -> [FAIL][22] ([i915#9606])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_exec_capture@many-4k-zero.html
    - shard-mtlp:         NOTRUN -> [FAIL][23] ([i915#9606])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_capture@many-4k-zero.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglu:         [PASS][24] -> [FAIL][25] ([i915#2842]) +1 other test fail
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo:
    - shard-mtlp:         NOTRUN -> [SKIP][26] ([i915#4473])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-glk:          [PASS][27] -> [FAIL][28] ([i915#2842]) +1 other test fail
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fence@submit67:
    - shard-dg2:          NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@gem_exec_fence@submit67.html
    - shard-mtlp:         NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_fence@submit67.html

  * igt@gem_exec_flush@basic-uc-set-default:
    - shard-dg1:          NOTRUN -> [SKIP][31] ([i915#3539])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@gem_exec_flush@basic-uc-set-default.html

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

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

  * igt@gem_exec_reloc@basic-gtt-wc:
    - shard-dg1:          NOTRUN -> [SKIP][34] ([i915#3281])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-wc.html

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

  * igt@gem_exec_schedule@preempt-queue-contexts:
    - shard-mtlp:         NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-contexts.html
    - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html

  * igt@gem_exec_suspend@basic-s4-devices@lmem0:
    - shard-dg2:          [PASS][38] -> [ABORT][39] ([i915#7975] / [i915#8213])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html

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

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
    - shard-dg2:          NOTRUN -> [SKIP][41] ([i915#4860]) +3 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-tglu:         NOTRUN -> [SKIP][42] ([i915#4613]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random.html
    - shard-glk:          NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#4613])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk3/igt@gem_lmem_swapping@heavy-verify-random.html

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

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          [PASS][45] -> [DMESG-WARN][46] ([i915#4936] / [i915#5493])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][47] ([i915#4613])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][48] ([i915#4077]) +8 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-xy:
    - shard-dg1:          NOTRUN -> [SKIP][49] ([i915#4077]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html

  * igt@gem_mmap_gtt@zero-extend:
    - shard-dg2:          NOTRUN -> [SKIP][50] ([i915#4077]) +8 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html

  * igt@gem_mmap_wc@bad-object:
    - shard-mtlp:         NOTRUN -> [SKIP][51] ([i915#4083]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_mmap_wc@bad-object.html

  * igt@gem_mmap_wc@bad-offset:
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#4083])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_mmap_wc@bad-offset.html

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

  * igt@gem_partial_pwrite_pread@writes-after-reads:
    - shard-dg1:          NOTRUN -> [SKIP][54] ([i915#3282])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html

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

  * igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
    - shard-mtlp:         NOTRUN -> [SKIP][56] ([i915#3282]) +3 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-tglu:         NOTRUN -> [SKIP][57] ([i915#4270]) +2 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-dg2:          NOTRUN -> [SKIP][58] ([i915#4270]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-snb:          NOTRUN -> [SKIP][59] ([fdo#109271]) +52 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

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

  * igt@gem_render_tiled_blits@basic:
    - shard-dg1:          NOTRUN -> [SKIP][61] ([i915#4079]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_render_tiled_blits@basic.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#4079]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#4079]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][64] ([i915#3297])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][65] ([i915#3297]) +2 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4880])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-mtlp:         NOTRUN -> [SKIP][67] ([i915#3297])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

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

  * igt@gem_userptr_blits@vma-merge:
    - shard-dg2:          NOTRUN -> [FAIL][69] ([i915#3318])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@gem_userptr_blits@vma-merge.html

  * igt@gen3_render_linear_blits:
    - shard-tglu:         NOTRUN -> [SKIP][70] ([fdo#109289]) +1 other test skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gen3_render_linear_blits.html

  * igt@gen3_render_tiledy_blits:
    - shard-mtlp:         NOTRUN -> [SKIP][71] ([fdo#109289]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gen3_render_tiledy_blits.html

  * igt@gen7_exec_parse@chained-batch:
    - shard-dg2:          NOTRUN -> [SKIP][72] ([fdo#109289]) +3 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@gen7_exec_parse@chained-batch.html

  * igt@gen9_exec_parse@bb-chained:
    - shard-tglu:         NOTRUN -> [SKIP][73] ([i915#2527] / [i915#2856]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@gen9_exec_parse@bb-chained.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-mtlp:         NOTRUN -> [SKIP][74] ([i915#2856])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gen9_exec_parse@bb-start-out.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-dg2:          NOTRUN -> [SKIP][75] ([i915#2856]) +3 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-dg1:          NOTRUN -> [SKIP][76] ([i915#2527])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          [PASS][77] -> [INCOMPLETE][78] ([i915#9407])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-dg1:          NOTRUN -> [SKIP][79] ([fdo#109303])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@i915_query@query-topology-known-pci-ids.html

  * igt@i915_selftest@mock@memory_region:
    - shard-tglu:         NOTRUN -> [DMESG-WARN][80] ([i915#9311])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@i915_selftest@mock@memory_region.html
    - shard-mtlp:         NOTRUN -> [DMESG-WARN][81] ([i915#9311])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@i915_selftest@mock@memory_region.html

  * igt@i915_suspend@forcewake:
    - shard-dg2:          [PASS][82] -> [ABORT][83] ([i915#9702])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-5/igt@i915_suspend@forcewake.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@i915_suspend@forcewake.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - shard-dg1:          NOTRUN -> [SKIP][84] ([i915#4212])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#4212]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
    - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4212])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#4215] / [i915#5190])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-tglu:         NOTRUN -> [SKIP][88] ([i915#3826])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
    - shard-mtlp:         NOTRUN -> [SKIP][89] ([i915#3826])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][90] ([i915#6228])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          NOTRUN -> [SKIP][91] ([i915#4098] / [i915#9531])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-mtlp:         NOTRUN -> [SKIP][92] ([i915#1769] / [i915#3555]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][94] ([i915#4538] / [i915#5286])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

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

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-mtlp:         NOTRUN -> [SKIP][96] ([fdo#111614])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-tglu:         NOTRUN -> [SKIP][97] ([fdo#111614])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][98] ([fdo#111614]) +2 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-tglu:         [PASS][99] -> [FAIL][100] ([i915#3743])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglu:         NOTRUN -> [FAIL][101] ([i915#3743])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

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

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][103] ([i915#3638])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
    - shard-tglu:         NOTRUN -> [SKIP][104] ([fdo#111615])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][106] ([i915#4538]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][107] ([fdo#111615]) +6 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-tglu:         NOTRUN -> [SKIP][108] ([i915#2705])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_joiner@invalid-modeset.html

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

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

  * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][111] ([i915#4087]) +3 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-mtlp:         NOTRUN -> [SKIP][112] ([fdo#111827]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2:          NOTRUN -> [SKIP][113] ([fdo#111827]) +1 other test skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_color@gamma:
    - shard-tglu:         NOTRUN -> [SKIP][114] ([fdo#111827])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][115] ([i915#7828]) +1 other test skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-14/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

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

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-mtlp:         NOTRUN -> [SKIP][117] ([i915#7828]) +3 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
    - shard-dg2:          NOTRUN -> [SKIP][118] ([i915#7828]) +8 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic:
    - shard-dg2:          NOTRUN -> [SKIP][119] ([i915#7118])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][120] ([i915#6944] / [i915#7116] / [i915#7118])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html

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

  * igt@kms_content_protection@uevent:
    - shard-mtlp:         NOTRUN -> [SKIP][122] ([i915#6944]) +1 other test skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][123] ([i915#3359]) +2 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#3359]) +2 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#3555]) +3 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-mtlp:         NOTRUN -> [SKIP][126] ([i915#3555] / [i915#8814])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-mtlp:         NOTRUN -> [SKIP][127] ([i915#3359]) +1 other test skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-dg1:          NOTRUN -> [SKIP][128] ([i915#4103] / [i915#4213])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-tglu:         NOTRUN -> [SKIP][129] ([fdo#109274]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][130] ([fdo#109274] / [i915#5354]) +4 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
    - shard-mtlp:         NOTRUN -> [SKIP][131] ([i915#3546]) +3 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([fdo#109274] / [fdo#111767] / [i915#5354])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-snb:          NOTRUN -> [SKIP][133] ([fdo#109271] / [fdo#111767])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-mtlp:         NOTRUN -> [SKIP][135] ([i915#4213])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2:          NOTRUN -> [SKIP][136] ([i915#8588])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][137] ([i915#3555] / [i915#8812])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html

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

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][139] ([i915#3637]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][140] ([fdo#109274] / [fdo#111767] / [i915#3637])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([fdo#109274]) +2 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-fences-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][142] ([i915#8381])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_flip@flip-vs-fences-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#2672])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html

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

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

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

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-dg2:          [PASS][148] -> [FAIL][149] ([i915#6880])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][151] ([i915#3458]) +16 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg1:          NOTRUN -> [SKIP][152] ([i915#3458]) +3 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-dg1:          NOTRUN -> [SKIP][153] ([fdo#111825]) +5 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][154] ([i915#8708]) +14 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> [SKIP][155] ([fdo#109280]) +18 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
    - shard-mtlp:         NOTRUN -> [SKIP][156] ([i915#1825]) +18 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][157] ([i915#8708]) +2 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#5460])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
    - shard-mtlp:         NOTRUN -> [SKIP][159] ([i915#5460])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

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

  * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
    - shard-tglu:         NOTRUN -> [SKIP][161] ([fdo#110189]) +8 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html

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

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][163] ([i915#3555] / [i915#8228])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_hdr@static-toggle-suspend.html

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

  * igt@kms_panel_fitting@legacy:
    - shard-tglu:         NOTRUN -> [SKIP][165] ([i915#6301])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_panel_fitting@legacy.html

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

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu:         NOTRUN -> [SKIP][167] ([i915#3555])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-dg1:          NOTRUN -> [SKIP][168] ([i915#3555]) +2 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html

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

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#5176] / [i915#9423]) +3 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][171] ([i915#5235]) +7 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][172] ([i915#5235]) +3 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][173] ([i915#5235]) +23 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-dg2:          NOTRUN -> [SKIP][174] ([i915#6524] / [i915#6805]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
    - shard-dg1:          NOTRUN -> [SKIP][175] ([i915#9683])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
    - shard-tglu:         NOTRUN -> [SKIP][176] ([i915#9683])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-tglu:         NOTRUN -> [SKIP][177] ([fdo#111068] / [i915#9683])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][178] ([i915#9683]) +2 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@psr2_cursor_plane_move:
    - shard-dg2:          NOTRUN -> [SKIP][179] ([i915#9681]) +5 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_psr@psr2_cursor_plane_move.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-dg1:          NOTRUN -> [SKIP][180] ([i915#9673]) +1 other test skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-tglu:         NOTRUN -> [SKIP][181] ([i915#9673]) +1 other test skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_psr@psr2_sprite_render.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-mtlp:         NOTRUN -> [SKIP][182] ([i915#4235]) +2 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#4235] / [i915#5190])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          NOTRUN -> [FAIL][184] ([IGT#2])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_sysfs_edid_timing.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-mtlp:         NOTRUN -> [SKIP][185] ([i915#8623])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
    - shard-tglu:         [PASS][186] -> [FAIL][187] ([i915#9196])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html

  * igt@kms_vrr@flip-suspend:
    - shard-mtlp:         NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8808])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@negative-basic:
    - shard-glk:          NOTRUN -> [SKIP][189] ([fdo#109271]) +44 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@kms_vrr@negative-basic.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-mtlp:         NOTRUN -> [SKIP][190] ([i915#2437])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-dg2:          NOTRUN -> [SKIP][191] ([i915#2437]) +1 other test skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html

  * igt@perf@enable-disable@0-rcs0:
    - shard-dg2:          [PASS][192] -> [FAIL][193] ([i915#8724])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@perf@enable-disable@0-rcs0.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html

  * igt@perf_pmu@busy-double-start@ccs0:
    - shard-mtlp:         [PASS][194] -> [FAIL][195] ([i915#4349])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html

  * igt@perf_pmu@cpu-hotplug:
    - shard-dg1:          NOTRUN -> [SKIP][196] ([i915#8850])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@perf_pmu@cpu-hotplug.html

  * igt@prime_vgem@basic-write:
    - shard-dg1:          NOTRUN -> [SKIP][197] ([i915#3708])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@prime_vgem@basic-write.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-dg2:          NOTRUN -> [SKIP][198] ([i915#3708])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html

  * igt@v3d/v3d_perfmon@get-values-valid-perfmon:
    - shard-dg1:          NOTRUN -> [SKIP][199] ([i915#2575])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html

  * igt@v3d/v3d_submit_cl@bad-bo:
    - shard-dg2:          NOTRUN -> [SKIP][200] ([i915#2575]) +12 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-bo.html

  * igt@v3d/v3d_submit_cl@valid-submission:
    - shard-tglu:         NOTRUN -> [SKIP][201] ([fdo#109315] / [i915#2575]) +5 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@v3d/v3d_submit_cl@valid-submission.html
    - shard-mtlp:         NOTRUN -> [SKIP][202] ([i915#2575]) +8 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@v3d/v3d_submit_cl@valid-submission.html

  * igt@vc4/vc4_lookup_fail@bad-color-write:
    - shard-dg2:          NOTRUN -> [SKIP][203] ([i915#7711]) +6 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@vc4/vc4_lookup_fail@bad-color-write.html

  * igt@vc4/vc4_purgeable_bo@free-purged-bo:
    - shard-mtlp:         NOTRUN -> [SKIP][204] ([i915#7711]) +4 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@free-purged-bo.html

  * igt@vc4/vc4_wait_bo@bad-bo:
    - shard-dg1:          NOTRUN -> [SKIP][205] ([i915#7711]) +1 other test skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@vc4/vc4_wait_bo@bad-bo.html

  * igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
    - shard-tglu:         NOTRUN -> [SKIP][206] ([i915#2575]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html

  
#### Possible fixes ####

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-tglu:         [FAIL][207] ([i915#6268]) -> [PASS][208]
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html

  * igt@gem_eio@banned:
    - shard-mtlp:         [ABORT][209] ([i915#9414]) -> [PASS][210] +2 other tests pass
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-2/igt@gem_eio@banned.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_eio@banned.html

  * igt@gem_eio@reset-stress:
    - shard-dg1:          [FAIL][211] ([i915#5784]) -> [PASS][212]
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-17/igt@gem_eio@reset-stress.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@gem_eio@reset-stress.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-tglu:         [FAIL][213] ([i915#2842]) -> [PASS][214]
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@i915_module_load@reload-no-display:
    - shard-snb:          [INCOMPLETE][215] -> [PASS][216]
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb5/igt@i915_module_load@reload-no-display.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@i915_module_load@reload-no-display.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-snb:          [INCOMPLETE][217] ([i915#9200]) -> [PASS][218]
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rps@reset:
    - shard-snb:          [INCOMPLETE][219] ([i915#7790]) -> [PASS][220]
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb4/igt@i915_pm_rps@reset.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb2/igt@i915_pm_rps@reset.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-mtlp:         [FAIL][221] ([i915#5138]) -> [PASS][222]
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_busy@extended-modeset-hang-newfb@pipe-a:
    - shard-tglu:         [ABORT][223] -> [PASS][224]
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-10/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][225] ([i915#2346]) -> [PASS][226]
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
    - shard-dg2:          [FAIL][227] ([i915#6880]) -> [PASS][228] +2 other tests pass
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-mtlp:         [FAIL][229] ([i915#9196]) -> [PASS][230]
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/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-tglu:         [FAIL][231] ([i915#9196]) -> [PASS][232]
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html

  * igt@perf_pmu@render-node-busy@vcs0:
    - shard-mtlp:         [FAIL][233] ([i915#4349]) -> [PASS][234] +1 other test pass
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@perf_pmu@render-node-busy@vcs0.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@perf_pmu@render-node-busy@vcs0.html

  
#### Warnings ####

  * igt@gem_pread@exhaustion:
    - shard-glk:          [INCOMPLETE][235] -> [WARN][236] ([i915#2658])
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk5/igt@gem_pread@exhaustion.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@gem_pread@exhaustion.html

  * igt@kms_async_flips@crc@pipe-a-edp-1:
    - shard-mtlp:         [FAIL][237] ([i915#8247]) -> [DMESG-FAIL][238] ([i915#8561]) +1 other test dmesg-fail
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-4/igt@kms_async_flips@crc@pipe-a-edp-1.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_async_flips@crc@pipe-a-edp-1.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          [SKIP][239] ([i915#7118] / [i915#7162]) -> [SKIP][240] ([i915#7118])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-11/igt@kms_content_protection@type1.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_content_protection@type1.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - shard-dg2:          [CRASH][241] ([i915#9351]) -> [INCOMPLETE][242] ([i915#5493])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

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

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
  [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
  [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
  [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
  [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
  [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
  [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
  [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
  [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
  [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
  [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
  [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
  [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
  [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
  [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
  [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
  [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
  [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
  [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
  [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
  [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
  [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
  [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
  [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
  [i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407
  [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
  [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
  [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
  [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
  [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
  [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
  [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
  [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
  [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
  [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
  [i915#9702]: https://gitlab.freedesktop.org/drm/intel/issues/9702


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7595 -> IGTPW_10233
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13908: 6f60ad772d45558e865e152a6a7cd39fefe950cf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10233: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/index.html
  IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ 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_10233/index.html

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (11 preceding siblings ...)
  2023-11-23 22:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2023-11-25  6:44 ` Patchwork
  2023-11-25  7:42 ` Patchwork
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-25  6:44 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
URL   : https://patchwork.freedesktop.org/series/126096/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13908_full -> IGTPW_10233_full
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_10233_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_10233_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_10233/index.html

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Warnings ####

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-glk:          [FAIL][1] ([i915#2842]) -> ([FAIL][2], [INCOMPLETE][3]) ([i915#2842])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@gem_exec_fair@basic-none@vecs0.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk5/igt@gem_exec_fair@basic-none@vecs0.html

  
#### Suppressed ####

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

  * {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0}:
    - shard-tglu:         [FAIL][4] ([i915#3591]) -> ([WARN][5], [WARN][6]) +2 other tests ( 2 warn )
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html

  * {igt@kms_dirtyfb@drrs-dirtyfb-ioctl}:
    - shard-dg1:          NOTRUN -> [SKIP][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * {igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4}:
    - shard-dg1:          NOTRUN -> ([SKIP][8], [SKIP][9])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html

  * {igt@kms_psr@psr2_sprite_render@edp-1}:
    - shard-mtlp:         [PASS][10] -> [FAIL][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@kms_psr@psr2_sprite_render@edp-1.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_psr@psr2_sprite_render@edp-1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-mtlp:         NOTRUN -> ([SKIP][12], [SKIP][13]) ([i915#8411])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@api_intel_bb@object-reloc-purge-cache.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@api_intel_bb@object-reloc-purge-cache.html
    - shard-dg2:          NOTRUN -> [SKIP][14] ([i915#8411])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-tglu:         NOTRUN -> ([SKIP][15], [SKIP][16]) ([i915#7701])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@drm_fdinfo@all-busy-check-all:
    - shard-mtlp:         NOTRUN -> [SKIP][17] ([i915#8414])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@drm_fdinfo@all-busy-check-all.html
    - shard-dg2:          NOTRUN -> ([SKIP][18], [SKIP][19]) ([i915#8414]) +1 other test ( 2 skip )
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@drm_fdinfo@all-busy-check-all.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@drm_fdinfo@all-busy-check-all.html

  * igt@drm_fdinfo@isolation@bcs0:
    - shard-dg2:          NOTRUN -> [SKIP][20] ([i915#8414]) +10 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@drm_fdinfo@isolation@bcs0.html

  * igt@drm_fdinfo@most-busy-check-all@vcs0:
    - shard-mtlp:         NOTRUN -> ([SKIP][21], [SKIP][22]) ([i915#8414]) +13 other tests ( 2 skip )
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@drm_fdinfo@most-busy-check-all@vcs0.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@drm_fdinfo@most-busy-check-all@vcs0.html

  * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
    - shard-dg2:          [PASS][23] -> [INCOMPLETE][24] ([i915#7297])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html

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

  * igt@gem_ctx_exec@basic-norecovery:
    - shard-mtlp:         [PASS][26] -> ([PASS][27], [ABORT][28]) ([i915#9414]) +1 other test ( 1 abort, 1 pass )
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_ctx_exec@basic-norecovery.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_ctx_exec@basic-norecovery.html

  * igt@gem_ctx_isolation@preservation-s3@vecs0:
    - shard-dg1:          [PASS][29] -> ([PASS][30], [DMESG-WARN][31]) ([i915#4423])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-12/igt@gem_ctx_isolation@preservation-s3@vecs0.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_ctx_isolation@preservation-s3@vecs0.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_ctx_isolation@preservation-s3@vecs0.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-mtlp:         NOTRUN -> [SKIP][32] ([fdo#109314])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-dg2:          NOTRUN -> ([SKIP][33], [SKIP][34]) ([i915#8555]) +1 other test ( 2 skip )
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hang.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html
    - shard-mtlp:         NOTRUN -> [SKIP][35] ([i915#8555])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hang.html

  * igt@gem_exec_balancer@bonded-semaphore:
    - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#4812])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_balancer@bonded-semaphore.html

  * igt@gem_exec_balancer@hog:
    - shard-mtlp:         NOTRUN -> ([SKIP][37], [SKIP][38]) ([i915#4812])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_balancer@hog.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_exec_balancer@hog.html

  * igt@gem_exec_balancer@noheartbeat:
    - shard-mtlp:         NOTRUN -> ([SKIP][39], [SKIP][40]) ([i915#8555])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_exec_balancer@noheartbeat.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-tglu:         NOTRUN -> [FAIL][41] ([i915#6117])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_capture@capture-invisible@lmem0:
    - shard-dg2:          NOTRUN -> [SKIP][42] ([i915#6334]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_capture@capture-invisible@lmem0.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-tglu:         NOTRUN -> ([SKIP][43], [SKIP][44]) ([i915#6344])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@gem_exec_capture@capture-recoverable.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_capture@many-4k-zero:
    - shard-dg2:          NOTRUN -> ([FAIL][45], [FAIL][46]) ([i915#9606])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_exec_capture@many-4k-zero.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_capture@many-4k-zero.html
    - shard-mtlp:         NOTRUN -> ([FAIL][47], [FAIL][48]) ([i915#9606])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_capture@many-4k-zero.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_exec_capture@many-4k-zero.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglu:         [PASS][49] -> ([FAIL][50], [FAIL][51]) ([i915#2842]) +1 other test ( 2 fail )
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo:
    - shard-mtlp:         NOTRUN -> ([SKIP][52], [SKIP][53]) ([i915#4473])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_exec_fair@basic-pace-solo.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-glk:          [PASS][54] -> ([FAIL][55], [FAIL][56]) ([i915#2842]) +1 other test ( 2 fail )
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fence@submit67:
    - shard-dg2:          NOTRUN -> ([SKIP][57], [SKIP][58]) ([i915#4812])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_exec_fence@submit67.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@gem_exec_fence@submit67.html
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#4812])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_fence@submit67.html

  * igt@gem_exec_flush@basic-uc-set-default:
    - shard-dg1:          NOTRUN -> ([SKIP][60], [SKIP][61]) ([i915#3539])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@gem_exec_flush@basic-uc-set-default.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_exec_flush@basic-uc-set-default.html

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

  * igt@gem_exec_reloc@basic-gtt-read:
    - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#3281]) +3 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-read.html
    - shard-mtlp:         NOTRUN -> ([SKIP][65], [SKIP][66]) ([i915#3281]) +2 other tests ( 2 skip )
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-read.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-read.html

  * igt@gem_exec_reloc@basic-gtt-wc:
    - shard-dg1:          NOTRUN -> ([SKIP][67], [SKIP][68]) ([i915#3281])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-wc.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-wc.html

  * igt@gem_exec_reloc@basic-wc:
    - shard-dg2:          NOTRUN -> ([SKIP][69], [SKIP][70]) ([i915#3281]) +6 other tests ( 2 skip )
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_reloc@basic-wc.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_exec_reloc@basic-wc.html

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

  * igt@gem_exec_schedule@preempt-queue-contexts:
    - shard-mtlp:         NOTRUN -> [SKIP][72] ([i915#4537] / [i915#4812])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-contexts.html
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#4537] / [i915#4812])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html

  * igt@gem_exec_suspend@basic-s4-devices@lmem0:
    - shard-dg2:          [PASS][74] -> [ABORT][75] ([i915#7975] / [i915#8213])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html

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

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
    - shard-dg2:          NOTRUN -> ([SKIP][78], [SKIP][79]) ([i915#4860]) +2 other tests ( 2 skip )
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html

  * igt@gem_fenced_exec_thrash@too-many-fences:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#4860]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@gem_fenced_exec_thrash@too-many-fences.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-tglu:         NOTRUN -> ([SKIP][81], [SKIP][82]) ([i915#4613]) +1 other test ( 2 skip )
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@gem_lmem_swapping@heavy-verify-random.html
    - shard-glk:          NOTRUN -> ([SKIP][83], [SKIP][84]) ([fdo#109271] / [i915#4613])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk6/igt@gem_lmem_swapping@heavy-verify-random.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk3/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
    - shard-dg1:          NOTRUN -> ([SKIP][85], [SKIP][86]) ([i915#4565])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          [PASS][87] -> ([TIMEOUT][88], [DMESG-WARN][89]) ([i915#4936] / [i915#5493])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-mtlp:         NOTRUN -> ([SKIP][90], [SKIP][91]) ([i915#4613])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_lmem_swapping@verify-ccs.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_lmem_swapping@verify-ccs.html

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

  * igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
    - shard-mtlp:         NOTRUN -> ([SKIP][93], [SKIP][94]) ([i915#4077]) +8 other tests ( 2 skip )
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-xy:
    - shard-dg1:          NOTRUN -> ([SKIP][95], [SKIP][96]) ([i915#4077]) +1 other test ( 2 skip )
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html

  * igt@gem_mmap_gtt@zero-extend:
    - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#4077]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html

  * igt@gem_mmap_wc@bad-object:
    - shard-mtlp:         NOTRUN -> ([SKIP][98], [SKIP][99]) ([i915#4083]) +1 other test ( 2 skip )
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_mmap_wc@bad-object.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_mmap_wc@bad-object.html

  * igt@gem_mmap_wc@bad-offset:
    - shard-dg1:          NOTRUN -> ([SKIP][100], [SKIP][101]) ([i915#4083])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_mmap_wc@bad-offset.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_mmap_wc@bad-offset.html

  * igt@gem_mmap_wc@read-write:
    - shard-mtlp:         NOTRUN -> [SKIP][102] ([i915#4083])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_mmap_wc@read-write.html

  * igt@gem_mmap_wc@write-wc-read-gtt:
    - shard-dg2:          NOTRUN -> ([SKIP][103], [SKIP][104]) ([i915#4083]) +3 other tests ( 2 skip )
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html

  * igt@gem_partial_pwrite_pread@writes-after-reads:
    - shard-dg1:          NOTRUN -> ([SKIP][105], [SKIP][106]) ([i915#3282])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@gem_partial_pwrite_pread@writes-after-reads.html

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

  * igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
    - shard-mtlp:         NOTRUN -> [SKIP][108] ([i915#3282])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-dg2:          NOTRUN -> ([SKIP][109], [SKIP][110]) ([i915#3282]) +4 other tests ( 2 skip )
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_pwrite@basic-exhaustion.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_pwrite@basic-exhaustion.html

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

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-tglu:         NOTRUN -> ([SKIP][112], [SKIP][113]) ([i915#4270]) +2 other tests ( 2 skip )
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-dg2:          NOTRUN -> ([SKIP][114], [SKIP][115]) ([i915#4270]) +1 other test ( 2 skip )
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_readwrite@write-bad-handle:
    - shard-mtlp:         NOTRUN -> ([SKIP][116], [SKIP][117]) ([i915#3282]) +2 other tests ( 2 skip )
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_readwrite@write-bad-handle.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_readwrite@write-bad-handle.html

  * igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][118] ([i915#8428])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-snb:          NOTRUN -> [SKIP][119] ([fdo#109271]) +23 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

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

  * igt@gem_render_tiled_blits@basic:
    - shard-dg1:          NOTRUN -> ([SKIP][122], [SKIP][123]) ([i915#4079]) +1 other test ( 2 skip )
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_render_tiled_blits@basic.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_render_tiled_blits@basic.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][124] ([i915#4079])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-mtlp:         NOTRUN -> ([SKIP][125], [SKIP][126]) ([i915#4079])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@gem_set_tiling_vs_pwrite.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_set_tiling_vs_pwrite.html

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

  * igt@gem_tiled_blits@basic:
    - shard-dg2:          NOTRUN -> ([SKIP][128], [SKIP][129]) ([i915#4077]) +6 other tests ( 2 skip )
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_tiled_blits@basic.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_tiled_blits@basic.html

  * igt@gem_tiled_pread_basic:
    - shard-dg2:          NOTRUN -> ([SKIP][130], [SKIP][131]) ([i915#4079])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_tiled_pread_basic.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_tiled_pread_basic.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([i915#4079])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-tglu:         NOTRUN -> ([SKIP][133], [SKIP][134]) ([i915#3297])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gem_userptr_blits@coherency-unsync.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_userptr_blits@coherency-unsync.html

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

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-dg2:          NOTRUN -> ([SKIP][136], [SKIP][137]) ([i915#3297])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
    - shard-dg2:          NOTRUN -> [SKIP][138] ([i915#3297] / [i915#4880])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-mtlp:         NOTRUN -> ([SKIP][139], [SKIP][140]) ([i915#3297])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

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

  * igt@gem_userptr_blits@vma-merge:
    - shard-dg2:          NOTRUN -> ([FAIL][142], [FAIL][143]) ([i915#3318])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@gem_userptr_blits@vma-merge.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@gem_userptr_blits@vma-merge.html

  * igt@gen3_render_linear_blits:
    - shard-tglu:         NOTRUN -> ([SKIP][144], [SKIP][145]) ([fdo#109289]) +1 other test ( 2 skip )
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@gen3_render_linear_blits.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gen3_render_linear_blits.html

  * igt@gen3_render_tiledy_blits:
    - shard-mtlp:         NOTRUN -> ([SKIP][146], [SKIP][147]) ([fdo#109289])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gen3_render_tiledy_blits.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gen3_render_tiledy_blits.html

  * igt@gen7_exec_parse@chained-batch:
    - shard-dg2:          NOTRUN -> ([SKIP][148], [SKIP][149]) ([fdo#109289]) +3 other tests ( 2 skip )
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gen7_exec_parse@chained-batch.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@gen7_exec_parse@chained-batch.html

  * igt@gen7_exec_parse@oacontrol-tracking:
    - shard-mtlp:         NOTRUN -> [SKIP][150] ([fdo#109289])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gen7_exec_parse@oacontrol-tracking.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-dg2:          NOTRUN -> [SKIP][151] ([i915#2856])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@bb-chained:
    - shard-tglu:         NOTRUN -> ([SKIP][152], [SKIP][153]) ([i915#2527] / [i915#2856]) +1 other test ( 2 skip )
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@gen9_exec_parse@bb-chained.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@gen9_exec_parse@bb-chained.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-mtlp:         NOTRUN -> ([SKIP][154], [SKIP][155]) ([i915#2856])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@gen9_exec_parse@bb-start-out.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gen9_exec_parse@bb-start-out.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-dg2:          NOTRUN -> ([SKIP][156], [SKIP][157]) ([i915#2856]) +2 other tests ( 2 skip )
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gen9_exec_parse@bb-start-param.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-dg1:          NOTRUN -> ([SKIP][158], [SKIP][159]) ([i915#2527])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gen9_exec_parse@valid-registers.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_pm_freq_api@freq-reset-multiple@gt0:
    - shard-mtlp:         [PASS][160] -> ([ABORT][161], [ABORT][162]) ([i915#9414])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-8/igt@i915_pm_freq_api@freq-reset-multiple@gt0.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@i915_pm_freq_api@freq-reset-multiple@gt0.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@i915_pm_freq_api@freq-reset-multiple@gt0.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          [PASS][163] -> ([INCOMPLETE][164], [PASS][165]) ([i915#9407])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-dg1:          NOTRUN -> [SKIP][166] ([fdo#109303])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@i915_query@query-topology-known-pci-ids.html

  * igt@i915_selftest@mock@memory_region:
    - shard-tglu:         NOTRUN -> ([DMESG-WARN][167], [DMESG-WARN][168]) ([i915#9311])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@i915_selftest@mock@memory_region.html
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@i915_selftest@mock@memory_region.html
    - shard-mtlp:         NOTRUN -> ([DMESG-WARN][169], [DMESG-WARN][170]) ([i915#9311])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@i915_selftest@mock@memory_region.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@i915_selftest@mock@memory_region.html

  * igt@i915_suspend@forcewake:
    - shard-dg2:          [PASS][171] -> ([ABORT][172], [PASS][173]) ([i915#9702])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-5/igt@i915_suspend@forcewake.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@i915_suspend@forcewake.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@i915_suspend@forcewake.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - shard-dg1:          NOTRUN -> ([SKIP][174], [SKIP][175]) ([i915#4212])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> ([SKIP][176], [SKIP][177]) ([i915#4212]) +1 other test ( 2 skip )
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html
    - shard-mtlp:         NOTRUN -> ([SKIP][178], [SKIP][179]) ([i915#4212])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][180] ([i915#4215] / [i915#5190])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-tglu:         NOTRUN -> ([SKIP][181], [SKIP][182]) ([i915#3826])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
    - shard-mtlp:         NOTRUN -> ([SKIP][183], [SKIP][184]) ([i915#3826])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [FAIL][185] ([i915#8247]) +3 other tests fail
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-mtlp:         NOTRUN -> ([SKIP][186], [SKIP][187]) ([i915#6228])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          NOTRUN -> [SKIP][188] ([i915#4098] / [i915#9531])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-mtlp:         NOTRUN -> ([SKIP][189], [SKIP][190]) ([i915#1769] / [i915#3555]) +1 other test ( 2 skip )
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-glk:          NOTRUN -> [SKIP][191] ([fdo#109271]) +3 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][192] ([fdo#111614])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-tglu:         NOTRUN -> ([SKIP][193], [SKIP][194]) ([fdo#111615] / [i915#5286]) +3 other tests ( 2 skip )
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-mtlp:         [PASS][195] -> ([FAIL][196], [PASS][197]) ([i915#5138])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/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-async-flip:
    - shard-dg1:          NOTRUN -> ([SKIP][198], [SKIP][199]) ([i915#4538] / [i915#5286])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

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

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-mtlp:         NOTRUN -> ([SKIP][202], [SKIP][203]) ([fdo#111614])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@linear-64bpp-rotate-270.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-tglu:         NOTRUN -> ([SKIP][204], [SKIP][205]) ([fdo#111614])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
    - shard-mtlp:         NOTRUN -> [SKIP][206] ([fdo#111614])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-dg2:          NOTRUN -> ([SKIP][207], [SKIP][208]) ([fdo#111614]) +1 other test ( 2 skip )
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-tglu:         [PASS][209] -> ([FAIL][210], [FAIL][211]) ([i915#3743])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglu:         [PASS][212] -> ([PASS][213], [FAIL][214]) ([i915#3743]) +1 other test ( 1 fail, 1 pass )
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglu:         NOTRUN -> ([PASS][215], [FAIL][216]) ([i915#3743])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
    - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#5190]) +3 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
    - shard-dg2:          NOTRUN -> ([SKIP][218], [SKIP][219]) ([i915#5190]) +9 other tests ( 2 skip )
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-dg1:          NOTRUN -> ([SKIP][220], [SKIP][221]) ([i915#3638])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
    - shard-tglu:         NOTRUN -> [SKIP][222] ([fdo#111615]) +1 other test skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-dg2:          NOTRUN -> ([SKIP][223], [SKIP][224]) ([i915#4538] / [i915#5190]) +3 other tests ( 2 skip )
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-dg1:          NOTRUN -> ([SKIP][225], [SKIP][226]) ([i915#4538]) +1 other test ( 2 skip )
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][227] ([i915#4538] / [i915#5190]) +3 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
    - shard-mtlp:         NOTRUN -> [SKIP][228] ([fdo#111615]) +1 other test skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> ([SKIP][229], [SKIP][230]) ([fdo#111615]) +5 other tests ( 2 skip )
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-tglu:         NOTRUN -> ([SKIP][231], [SKIP][232]) ([i915#2705])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_joiner@invalid-modeset.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_joiner@invalid-modeset.html

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

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

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][235] ([i915#4087]) +7 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][236] ([i915#4087]) +3 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-mtlp:         NOTRUN -> ([SKIP][237], [SKIP][238]) ([fdo#111827])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_chamelium_color@ctm-0-50.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-mtlp:         NOTRUN -> [SKIP][239] ([fdo#111827])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html
    - shard-dg2:          NOTRUN -> ([SKIP][240], [SKIP][241]) ([fdo#111827])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_chamelium_color@ctm-blue-to-red.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2:          NOTRUN -> [SKIP][242] ([fdo#111827])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_color@gamma:
    - shard-tglu:         NOTRUN -> ([SKIP][243], [SKIP][244]) ([fdo#111827])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_chamelium_color@gamma.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-dg1:          NOTRUN -> ([SKIP][245], [SKIP][246]) ([i915#7828]) +1 other test ( 2 skip )
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-14/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
    - shard-tglu:         NOTRUN -> [SKIP][247] ([i915#7828])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-tglu:         NOTRUN -> ([SKIP][248], [SKIP][249]) ([i915#7828]) +1 other test ( 2 skip )
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_chamelium_frames@dp-frame-dump.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_chamelium_frames@dp-frame-dump.html

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

  * igt@kms_chamelium_hpd@dp-hpd-fast:
    - shard-dg2:          NOTRUN -> [SKIP][251] ([i915#7828]) +5 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_chamelium_hpd@dp-hpd-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-mtlp:         NOTRUN -> ([SKIP][252], [SKIP][253]) ([i915#7828]) +1 other test ( 2 skip )
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-fast.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
    - shard-dg2:          NOTRUN -> ([SKIP][254], [SKIP][255]) ([i915#7828]) +4 other tests ( 2 skip )
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic:
    - shard-dg2:          NOTRUN -> [SKIP][256] ([i915#7118])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglu:         NOTRUN -> ([SKIP][257], [SKIP][258]) ([i915#6944] / [i915#7116] / [i915#7118])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_content_protection@atomic-dpms.html

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

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

  * igt@kms_content_protection@uevent:
    - shard-mtlp:         NOTRUN -> ([SKIP][261], [SKIP][262]) ([i915#6944]) +1 other test ( 2 skip )
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_content_protection@uevent.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-tglu:         NOTRUN -> ([SKIP][263], [SKIP][264]) ([i915#3359]) +1 other test ( 2 skip )
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg2:          NOTRUN -> ([SKIP][265], [SKIP][266]) ([i915#3359]) +1 other test ( 2 skip )
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html

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

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

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-mtlp:         NOTRUN -> ([SKIP][269], [SKIP][270]) ([i915#3555] / [i915#8814])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-32x32.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-mtlp:         NOTRUN -> ([SKIP][271], [SKIP][272]) ([i915#3359]) +1 other test ( 2 skip )
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][273] ([i915#3359])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-dg2:          NOTRUN -> ([SKIP][274], [SKIP][275]) ([i915#3555]) +2 other tests ( 2 skip )
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-max-size.html
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][276] ([fdo#109274] / [i915#5354]) +1 other test skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-dg1:          NOTRUN -> ([SKIP][277], [SKIP][278]) ([i915#4103] / [i915#4213])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-tglu:         NOTRUN -> ([SKIP][279], [SKIP][280]) ([fdo#109274]) +1 other test ( 2 skip )
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-dg2:          NOTRUN -> ([SKIP][281], [SKIP][282]) ([fdo#109274] / [i915#5354]) +3 other tests ( 2 skip )
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
    - shard-mtlp:         NOTRUN -> ([SKIP][283], [SKIP][284]) ([i915#3546]) +3 other tests ( 2 skip )
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-dg2:          NOTRUN -> ([SKIP][285], [SKIP][286]) ([fdo#109274] / [fdo#111767] / [i915#5354])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-snb:          NOTRUN -> [SKIP][287] ([fdo#109271] / [fdo#111767])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-mtlp:         NOTRUN -> ([SKIP][289], [SKIP][290]) ([i915#4213])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#8588])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-mtlp:         NOTRUN -> ([SKIP][292], [SKIP][293]) ([i915#3555] / [i915#8812])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_draw_crc@draw-method-mmap-gtt.html

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

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][295] ([i915#3637])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-dg1:          NOTRUN -> ([SKIP][296], [SKIP][297]) ([fdo#111825]) +3 other tests ( 2 skip )
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][298] ([fdo#109274] / [fdo#111767])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-tglu:         NOTRUN -> ([SKIP][299], [SKIP][300]) ([fdo#109274] / [fdo#111767] / [i915#3637])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-dg2:          NOTRUN -> ([SKIP][301], [SKIP][302]) ([fdo#109274]) +2 other tests ( 2 skip )
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          NOTRUN -> [SKIP][303] ([fdo#109274]) +1 other test skip
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-mtlp:         NOTRUN -> ([SKIP][304], [SKIP][305]) ([i915#3637])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-tglu:         NOTRUN -> [SKIP][306] ([fdo#109274] / [i915#3637]) +1 other test skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@flip-vs-fences-interruptible:
    - shard-mtlp:         NOTRUN -> ([SKIP][307], [SKIP][308]) ([i915#8381])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_flip@flip-vs-fences-interruptible.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> ([SKIP][309], [SKIP][310]) ([i915#2672])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> ([SKIP][311], [SKIP][312]) ([i915#2587] / [i915#2672]) +1 other test ( 2 skip )
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@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][313], [SKIP][314]) ([i915#2672]) +2 other tests ( 2 skip )
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][317] ([i915#2587] / [i915#2672])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> ([SKIP][318], [SKIP][319]) ([i915#3555] / [i915#8810])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-dg2:          [PASS][321] -> ([FAIL][322], [FAIL][323]) ([i915#6880])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> ([SKIP][324], [SKIP][325]) ([i915#5354]) +27 other tests ( 2 skip )
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][326] ([i915#1825]) +1 other test skip
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][327] ([i915#8708])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> ([SKIP][328], [SKIP][329]) ([i915#3458]) +10 other tests ( 2 skip )
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg1:          NOTRUN -> [SKIP][331] ([i915#3458])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-tglu:         NOTRUN -> ([SKIP][332], [SKIP][333]) ([fdo#110189]) +5 other tests ( 2 skip )
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-dg1:          NOTRUN -> [SKIP][334] ([fdo#111825]) +1 other test skip
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> ([SKIP][335], [SKIP][336]) ([i915#8708]) +10 other tests ( 2 skip )
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite:
    - shard-tglu:         NOTRUN -> [SKIP][337] ([fdo#109280]) +2 other tests skip
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> ([SKIP][339], [SKIP][340]) ([fdo#109280]) +17 other tests ( 2 skip )
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
    - shard-mtlp:         NOTRUN -> ([SKIP][341], [SKIP][342]) ([i915#1825]) +18 other tests ( 2 skip )
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> ([SKIP][343], [SKIP][344]) ([i915#8708]) +2 other tests ( 2 skip )
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][345] ([i915#5460])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
    - shard-mtlp:         NOTRUN -> [SKIP][346] ([i915#5460])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

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

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][349] ([i915#5354]) +14 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
    - shard-dg1:          NOTRUN -> ([SKIP][350], [SKIP][351]) ([i915#3458]) +2 other tests ( 2 skip )
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
    - shard-tglu:         NOTRUN -> [SKIP][352] ([fdo#110189]) +2 other tests skip
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html

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

  * igt@kms_hdr@static-toggle:
    - shard-dg2:          NOTRUN -> ([SKIP][354], [SKIP][355]) ([i915#3555] / [i915#8228]) +1 other test ( 2 skip )
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_hdr@static-toggle.html
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_hdr@static-toggle.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg1:          NOTRUN -> ([SKIP][356], [SKIP][357]) ([i915#3555] / [i915#8228])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_hdr@static-toggle-suspend.html
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_hdr@static-toggle-suspend.html

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

  * igt@kms_panel_fitting@legacy:
    - shard-tglu:         NOTRUN -> ([SKIP][359], [SKIP][360]) ([i915#6301])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_panel_fitting@legacy.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_panel_fitting@legacy.html

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

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu:         NOTRUN -> [SKIP][363] ([i915#3555])
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-dg1:          NOTRUN -> ([SKIP][364], [SKIP][365]) ([i915#3555]) +2 other tests ( 2 skip )
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2:          NOTRUN -> ([SKIP][366], [SKIP][367]) ([i915#6953])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][368] ([i915#5176] / [i915#9423]) +3 other tests skip
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][369] ([i915#5235]) +11 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
    - shard-tglu:         NOTRUN -> ([SKIP][370], [SKIP][371]) ([i915#5235]) +3 other tests ( 2 skip )
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][372] ([i915#5235]) +27 other tests skip
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/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@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> ([SKIP][373], [SKIP][374]) ([i915#5235]) +3 other tests ( 2 skip )
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-dg2:          NOTRUN -> [SKIP][375] ([i915#6524] / [i915#6805]) +3 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
    - shard-dg1:          NOTRUN -> ([SKIP][376], [SKIP][377]) ([i915#9683])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-dg2:          NOTRUN -> [SKIP][378] ([i915#9683]) +1 other test skip
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
    - shard-tglu:         NOTRUN -> ([SKIP][379], [SKIP][380]) ([i915#9683])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-tglu:         NOTRUN -> ([SKIP][381], [SKIP][382]) ([fdo#111068] / [i915#9683])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> ([SKIP][383], [SKIP][384]) ([i915#9683])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@psr2_cursor_plane_move:
    - shard-dg2:          NOTRUN -> ([SKIP][385], [SKIP][386]) ([i915#9681]) +4 other tests ( 2 skip )
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_psr@psr2_cursor_plane_move.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_move.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-dg2:          NOTRUN -> [SKIP][387] ([i915#9681])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-dg1:          NOTRUN -> ([SKIP][388], [SKIP][389]) ([i915#9673]) +1 other test ( 2 skip )
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-tglu:         NOTRUN -> ([SKIP][390], [SKIP][391]) ([i915#9673]) +1 other test ( 2 skip )
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_psr@psr2_sprite_render.html
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_psr@psr2_sprite_render.html

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

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-mtlp:         NOTRUN -> ([SKIP][393], [SKIP][394]) ([i915#4235])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-90.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][395] ([i915#4235] / [i915#5190])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-mtlp:         NOTRUN -> [SKIP][396] ([i915#4235]) +1 other test skip
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_setmode@basic@pipe-a-hdmi-a-1:
    - shard-snb:          NOTRUN -> [FAIL][397] ([i915#5465]) +1 other test fail
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-dg2:          NOTRUN -> [SKIP][398] ([i915#3555] / [i915#4098])
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          NOTRUN -> ([FAIL][399], [FAIL][400]) ([IGT#2])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_sysfs_edid_timing.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_sysfs_edid_timing.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-tglu:         NOTRUN -> [SKIP][401] ([i915#8623])
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html
    - shard-mtlp:         NOTRUN -> [SKIP][402] ([i915#8623])
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
    - shard-tglu:         [PASS][403] -> ([PASS][404], [FAIL][405]) ([i915#9196]) +1 other test ( 1 fail, 1 pass )
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html

  * igt@kms_vrr@flip-suspend:
    - shard-mtlp:         NOTRUN -> [SKIP][406] ([i915#3555] / [i915#8808])
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@negative-basic:
    - shard-glk:          NOTRUN -> ([SKIP][407], [SKIP][408]) ([fdo#109271]) +41 other tests ( 2 skip )
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk9/igt@kms_vrr@negative-basic.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@kms_vrr@negative-basic.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-mtlp:         NOTRUN -> ([SKIP][409], [SKIP][410]) ([i915#2437])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_writeback@writeback-invalid-parameters.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-dg2:          NOTRUN -> ([SKIP][411], [SKIP][412]) ([i915#2437]) +1 other test ( 2 skip )
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html

  * igt@perf@enable-disable@0-rcs0:
    - shard-dg2:          [PASS][413] -> [FAIL][414] ([i915#8724])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@perf@enable-disable@0-rcs0.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html

  * igt@perf@mi-rpc:
    - shard-dg2:          NOTRUN -> [SKIP][415] ([i915#2434])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@perf@mi-rpc.html
    - shard-mtlp:         NOTRUN -> [SKIP][416] ([i915#2434])
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@perf@mi-rpc.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          [PASS][417] -> ([PASS][418], [FAIL][419]) ([i915#7484])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html

  * igt@perf_pmu@busy-double-start@bcs0:
    - shard-mtlp:         [PASS][420] -> ([PASS][421], [FAIL][422]) ([i915#4349]) +2 other tests ( 1 fail, 1 pass )
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-1/igt@perf_pmu@busy-double-start@bcs0.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html

  * igt@perf_pmu@busy-double-start@ccs0:
    - shard-mtlp:         [PASS][423] -> ([FAIL][424], [FAIL][425]) ([i915#4349])
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html

  * igt@perf_pmu@cpu-hotplug:
    - shard-dg1:          NOTRUN -> ([SKIP][426], [SKIP][427]) ([i915#8850])
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@perf_pmu@cpu-hotplug.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@perf_pmu@cpu-hotplug.html

  * igt@prime_vgem@basic-write:
    - shard-dg1:          NOTRUN -> [SKIP][428] ([i915#3708])
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@prime_vgem@basic-write.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-dg2:          NOTRUN -> ([SKIP][429], [SKIP][430]) ([i915#3708])
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html

  * igt@v3d/v3d_get_param@base-params:
    - shard-dg2:          NOTRUN -> ([SKIP][431], [SKIP][432]) ([i915#2575]) +5 other tests ( 2 skip )
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@v3d/v3d_get_param@base-params.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@v3d/v3d_get_param@base-params.html

  * igt@v3d/v3d_perfmon@create-perfmon-0:
    - shard-tglu:         NOTRUN -> [SKIP][433] ([fdo#109315] / [i915#2575]) +1 other test skip
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@v3d/v3d_perfmon@create-perfmon-0.html

  * igt@v3d/v3d_perfmon@get-values-valid-perfmon:
    - shard-dg1:          NOTRUN -> ([SKIP][434], [SKIP][435]) ([i915#2575])
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html

  * igt@v3d/v3d_submit_cl@bad-bo:
    - shard-dg2:          NOTRUN -> [SKIP][436] ([i915#2575]) +10 other tests skip
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-bo.html

  * igt@v3d/v3d_submit_cl@bad-multisync-in-sync:
    - shard-mtlp:         NOTRUN -> [SKIP][437] ([i915#2575]) +2 other tests skip
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@v3d/v3d_submit_cl@bad-multisync-in-sync.html

  * igt@v3d/v3d_submit_cl@valid-submission:
    - shard-tglu:         NOTRUN -> ([SKIP][438], [SKIP][439]) ([fdo#109315] / [i915#2575]) +3 other tests ( 2 skip )
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@v3d/v3d_submit_cl@valid-submission.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@v3d/v3d_submit_cl@valid-submission.html
    - shard-mtlp:         NOTRUN -> ([SKIP][440], [SKIP][441]) ([i915#2575]) +6 other tests ( 2 skip )
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@v3d/v3d_submit_cl@valid-submission.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@v3d/v3d_submit_cl@valid-submission.html

  * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done:
    - shard-tglu:         NOTRUN -> [SKIP][442] ([i915#2575]) +1 other test skip
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html

  * igt@vc4/vc4_lookup_fail@bad-color-write:
    - shard-dg2:          NOTRUN -> ([SKIP][443], [SKIP][444]) ([i915#7711]) +4 other tests ( 2 skip )
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@vc4/vc4_lookup_fail@bad-color-write.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@vc4/vc4_lookup_fail@bad-color-write.html

  * igt@vc4/vc4_perfmon@create-single-perfmon:
    - shard-snb:          NOTRUN -> ([SKIP][445], [SKIP][446]) ([fdo#109271]) +29 other tests ( 2 skip )
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@vc4/vc4_perfmon@create-single-perfmon.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb5/igt@vc4/vc4_perfmon@create-single-perfmon.html

  * igt@vc4/vc4_perfmon@create-two-perfmon:
    - shard-dg2:          NOTRUN -> [SKIP][447] ([i915#7711]) +2 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@vc4/vc4_perfmon@create-two-perfmon.html

  * igt@vc4/vc4_purgeable_bo@free-purged-bo:
    - shard-mtlp:         NOTRUN -> ([SKIP][448], [SKIP][449]) ([i915#7711]) +3 other tests ( 2 skip )
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@free-purged-bo.html

  * igt@vc4/vc4_wait_bo@bad-bo:
    - shard-dg1:          NOTRUN -> ([SKIP][450], [SKIP][451]) ([i915#7711]) +1 other test ( 2 skip )
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@vc4/vc4_wait_bo@bad-bo.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@vc4/vc4_wait_bo@bad-bo.html

  * igt@vc4/vc4_wait_bo@unused-bo-0ns:
    - shard-mtlp:         NOTRUN -> [SKIP][452] ([i915#7711]) +1 other test skip
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@vc4/vc4_wait_bo@unused-bo-0ns.html

  * igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
    - shard-tglu:         NOTRUN -> ([SKIP][453], [SKIP][454]) ([i915#2575]) +1 other test ( 2 skip )
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html

  
#### Possible fixes ####

  * igt@gem_eio@banned:
    - shard-mtlp:         [ABORT][455] ([i915#9414]) -> ([PASS][456], [PASS][457]) +1 other test ( 2 pass )
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-2/igt@gem_eio@banned.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_eio@banned.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_eio@banned.html

  * igt@gem_eio@in-flight-internal-1us:
    - shard-mtlp:         [ABORT][458] ([i915#9414]) -> [PASS][459]
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@gem_eio@in-flight-internal-1us.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_eio@in-flight-internal-1us.html

  * igt@gem_eio@reset-stress:
    - shard-dg1:          [FAIL][460] ([i915#5784]) -> ([PASS][461], [PASS][462])
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-17/igt@gem_eio@reset-stress.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@gem_eio@reset-stress.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@gem_eio@reset-stress.html

  * igt@i915_module_load@reload-no-display:
    - shard-snb:          [INCOMPLETE][463] -> ([PASS][464], [PASS][465])
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb5/igt@i915_module_load@reload-no-display.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb2/igt@i915_module_load@reload-no-display.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@i915_module_load@reload-no-display.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-snb:          [INCOMPLETE][466] ([i915#9200]) -> [PASS][467]
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rps@reset:
    - shard-snb:          [INCOMPLETE][468] ([i915#7790]) -> [PASS][469]
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb4/igt@i915_pm_rps@reset.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb2/igt@i915_pm_rps@reset.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-mtlp:         [FAIL][470] ([i915#5138]) -> ([PASS][471], [PASS][472])
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_busy@extended-modeset-hang-newfb@pipe-a:
    - shard-tglu:         [ABORT][473] -> ([PASS][474], [PASS][475])
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-10/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
    - shard-dg2:          [FAIL][476] ([i915#6880]) -> ([PASS][477], [PASS][478]) +1 other test ( 2 pass )
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
    - shard-dg2:          [FAIL][479] ([i915#6880]) -> [PASS][480]
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
    - shard-snb:          [FAIL][481] ([i915#9196]) -> [PASS][482]
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-mtlp:         [FAIL][483] ([i915#9196]) -> [PASS][484]
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/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-tglu:         [FAIL][485] ([i915#9196]) -> ([PASS][486], [PASS][487])
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html

  * igt@perf_pmu@render-node-busy@vcs0:
    - shard-mtlp:         [FAIL][488] ([i915#4349]) -> ([PASS][489], [PASS][490])
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@perf_pmu@render-node-busy@vcs0.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@perf_pmu@render-node-busy@vcs0.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@perf_pmu@render-node-busy@vcs0.html

  
#### Warnings ####

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-tglu:         [FAIL]

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
  2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
                   ` (12 preceding siblings ...)
  2023-11-25  6:44 ` Patchwork
@ 2023-11-25  7:42 ` Patchwork
  13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-11-25  7:42 UTC (permalink / raw)
  To: Jagmeet Randhawa; +Cc: igt-dev

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

== Series Details ==

Series: lib/gpgpu_fill: Add support for Xe2 platforms (rev4)
URL   : https://patchwork.freedesktop.org/series/126096/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13908_full -> IGTPW_10233_full
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_10233_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_10233_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_10233/index.html

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Warnings ####

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-glk:          [FAIL][1] ([i915#2842]) -> ([FAIL][2], [INCOMPLETE][3]) ([i915#2842])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@gem_exec_fair@basic-none@vecs0.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk5/igt@gem_exec_fair@basic-none@vecs0.html

  
#### Suppressed ####

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

  * {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0}:
    - shard-tglu:         [FAIL][4] ([i915#3591]) -> ([WARN][5], [WARN][6]) +2 other tests ( 2 warn )
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html

  * {igt@kms_dirtyfb@drrs-dirtyfb-ioctl}:
    - shard-dg1:          NOTRUN -> [SKIP][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * {igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4}:
    - shard-dg1:          NOTRUN -> ([SKIP][8], [SKIP][9])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html

  * {igt@kms_psr@psr2_sprite_render@edp-1}:
    - shard-mtlp:         [PASS][10] -> [FAIL][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@kms_psr@psr2_sprite_render@edp-1.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_psr@psr2_sprite_render@edp-1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-mtlp:         NOTRUN -> ([SKIP][12], [SKIP][13]) ([i915#8411])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@api_intel_bb@object-reloc-purge-cache.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@api_intel_bb@object-reloc-purge-cache.html
    - shard-dg2:          NOTRUN -> [SKIP][14] ([i915#8411])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-tglu:         NOTRUN -> ([SKIP][15], [SKIP][16]) ([i915#7701])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@drm_fdinfo@all-busy-check-all:
    - shard-mtlp:         NOTRUN -> [SKIP][17] ([i915#8414])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@drm_fdinfo@all-busy-check-all.html
    - shard-dg2:          NOTRUN -> ([SKIP][18], [SKIP][19]) ([i915#8414]) +1 other test ( 2 skip )
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@drm_fdinfo@all-busy-check-all.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@drm_fdinfo@all-busy-check-all.html

  * igt@drm_fdinfo@isolation@bcs0:
    - shard-dg2:          NOTRUN -> [SKIP][20] ([i915#8414]) +10 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@drm_fdinfo@isolation@bcs0.html

  * igt@drm_fdinfo@most-busy-check-all@vcs0:
    - shard-mtlp:         NOTRUN -> ([SKIP][21], [SKIP][22]) ([i915#8414]) +13 other tests ( 2 skip )
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@drm_fdinfo@most-busy-check-all@vcs0.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@drm_fdinfo@most-busy-check-all@vcs0.html

  * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
    - shard-dg2:          [PASS][23] -> [INCOMPLETE][24] ([i915#7297])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html

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

  * igt@gem_ctx_exec@basic-norecovery:
    - shard-mtlp:         [PASS][26] -> ([PASS][27], [ABORT][28]) ([i915#9414]) +1 other test ( 1 abort, 1 pass )
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_ctx_exec@basic-norecovery.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_ctx_exec@basic-norecovery.html

  * igt@gem_ctx_isolation@preservation-s3@vecs0:
    - shard-dg1:          [PASS][29] -> ([PASS][30], [DMESG-WARN][31]) ([i915#4423])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-12/igt@gem_ctx_isolation@preservation-s3@vecs0.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_ctx_isolation@preservation-s3@vecs0.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_ctx_isolation@preservation-s3@vecs0.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-mtlp:         NOTRUN -> [SKIP][32] ([fdo#109314])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-dg2:          NOTRUN -> ([SKIP][33], [SKIP][34]) ([i915#8555]) +1 other test ( 2 skip )
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hang.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html
    - shard-mtlp:         NOTRUN -> [SKIP][35] ([i915#8555])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hang.html

  * igt@gem_exec_balancer@bonded-semaphore:
    - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#4812])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_balancer@bonded-semaphore.html

  * igt@gem_exec_balancer@hog:
    - shard-mtlp:         NOTRUN -> ([SKIP][37], [SKIP][38]) ([i915#4812])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_balancer@hog.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_exec_balancer@hog.html

  * igt@gem_exec_balancer@noheartbeat:
    - shard-mtlp:         NOTRUN -> ([SKIP][39], [SKIP][40]) ([i915#8555])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_exec_balancer@noheartbeat.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-tglu:         NOTRUN -> [FAIL][41] ([i915#6117])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_capture@capture-invisible@lmem0:
    - shard-dg2:          NOTRUN -> [SKIP][42] ([i915#6334]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_capture@capture-invisible@lmem0.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-tglu:         NOTRUN -> ([SKIP][43], [SKIP][44]) ([i915#6344])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@gem_exec_capture@capture-recoverable.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_capture@many-4k-zero:
    - shard-dg2:          NOTRUN -> ([FAIL][45], [FAIL][46]) ([i915#9606])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_exec_capture@many-4k-zero.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_capture@many-4k-zero.html
    - shard-mtlp:         NOTRUN -> ([FAIL][47], [FAIL][48]) ([i915#9606])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_capture@many-4k-zero.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_exec_capture@many-4k-zero.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglu:         [PASS][49] -> ([FAIL][50], [FAIL][51]) ([i915#2842]) +1 other test ( 2 fail )
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo:
    - shard-mtlp:         NOTRUN -> ([SKIP][52], [SKIP][53]) ([i915#4473])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_exec_fair@basic-pace-solo.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-glk:          [PASS][54] -> ([FAIL][55], [FAIL][56]) ([i915#2842]) +1 other test ( 2 fail )
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fence@submit67:
    - shard-dg2:          NOTRUN -> ([SKIP][57], [SKIP][58]) ([i915#4812])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_exec_fence@submit67.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@gem_exec_fence@submit67.html
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#4812])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_fence@submit67.html

  * igt@gem_exec_flush@basic-uc-set-default:
    - shard-dg1:          NOTRUN -> ([SKIP][60], [SKIP][61]) ([i915#3539])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@gem_exec_flush@basic-uc-set-default.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_exec_flush@basic-uc-set-default.html

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

  * igt@gem_exec_reloc@basic-gtt-read:
    - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#3281]) +3 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-read.html
    - shard-mtlp:         NOTRUN -> ([SKIP][65], [SKIP][66]) ([i915#3281]) +2 other tests ( 2 skip )
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-read.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-read.html

  * igt@gem_exec_reloc@basic-gtt-wc:
    - shard-dg1:          NOTRUN -> ([SKIP][67], [SKIP][68]) ([i915#3281])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-wc.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-wc.html

  * igt@gem_exec_reloc@basic-wc:
    - shard-dg2:          NOTRUN -> ([SKIP][69], [SKIP][70]) ([i915#3281]) +6 other tests ( 2 skip )
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_exec_reloc@basic-wc.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_exec_reloc@basic-wc.html

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

  * igt@gem_exec_schedule@preempt-queue-contexts:
    - shard-mtlp:         NOTRUN -> [SKIP][72] ([i915#4537] / [i915#4812])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-contexts.html
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#4537] / [i915#4812])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html

  * igt@gem_exec_suspend@basic-s4-devices@lmem0:
    - shard-dg2:          [PASS][74] -> [ABORT][75] ([i915#7975] / [i915#8213])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html

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

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
    - shard-dg2:          NOTRUN -> ([SKIP][78], [SKIP][79]) ([i915#4860]) +2 other tests ( 2 skip )
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html

  * igt@gem_fenced_exec_thrash@too-many-fences:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#4860]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@gem_fenced_exec_thrash@too-many-fences.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-tglu:         NOTRUN -> ([SKIP][81], [SKIP][82]) ([i915#4613]) +1 other test ( 2 skip )
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@gem_lmem_swapping@heavy-verify-random.html
    - shard-glk:          NOTRUN -> ([SKIP][83], [SKIP][84]) ([fdo#109271] / [i915#4613])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk6/igt@gem_lmem_swapping@heavy-verify-random.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk3/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
    - shard-dg1:          NOTRUN -> ([SKIP][85], [SKIP][86]) ([i915#4565])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          [PASS][87] -> ([TIMEOUT][88], [DMESG-WARN][89]) ([i915#4936] / [i915#5493])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-mtlp:         NOTRUN -> ([SKIP][90], [SKIP][91]) ([i915#4613])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@gem_lmem_swapping@verify-ccs.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_lmem_swapping@verify-ccs.html

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

  * igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
    - shard-mtlp:         NOTRUN -> ([SKIP][93], [SKIP][94]) ([i915#4077]) +8 other tests ( 2 skip )
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-xy:
    - shard-dg1:          NOTRUN -> ([SKIP][95], [SKIP][96]) ([i915#4077]) +1 other test ( 2 skip )
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html

  * igt@gem_mmap_gtt@zero-extend:
    - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#4077]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html

  * igt@gem_mmap_wc@bad-object:
    - shard-mtlp:         NOTRUN -> ([SKIP][98], [SKIP][99]) ([i915#4083]) +1 other test ( 2 skip )
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gem_mmap_wc@bad-object.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_mmap_wc@bad-object.html

  * igt@gem_mmap_wc@bad-offset:
    - shard-dg1:          NOTRUN -> ([SKIP][100], [SKIP][101]) ([i915#4083])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_mmap_wc@bad-offset.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_mmap_wc@bad-offset.html

  * igt@gem_mmap_wc@read-write:
    - shard-mtlp:         NOTRUN -> [SKIP][102] ([i915#4083])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_mmap_wc@read-write.html

  * igt@gem_mmap_wc@write-wc-read-gtt:
    - shard-dg2:          NOTRUN -> ([SKIP][103], [SKIP][104]) ([i915#4083]) +3 other tests ( 2 skip )
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html

  * igt@gem_partial_pwrite_pread@writes-after-reads:
    - shard-dg1:          NOTRUN -> ([SKIP][105], [SKIP][106]) ([i915#3282])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@gem_partial_pwrite_pread@writes-after-reads.html

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

  * igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
    - shard-mtlp:         NOTRUN -> [SKIP][108] ([i915#3282])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-dg2:          NOTRUN -> ([SKIP][109], [SKIP][110]) ([i915#3282]) +4 other tests ( 2 skip )
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_pwrite@basic-exhaustion.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_pwrite@basic-exhaustion.html

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

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-tglu:         NOTRUN -> ([SKIP][112], [SKIP][113]) ([i915#4270]) +2 other tests ( 2 skip )
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-dg2:          NOTRUN -> ([SKIP][114], [SKIP][115]) ([i915#4270]) +1 other test ( 2 skip )
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_readwrite@write-bad-handle:
    - shard-mtlp:         NOTRUN -> ([SKIP][116], [SKIP][117]) ([i915#3282]) +2 other tests ( 2 skip )
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_readwrite@write-bad-handle.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_readwrite@write-bad-handle.html

  * igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][118] ([i915#8428])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-snb:          NOTRUN -> [SKIP][119] ([fdo#109271]) +23 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

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

  * igt@gem_render_tiled_blits@basic:
    - shard-dg1:          NOTRUN -> ([SKIP][122], [SKIP][123]) ([i915#4079]) +1 other test ( 2 skip )
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gem_render_tiled_blits@basic.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gem_render_tiled_blits@basic.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][124] ([i915#4079])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-mtlp:         NOTRUN -> ([SKIP][125], [SKIP][126]) ([i915#4079])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@gem_set_tiling_vs_pwrite.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_set_tiling_vs_pwrite.html

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

  * igt@gem_tiled_blits@basic:
    - shard-dg2:          NOTRUN -> ([SKIP][128], [SKIP][129]) ([i915#4077]) +6 other tests ( 2 skip )
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gem_tiled_blits@basic.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_tiled_blits@basic.html

  * igt@gem_tiled_pread_basic:
    - shard-dg2:          NOTRUN -> ([SKIP][130], [SKIP][131]) ([i915#4079])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_tiled_pread_basic.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_tiled_pread_basic.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([i915#4079])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-tglu:         NOTRUN -> ([SKIP][133], [SKIP][134]) ([i915#3297])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gem_userptr_blits@coherency-unsync.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@gem_userptr_blits@coherency-unsync.html

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

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-dg2:          NOTRUN -> ([SKIP][136], [SKIP][137]) ([i915#3297])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
    - shard-dg2:          NOTRUN -> [SKIP][138] ([i915#3297] / [i915#4880])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-mtlp:         NOTRUN -> ([SKIP][139], [SKIP][140]) ([i915#3297])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

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

  * igt@gem_userptr_blits@vma-merge:
    - shard-dg2:          NOTRUN -> ([FAIL][142], [FAIL][143]) ([i915#3318])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@gem_userptr_blits@vma-merge.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@gem_userptr_blits@vma-merge.html

  * igt@gen3_render_linear_blits:
    - shard-tglu:         NOTRUN -> ([SKIP][144], [SKIP][145]) ([fdo#109289]) +1 other test ( 2 skip )
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@gen3_render_linear_blits.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@gen3_render_linear_blits.html

  * igt@gen3_render_tiledy_blits:
    - shard-mtlp:         NOTRUN -> ([SKIP][146], [SKIP][147]) ([fdo#109289])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@gen3_render_tiledy_blits.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gen3_render_tiledy_blits.html

  * igt@gen7_exec_parse@chained-batch:
    - shard-dg2:          NOTRUN -> ([SKIP][148], [SKIP][149]) ([fdo#109289]) +3 other tests ( 2 skip )
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@gen7_exec_parse@chained-batch.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@gen7_exec_parse@chained-batch.html

  * igt@gen7_exec_parse@oacontrol-tracking:
    - shard-mtlp:         NOTRUN -> [SKIP][150] ([fdo#109289])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gen7_exec_parse@oacontrol-tracking.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-dg2:          NOTRUN -> [SKIP][151] ([i915#2856])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@bb-chained:
    - shard-tglu:         NOTRUN -> ([SKIP][152], [SKIP][153]) ([i915#2527] / [i915#2856]) +1 other test ( 2 skip )
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@gen9_exec_parse@bb-chained.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@gen9_exec_parse@bb-chained.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-mtlp:         NOTRUN -> ([SKIP][154], [SKIP][155]) ([i915#2856])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@gen9_exec_parse@bb-start-out.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@gen9_exec_parse@bb-start-out.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-dg2:          NOTRUN -> ([SKIP][156], [SKIP][157]) ([i915#2856]) +2 other tests ( 2 skip )
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@gen9_exec_parse@bb-start-param.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-dg1:          NOTRUN -> ([SKIP][158], [SKIP][159]) ([i915#2527])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@gen9_exec_parse@valid-registers.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_pm_freq_api@freq-reset-multiple@gt0:
    - shard-mtlp:         [PASS][160] -> ([ABORT][161], [ABORT][162]) ([i915#9414])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-8/igt@i915_pm_freq_api@freq-reset-multiple@gt0.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@i915_pm_freq_api@freq-reset-multiple@gt0.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@i915_pm_freq_api@freq-reset-multiple@gt0.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          [PASS][163] -> ([INCOMPLETE][164], [PASS][165]) ([i915#9407])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-dg1:          NOTRUN -> [SKIP][166] ([fdo#109303])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@i915_query@query-topology-known-pci-ids.html

  * igt@i915_selftest@mock@memory_region:
    - shard-tglu:         NOTRUN -> ([DMESG-WARN][167], [DMESG-WARN][168]) ([i915#9311])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@i915_selftest@mock@memory_region.html
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@i915_selftest@mock@memory_region.html
    - shard-mtlp:         NOTRUN -> ([DMESG-WARN][169], [DMESG-WARN][170]) ([i915#9311])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@i915_selftest@mock@memory_region.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@i915_selftest@mock@memory_region.html

  * igt@i915_suspend@forcewake:
    - shard-dg2:          [PASS][171] -> ([ABORT][172], [PASS][173]) ([i915#9702])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-5/igt@i915_suspend@forcewake.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@i915_suspend@forcewake.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@i915_suspend@forcewake.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - shard-dg1:          NOTRUN -> ([SKIP][174], [SKIP][175]) ([i915#4212])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> ([SKIP][176], [SKIP][177]) ([i915#4212]) +1 other test ( 2 skip )
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html
    - shard-mtlp:         NOTRUN -> ([SKIP][178], [SKIP][179]) ([i915#4212])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][180] ([i915#4215] / [i915#5190])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-tglu:         NOTRUN -> ([SKIP][181], [SKIP][182]) ([i915#3826])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
    - shard-mtlp:         NOTRUN -> ([SKIP][183], [SKIP][184]) ([i915#3826])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [FAIL][185] ([i915#8247]) +3 other tests fail
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-mtlp:         NOTRUN -> ([SKIP][186], [SKIP][187]) ([i915#6228])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          NOTRUN -> [SKIP][188] ([i915#4098] / [i915#9531])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-mtlp:         NOTRUN -> ([SKIP][189], [SKIP][190]) ([i915#1769] / [i915#3555]) +1 other test ( 2 skip )
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-glk:          NOTRUN -> [SKIP][191] ([fdo#109271]) +3 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][192] ([fdo#111614])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-tglu:         NOTRUN -> ([SKIP][193], [SKIP][194]) ([fdo#111615] / [i915#5286]) +3 other tests ( 2 skip )
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-mtlp:         [PASS][195] -> ([FAIL][196], [PASS][197]) ([i915#5138])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/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-async-flip:
    - shard-dg1:          NOTRUN -> ([SKIP][198], [SKIP][199]) ([i915#4538] / [i915#5286])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

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

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-mtlp:         NOTRUN -> ([SKIP][202], [SKIP][203]) ([fdo#111614])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@linear-64bpp-rotate-270.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-tglu:         NOTRUN -> ([SKIP][204], [SKIP][205]) ([fdo#111614])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
    - shard-mtlp:         NOTRUN -> [SKIP][206] ([fdo#111614])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-dg2:          NOTRUN -> ([SKIP][207], [SKIP][208]) ([fdo#111614]) +1 other test ( 2 skip )
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-tglu:         [PASS][209] -> ([FAIL][210], [FAIL][211]) ([i915#3743])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglu:         [PASS][212] -> ([PASS][213], [FAIL][214]) ([i915#3743]) +1 other test ( 1 fail, 1 pass )
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglu:         NOTRUN -> ([PASS][215], [FAIL][216]) ([i915#3743])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
    - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#5190]) +3 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
    - shard-dg2:          NOTRUN -> ([SKIP][218], [SKIP][219]) ([i915#5190]) +9 other tests ( 2 skip )
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-dg1:          NOTRUN -> ([SKIP][220], [SKIP][221]) ([i915#3638])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
    - shard-tglu:         NOTRUN -> [SKIP][222] ([fdo#111615]) +1 other test skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-dg2:          NOTRUN -> ([SKIP][223], [SKIP][224]) ([i915#4538] / [i915#5190]) +3 other tests ( 2 skip )
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-dg1:          NOTRUN -> ([SKIP][225], [SKIP][226]) ([i915#4538]) +1 other test ( 2 skip )
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][227] ([i915#4538] / [i915#5190]) +3 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
    - shard-mtlp:         NOTRUN -> [SKIP][228] ([fdo#111615]) +1 other test skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> ([SKIP][229], [SKIP][230]) ([fdo#111615]) +5 other tests ( 2 skip )
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-tglu:         NOTRUN -> ([SKIP][231], [SKIP][232]) ([i915#2705])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_big_joiner@invalid-modeset.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_big_joiner@invalid-modeset.html

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

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

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][235] ([i915#4087]) +7 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][236] ([i915#4087]) +3 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-mtlp:         NOTRUN -> ([SKIP][237], [SKIP][238]) ([fdo#111827])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_chamelium_color@ctm-0-50.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-mtlp:         NOTRUN -> [SKIP][239] ([fdo#111827])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html
    - shard-dg2:          NOTRUN -> ([SKIP][240], [SKIP][241]) ([fdo#111827])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_chamelium_color@ctm-blue-to-red.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2:          NOTRUN -> [SKIP][242] ([fdo#111827])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_color@gamma:
    - shard-tglu:         NOTRUN -> ([SKIP][243], [SKIP][244]) ([fdo#111827])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_chamelium_color@gamma.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-dg1:          NOTRUN -> ([SKIP][245], [SKIP][246]) ([i915#7828]) +1 other test ( 2 skip )
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-14/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
    - shard-tglu:         NOTRUN -> [SKIP][247] ([i915#7828])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-tglu:         NOTRUN -> ([SKIP][248], [SKIP][249]) ([i915#7828]) +1 other test ( 2 skip )
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_chamelium_frames@dp-frame-dump.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_chamelium_frames@dp-frame-dump.html

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

  * igt@kms_chamelium_hpd@dp-hpd-fast:
    - shard-dg2:          NOTRUN -> [SKIP][251] ([i915#7828]) +5 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_chamelium_hpd@dp-hpd-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-mtlp:         NOTRUN -> ([SKIP][252], [SKIP][253]) ([i915#7828]) +1 other test ( 2 skip )
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-fast.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
    - shard-dg2:          NOTRUN -> ([SKIP][254], [SKIP][255]) ([i915#7828]) +4 other tests ( 2 skip )
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic:
    - shard-dg2:          NOTRUN -> [SKIP][256] ([i915#7118])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglu:         NOTRUN -> ([SKIP][257], [SKIP][258]) ([i915#6944] / [i915#7116] / [i915#7118])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_content_protection@atomic-dpms.html

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

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

  * igt@kms_content_protection@uevent:
    - shard-mtlp:         NOTRUN -> ([SKIP][261], [SKIP][262]) ([i915#6944]) +1 other test ( 2 skip )
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_content_protection@uevent.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-tglu:         NOTRUN -> ([SKIP][263], [SKIP][264]) ([i915#3359]) +1 other test ( 2 skip )
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg2:          NOTRUN -> ([SKIP][265], [SKIP][266]) ([i915#3359]) +1 other test ( 2 skip )
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html

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

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

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-mtlp:         NOTRUN -> ([SKIP][269], [SKIP][270]) ([i915#3555] / [i915#8814])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-32x32.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-mtlp:         NOTRUN -> ([SKIP][271], [SKIP][272]) ([i915#3359]) +1 other test ( 2 skip )
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][273] ([i915#3359])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-dg2:          NOTRUN -> ([SKIP][274], [SKIP][275]) ([i915#3555]) +2 other tests ( 2 skip )
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-max-size.html
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][276] ([fdo#109274] / [i915#5354]) +1 other test skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-dg1:          NOTRUN -> ([SKIP][277], [SKIP][278]) ([i915#4103] / [i915#4213])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-tglu:         NOTRUN -> ([SKIP][279], [SKIP][280]) ([fdo#109274]) +1 other test ( 2 skip )
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-dg2:          NOTRUN -> ([SKIP][281], [SKIP][282]) ([fdo#109274] / [i915#5354]) +3 other tests ( 2 skip )
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
    - shard-mtlp:         NOTRUN -> ([SKIP][283], [SKIP][284]) ([i915#3546]) +3 other tests ( 2 skip )
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-dg2:          NOTRUN -> ([SKIP][285], [SKIP][286]) ([fdo#109274] / [fdo#111767] / [i915#5354])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-snb:          NOTRUN -> [SKIP][287] ([fdo#109271] / [fdo#111767])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-mtlp:         NOTRUN -> ([SKIP][289], [SKIP][290]) ([i915#4213])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#8588])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-mtlp:         NOTRUN -> ([SKIP][292], [SKIP][293]) ([i915#3555] / [i915#8812])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_draw_crc@draw-method-mmap-gtt.html

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

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][295] ([i915#3637])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-dg1:          NOTRUN -> ([SKIP][296], [SKIP][297]) ([fdo#111825]) +3 other tests ( 2 skip )
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][298] ([fdo#109274] / [fdo#111767])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-tglu:         NOTRUN -> ([SKIP][299], [SKIP][300]) ([fdo#109274] / [fdo#111767] / [i915#3637])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-dg2:          NOTRUN -> ([SKIP][301], [SKIP][302]) ([fdo#109274]) +2 other tests ( 2 skip )
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          NOTRUN -> [SKIP][303] ([fdo#109274]) +1 other test skip
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-mtlp:         NOTRUN -> ([SKIP][304], [SKIP][305]) ([i915#3637])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-tglu:         NOTRUN -> [SKIP][306] ([fdo#109274] / [i915#3637]) +1 other test skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@flip-vs-fences-interruptible:
    - shard-mtlp:         NOTRUN -> ([SKIP][307], [SKIP][308]) ([i915#8381])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_flip@flip-vs-fences-interruptible.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> ([SKIP][309], [SKIP][310]) ([i915#2672])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> ([SKIP][311], [SKIP][312]) ([i915#2587] / [i915#2672]) +1 other test ( 2 skip )
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@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][313], [SKIP][314]) ([i915#2672]) +2 other tests ( 2 skip )
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][317] ([i915#2587] / [i915#2672])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> ([SKIP][318], [SKIP][319]) ([i915#3555] / [i915#8810])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-dg2:          [PASS][321] -> ([FAIL][322], [FAIL][323]) ([i915#6880])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> ([SKIP][324], [SKIP][325]) ([i915#5354]) +27 other tests ( 2 skip )
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][326] ([i915#1825]) +1 other test skip
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][327] ([i915#8708])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> ([SKIP][328], [SKIP][329]) ([i915#3458]) +10 other tests ( 2 skip )
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg1:          NOTRUN -> [SKIP][331] ([i915#3458])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-tglu:         NOTRUN -> ([SKIP][332], [SKIP][333]) ([fdo#110189]) +5 other tests ( 2 skip )
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-dg1:          NOTRUN -> [SKIP][334] ([fdo#111825]) +1 other test skip
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> ([SKIP][335], [SKIP][336]) ([i915#8708]) +10 other tests ( 2 skip )
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite:
    - shard-tglu:         NOTRUN -> [SKIP][337] ([fdo#109280]) +2 other tests skip
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> ([SKIP][339], [SKIP][340]) ([fdo#109280]) +17 other tests ( 2 skip )
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
    - shard-mtlp:         NOTRUN -> ([SKIP][341], [SKIP][342]) ([i915#1825]) +18 other tests ( 2 skip )
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> ([SKIP][343], [SKIP][344]) ([i915#8708]) +2 other tests ( 2 skip )
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][345] ([i915#5460])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
    - shard-mtlp:         NOTRUN -> [SKIP][346] ([i915#5460])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

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

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][349] ([i915#5354]) +14 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
    - shard-dg1:          NOTRUN -> ([SKIP][350], [SKIP][351]) ([i915#3458]) +2 other tests ( 2 skip )
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
    - shard-tglu:         NOTRUN -> [SKIP][352] ([fdo#110189]) +2 other tests skip
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html

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

  * igt@kms_hdr@static-toggle:
    - shard-dg2:          NOTRUN -> ([SKIP][354], [SKIP][355]) ([i915#3555] / [i915#8228]) +1 other test ( 2 skip )
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_hdr@static-toggle.html
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_hdr@static-toggle.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg1:          NOTRUN -> ([SKIP][356], [SKIP][357]) ([i915#3555] / [i915#8228])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_hdr@static-toggle-suspend.html
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_hdr@static-toggle-suspend.html

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

  * igt@kms_panel_fitting@legacy:
    - shard-tglu:         NOTRUN -> ([SKIP][359], [SKIP][360]) ([i915#6301])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_panel_fitting@legacy.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_panel_fitting@legacy.html

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

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu:         NOTRUN -> [SKIP][363] ([i915#3555])
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-dg1:          NOTRUN -> ([SKIP][364], [SKIP][365]) ([i915#3555]) +2 other tests ( 2 skip )
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2:          NOTRUN -> ([SKIP][366], [SKIP][367]) ([i915#6953])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][368] ([i915#5176] / [i915#9423]) +3 other tests skip
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][369] ([i915#5235]) +11 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
    - shard-tglu:         NOTRUN -> ([SKIP][370], [SKIP][371]) ([i915#5235]) +3 other tests ( 2 skip )
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][372] ([i915#5235]) +27 other tests skip
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/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@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> ([SKIP][373], [SKIP][374]) ([i915#5235]) +3 other tests ( 2 skip )
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-dg2:          NOTRUN -> [SKIP][375] ([i915#6524] / [i915#6805]) +3 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
    - shard-dg1:          NOTRUN -> ([SKIP][376], [SKIP][377]) ([i915#9683])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-dg2:          NOTRUN -> [SKIP][378] ([i915#9683]) +1 other test skip
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
    - shard-tglu:         NOTRUN -> ([SKIP][379], [SKIP][380]) ([i915#9683])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-tglu:         NOTRUN -> ([SKIP][381], [SKIP][382]) ([fdo#111068] / [i915#9683])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> ([SKIP][383], [SKIP][384]) ([i915#9683])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@psr2_cursor_plane_move:
    - shard-dg2:          NOTRUN -> ([SKIP][385], [SKIP][386]) ([i915#9681]) +4 other tests ( 2 skip )
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@kms_psr@psr2_cursor_plane_move.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_move.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-dg2:          NOTRUN -> [SKIP][387] ([i915#9681])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-dg1:          NOTRUN -> ([SKIP][388], [SKIP][389]) ([i915#9673]) +1 other test ( 2 skip )
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-16/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-tglu:         NOTRUN -> ([SKIP][390], [SKIP][391]) ([i915#9673]) +1 other test ( 2 skip )
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-8/igt@kms_psr@psr2_sprite_render.html
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@kms_psr@psr2_sprite_render.html

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

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-mtlp:         NOTRUN -> ([SKIP][393], [SKIP][394]) ([i915#4235])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-90.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][395] ([i915#4235] / [i915#5190])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-mtlp:         NOTRUN -> [SKIP][396] ([i915#4235]) +1 other test skip
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_setmode@basic@pipe-a-hdmi-a-1:
    - shard-snb:          NOTRUN -> [FAIL][397] ([i915#5465]) +1 other test fail
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-dg2:          NOTRUN -> [SKIP][398] ([i915#3555] / [i915#4098])
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          NOTRUN -> ([FAIL][399], [FAIL][400]) ([IGT#2])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_sysfs_edid_timing.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@kms_sysfs_edid_timing.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-tglu:         NOTRUN -> [SKIP][401] ([i915#8623])
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html
    - shard-mtlp:         NOTRUN -> [SKIP][402] ([i915#8623])
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
    - shard-tglu:         [PASS][403] -> ([PASS][404], [FAIL][405]) ([i915#9196]) +1 other test ( 1 fail, 1 pass )
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html

  * igt@kms_vrr@flip-suspend:
    - shard-mtlp:         NOTRUN -> [SKIP][406] ([i915#3555] / [i915#8808])
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@negative-basic:
    - shard-glk:          NOTRUN -> ([SKIP][407], [SKIP][408]) ([fdo#109271]) +41 other tests ( 2 skip )
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk9/igt@kms_vrr@negative-basic.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-glk2/igt@kms_vrr@negative-basic.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-mtlp:         NOTRUN -> ([SKIP][409], [SKIP][410]) ([i915#2437])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@kms_writeback@writeback-invalid-parameters.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-dg2:          NOTRUN -> ([SKIP][411], [SKIP][412]) ([i915#2437]) +1 other test ( 2 skip )
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html

  * igt@perf@enable-disable@0-rcs0:
    - shard-dg2:          [PASS][413] -> [FAIL][414] ([i915#8724])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@perf@enable-disable@0-rcs0.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html

  * igt@perf@mi-rpc:
    - shard-dg2:          NOTRUN -> [SKIP][415] ([i915#2434])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@perf@mi-rpc.html
    - shard-mtlp:         NOTRUN -> [SKIP][416] ([i915#2434])
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@perf@mi-rpc.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          [PASS][417] -> ([PASS][418], [FAIL][419]) ([i915#7484])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html

  * igt@perf_pmu@busy-double-start@bcs0:
    - shard-mtlp:         [PASS][420] -> ([PASS][421], [FAIL][422]) ([i915#4349]) +2 other tests ( 1 fail, 1 pass )
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-1/igt@perf_pmu@busy-double-start@bcs0.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html

  * igt@perf_pmu@busy-double-start@ccs0:
    - shard-mtlp:         [PASS][423] -> ([FAIL][424], [FAIL][425]) ([i915#4349])
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html

  * igt@perf_pmu@cpu-hotplug:
    - shard-dg1:          NOTRUN -> ([SKIP][426], [SKIP][427]) ([i915#8850])
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@perf_pmu@cpu-hotplug.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@perf_pmu@cpu-hotplug.html

  * igt@prime_vgem@basic-write:
    - shard-dg1:          NOTRUN -> [SKIP][428] ([i915#3708])
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-17/igt@prime_vgem@basic-write.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-dg2:          NOTRUN -> ([SKIP][429], [SKIP][430]) ([i915#3708])
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html

  * igt@v3d/v3d_get_param@base-params:
    - shard-dg2:          NOTRUN -> ([SKIP][431], [SKIP][432]) ([i915#2575]) +5 other tests ( 2 skip )
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-3/igt@v3d/v3d_get_param@base-params.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@v3d/v3d_get_param@base-params.html

  * igt@v3d/v3d_perfmon@create-perfmon-0:
    - shard-tglu:         NOTRUN -> [SKIP][433] ([fdo#109315] / [i915#2575]) +1 other test skip
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@v3d/v3d_perfmon@create-perfmon-0.html

  * igt@v3d/v3d_perfmon@get-values-valid-perfmon:
    - shard-dg1:          NOTRUN -> ([SKIP][434], [SKIP][435]) ([i915#2575])
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-19/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html

  * igt@v3d/v3d_submit_cl@bad-bo:
    - shard-dg2:          NOTRUN -> [SKIP][436] ([i915#2575]) +10 other tests skip
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-bo.html

  * igt@v3d/v3d_submit_cl@bad-multisync-in-sync:
    - shard-mtlp:         NOTRUN -> [SKIP][437] ([i915#2575]) +2 other tests skip
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@v3d/v3d_submit_cl@bad-multisync-in-sync.html

  * igt@v3d/v3d_submit_cl@valid-submission:
    - shard-tglu:         NOTRUN -> ([SKIP][438], [SKIP][439]) ([fdo#109315] / [i915#2575]) +3 other tests ( 2 skip )
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-3/igt@v3d/v3d_submit_cl@valid-submission.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@v3d/v3d_submit_cl@valid-submission.html
    - shard-mtlp:         NOTRUN -> ([SKIP][440], [SKIP][441]) ([i915#2575]) +6 other tests ( 2 skip )
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@v3d/v3d_submit_cl@valid-submission.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-1/igt@v3d/v3d_submit_cl@valid-submission.html

  * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done:
    - shard-tglu:         NOTRUN -> [SKIP][442] ([i915#2575]) +1 other test skip
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-6/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html

  * igt@vc4/vc4_lookup_fail@bad-color-write:
    - shard-dg2:          NOTRUN -> ([SKIP][443], [SKIP][444]) ([i915#7711]) +4 other tests ( 2 skip )
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-6/igt@vc4/vc4_lookup_fail@bad-color-write.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-7/igt@vc4/vc4_lookup_fail@bad-color-write.html

  * igt@vc4/vc4_perfmon@create-single-perfmon:
    - shard-snb:          NOTRUN -> ([SKIP][445], [SKIP][446]) ([fdo#109271]) +29 other tests ( 2 skip )
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@vc4/vc4_perfmon@create-single-perfmon.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb5/igt@vc4/vc4_perfmon@create-single-perfmon.html

  * igt@vc4/vc4_perfmon@create-two-perfmon:
    - shard-dg2:          NOTRUN -> [SKIP][447] ([i915#7711]) +2 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-5/igt@vc4/vc4_perfmon@create-two-perfmon.html

  * igt@vc4/vc4_purgeable_bo@free-purged-bo:
    - shard-mtlp:         NOTRUN -> ([SKIP][448], [SKIP][449]) ([i915#7711]) +3 other tests ( 2 skip )
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@free-purged-bo.html

  * igt@vc4/vc4_wait_bo@bad-bo:
    - shard-dg1:          NOTRUN -> ([SKIP][450], [SKIP][451]) ([i915#7711]) +1 other test ( 2 skip )
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-13/igt@vc4/vc4_wait_bo@bad-bo.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-12/igt@vc4/vc4_wait_bo@bad-bo.html

  * igt@vc4/vc4_wait_bo@unused-bo-0ns:
    - shard-mtlp:         NOTRUN -> [SKIP][452] ([i915#7711]) +1 other test skip
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@vc4/vc4_wait_bo@unused-bo-0ns.html

  * igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
    - shard-tglu:         NOTRUN -> ([SKIP][453], [SKIP][454]) ([i915#2575]) +1 other test ( 2 skip )
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-2/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-9/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html

  
#### Possible fixes ####

  * igt@gem_eio@banned:
    - shard-mtlp:         [ABORT][455] ([i915#9414]) -> ([PASS][456], [PASS][457]) +1 other test ( 2 pass )
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-2/igt@gem_eio@banned.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@gem_eio@banned.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-5/igt@gem_eio@banned.html

  * igt@gem_eio@in-flight-internal-1us:
    - shard-mtlp:         [ABORT][458] ([i915#9414]) -> [PASS][459]
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@gem_eio@in-flight-internal-1us.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@gem_eio@in-flight-internal-1us.html

  * igt@gem_eio@reset-stress:
    - shard-dg1:          [FAIL][460] ([i915#5784]) -> ([PASS][461], [PASS][462])
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg1-17/igt@gem_eio@reset-stress.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-18/igt@gem_eio@reset-stress.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg1-15/igt@gem_eio@reset-stress.html

  * igt@i915_module_load@reload-no-display:
    - shard-snb:          [INCOMPLETE][463] -> ([PASS][464], [PASS][465])
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb5/igt@i915_module_load@reload-no-display.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb2/igt@i915_module_load@reload-no-display.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb1/igt@i915_module_load@reload-no-display.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-snb:          [INCOMPLETE][466] ([i915#9200]) -> [PASS][467]
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rps@reset:
    - shard-snb:          [INCOMPLETE][468] ([i915#7790]) -> [PASS][469]
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb4/igt@i915_pm_rps@reset.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb2/igt@i915_pm_rps@reset.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-mtlp:         [FAIL][470] ([i915#5138]) -> ([PASS][471], [PASS][472])
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_busy@extended-modeset-hang-newfb@pipe-a:
    - shard-tglu:         [ABORT][473] -> ([PASS][474], [PASS][475])
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-10/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
    - shard-dg2:          [FAIL][476] ([i915#6880]) -> ([PASS][477], [PASS][478]) +1 other test ( 2 pass )
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
    - shard-dg2:          [FAIL][479] ([i915#6880]) -> [PASS][480]
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
    - shard-snb:          [FAIL][481] ([i915#9196]) -> [PASS][482]
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-mtlp:         [FAIL][483] ([i915#9196]) -> [PASS][484]
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-2/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-tglu:         [FAIL][485] ([i915#9196]) -> ([PASS][486], [PASS][487])
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html

  * igt@perf_pmu@render-node-busy@vcs0:
    - shard-mtlp:         [FAIL][488] ([i915#4349]) -> ([PASS][489], [PASS][490])
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13908/shard-mtlp-7/igt@perf_pmu@render-node-busy@vcs0.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-7/igt@perf_pmu@render-node-busy@vcs0.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10233/shard-mtlp-4/igt@perf_pmu@render-node-busy@vcs0.html

  
#### Warnings ####

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-tglu:         [FAIL]

== Logs ==

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

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

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

end of thread, other threads:[~2023-11-25  7:42 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-07 20:59 [igt-dev] [PATCH v4] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
2023-11-07 20:59 ` [igt-dev] [PATCH] " Jagmeet Randhawa
2023-11-07 22:05 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
2023-11-07 22:18 ` [igt-dev] ✗ CI.xeBAT: " Patchwork
2023-11-15 21:01 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev2) Patchwork
2023-11-16 11:19   ` Kamil Konieczny
2023-11-21 12:29     ` Illipilli, TejasreeX
2023-11-15 21:31 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork
2023-11-20 22:27 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/gpgpu_fill: Add support for Xe2 platforms (rev3) Patchwork
2023-11-20 23:49 ` [igt-dev] ✗ CI.xeBAT: " Patchwork
2023-11-21 22:03 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/gpgpu_fill: Add support for Xe2 platforms (rev4) Patchwork
2023-11-21 22:04 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-11-22 16:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-11-23  9:27   ` Kamil Konieczny
2023-11-23 10:35 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-11-23 22:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-11-25  6:44 ` Patchwork
2023-11-25  7:42 ` Patchwork

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