Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t v2 0/2] tests/gem_mmap_offset: Fix OOM hits
@ 2024-11-28 11:16 Janusz Krzysztofik
  2024-11-28 11:16 ` [PATCH i-g-t v2 1/2] tests/gem_mmap_offset: Split 'clear' subtest Janusz Krzysztofik
                   ` (6 more replies)
  0 siblings, 7 replies; 13+ messages in thread
From: Janusz Krzysztofik @ 2024-11-28 11:16 UTC (permalink / raw)
  To: igt-dev
  Cc: intel-gfx, Kamil Konieczny, Zbigniew Kempczyński,
	Chris Wilson, Janusz Krzysztofik

The 'clear' subtest used to exercise correctness of object memory clearing
on passing a batch with the object to GPU for processing.  However, commit
e25913a1a79d ("i915/gem_mmap_offset: Ignore ENOSPC error for making
residency execbuf"), while resolving an issue of unnecessary failures on
ENOSPC errors, introduced an alternative method of clearing the object
memory, with random selection of one of those methods on each iteration.
The new method expects the memory to be cleared in pagefault handler path.
Since those two methods may give different results, mixing them in one
exercise may make the picture unclear, especially if something goes wrong.

The exercise is executed in several parallel threads, one per CPU.  Each
thread repeats the exercise in a time only limited loop, with no delay
between consecutive iterations.  In case of passing system memory objects
to execbuf, that happens to exhaust all available physical memory, which
is neither the matter nor the goal nor requirement of the exercise.

Move the pagefault method, free from the issue, to a new separate subtest,
and make sure sufficient amount of physical memory is available before
calling another execbuf.

v2: Limit the scope of the fix to SMEM exercise.

Janusz Krzysztofik (2):
  tests/gem_mmap_offset: Split 'clear' subtest
  tests/gem_mmap_offset: Fix OOM hits

 tests/intel/gem_mmap_offset.c | 22 ++++++++++++++++++----
 1 file changed, 18 insertions(+), 4 deletions(-)

-- 
2.47.0


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

* [PATCH i-g-t v2 1/2] tests/gem_mmap_offset: Split 'clear' subtest
  2024-11-28 11:16 [PATCH i-g-t v2 0/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
@ 2024-11-28 11:16 ` Janusz Krzysztofik
  2024-11-28 11:56   ` Andi Shyti
  2024-11-28 11:16 ` [PATCH i-g-t v2 2/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 13+ messages in thread
From: Janusz Krzysztofik @ 2024-11-28 11:16 UTC (permalink / raw)
  To: igt-dev
  Cc: intel-gfx, Kamil Konieczny, Zbigniew Kempczyński,
	Chris Wilson, Janusz Krzysztofik

Commit e25913a1a79d ("i915/gem_mmap_offset: Ignore ENOSPC error for making
residency execbuf") not only resolved the issue of unnecessary failures on
ENOSPC errors, but also introduced an alternative method of clearing
memory of an object, with random selection of one of those methods on each
iteration.  The new method expects the memory to be cleared in pagefault
handler path.  Since those two methods may give different results, mixing
them in one exercise may make the picture unclear, especially if something
goes wrong.

Add a new subtest that exercises the pagefault method exclusively.

Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11738
Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 tests/intel/gem_mmap_offset.c | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/tests/intel/gem_mmap_offset.c b/tests/intel/gem_mmap_offset.c
index 3f499abedb..20dca17378 100644
--- a/tests/intel/gem_mmap_offset.c
+++ b/tests/intel/gem_mmap_offset.c
@@ -53,6 +53,7 @@
  * SUBTEST: basic-uaf
  * SUBTEST: blt-coherency
  * SUBTEST: clear
+ * SUBTEST: clear-via-pagefault
  * SUBTEST: close-race
  * SUBTEST: isolation
  * SUBTEST: mmap-boundaries
@@ -720,6 +721,8 @@ struct thread_clear {
 	struct drm_i915_gem_memory_class_instance region;
 	int timeout;
 	int i915;
+	unsigned flags;
+#define CLEAR_IN_EXECBUF	0x1 << 0
 };
 
 static void *thread_clear(void *data)
@@ -743,8 +746,8 @@ static void *thread_clear(void *data)
 		size = npages << 12;
 
 		igt_assert_eq(__gem_create_in_memory_region_list(i915, &handle, &size, 0, &arg->region, 1), 0);
-		/* Zero-init bo in execbuf or pagefault handler path randomly */
-		if (random() & 1)
+		/* Zero-init bo in execbuf or pagefault handler path as requested */
+		if (arg->flags & CLEAR_IN_EXECBUF)
 			make_resident(i915, batch, handle);
 
 		ptr = __mmap_offset(i915, handle, 0, size,
@@ -784,13 +787,14 @@ static void *thread_clear(void *data)
 	return (void *)(uintptr_t)checked;
 }
 
-static void always_clear(int i915, const struct gem_memory_region *r, int timeout)
+static void always_clear(int i915, const struct gem_memory_region *r, int timeout, unsigned flags)
 {
 	struct thread_clear arg = {
 		.i915 = i915,
 		.region = r->ci,
 		.max = r->cpu_size / 2 >> 12, /* in pages */
 		.timeout = timeout,
+		.flags = flags,
 	};
 	const int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
 	unsigned long checked;
@@ -1200,7 +1204,14 @@ igt_main
 	igt_subtest_with_dynamic("clear") {
 		for_each_memory_region(r, i915) {
 			igt_dynamic_f("%s", r->name)
-				always_clear(i915, r, 20);
+				always_clear(i915, r, 20, CLEAR_IN_EXECBUF);
+		}
+	}
+
+	igt_subtest_with_dynamic("clear-via-pagefault") {
+		for_each_memory_region(r, i915) {
+			igt_dynamic_f("%s", r->name)
+				always_clear(i915, r, 20, 0);
 		}
 	}
 
-- 
2.47.0


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

* [PATCH i-g-t v2 2/2] tests/gem_mmap_offset: Fix OOM hits
  2024-11-28 11:16 [PATCH i-g-t v2 0/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
  2024-11-28 11:16 ` [PATCH i-g-t v2 1/2] tests/gem_mmap_offset: Split 'clear' subtest Janusz Krzysztofik
@ 2024-11-28 11:16 ` Janusz Krzysztofik
  2024-11-28 11:56   ` Andi Shyti
  2024-11-28 13:56 ` ✓ Xe.CI.BAT: success for tests/gem_mmap_offset: Fix OOM hits (rev2) Patchwork
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 13+ messages in thread
From: Janusz Krzysztofik @ 2024-11-28 11:16 UTC (permalink / raw)
  To: igt-dev
  Cc: intel-gfx, Kamil Konieczny, Zbigniew Kempczyński,
	Chris Wilson, Janusz Krzysztofik

The 'clear' subtest exercises correctness of object memory clearing on
passing a batch with the object to GPU for processing.  The exercise is
executed in several parallel threads, one per CPU.  Each thread repeats
the exercise in a time only limited loop, with no delay between
consecutive iterations.  In case of system memory objects, that happens
to exhaust all available physical memory, which is neither the goal nor
requirement of the exercise.

Make sure sufficient amount of physical memory is available before calling
another execbuf.

v2: Limit the scope of the fix to SMEM exercise.

Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11738
Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 tests/intel/gem_mmap_offset.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/intel/gem_mmap_offset.c b/tests/intel/gem_mmap_offset.c
index 20dca17378..8ce10d6144 100644
--- a/tests/intel/gem_mmap_offset.c
+++ b/tests/intel/gem_mmap_offset.c
@@ -745,6 +745,9 @@ static void *thread_clear(void *data)
 		npages = get_npages(&arg->max, npages);
 		size = npages << 12;
 
+		/* Execbuf requires sufficient amount of free physical memory */
+		if (arg->flags & CLEAR_IN_EXECBUF && arg->region.memory_class == I915_MEMORY_CLASS_SYSTEM)
+			igt_require_memory(1, size, CHECK_RAM);
 		igt_assert_eq(__gem_create_in_memory_region_list(i915, &handle, &size, 0, &arg->region, 1), 0);
 		/* Zero-init bo in execbuf or pagefault handler path as requested */
 		if (arg->flags & CLEAR_IN_EXECBUF)
-- 
2.47.0


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

* Re: [PATCH i-g-t v2 1/2] tests/gem_mmap_offset: Split 'clear' subtest
  2024-11-28 11:16 ` [PATCH i-g-t v2 1/2] tests/gem_mmap_offset: Split 'clear' subtest Janusz Krzysztofik
@ 2024-11-28 11:56   ` Andi Shyti
  0 siblings, 0 replies; 13+ messages in thread
From: Andi Shyti @ 2024-11-28 11:56 UTC (permalink / raw)
  To: Janusz Krzysztofik
  Cc: igt-dev, intel-gfx, Kamil Konieczny, Zbigniew Kempczyński,
	Chris Wilson

On Thu, Nov 28, 2024 at 12:16:35PM +0100, Janusz Krzysztofik wrote:
> Commit e25913a1a79d ("i915/gem_mmap_offset: Ignore ENOSPC error for making
> residency execbuf") not only resolved the issue of unnecessary failures on
> ENOSPC errors, but also introduced an alternative method of clearing
> memory of an object, with random selection of one of those methods on each
> iteration.  The new method expects the memory to be cleared in pagefault
> handler path.  Since those two methods may give different results, mixing
> them in one exercise may make the picture unclear, especially if something
> goes wrong.
> 
> Add a new subtest that exercises the pagefault method exclusively.
> 
> Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11738
> Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>

Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>

Thanks,
Andi

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

* Re: [PATCH i-g-t v2 2/2] tests/gem_mmap_offset: Fix OOM hits
  2024-11-28 11:16 ` [PATCH i-g-t v2 2/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
@ 2024-11-28 11:56   ` Andi Shyti
  0 siblings, 0 replies; 13+ messages in thread
From: Andi Shyti @ 2024-11-28 11:56 UTC (permalink / raw)
  To: Janusz Krzysztofik
  Cc: igt-dev, intel-gfx, Kamil Konieczny, Zbigniew Kempczyński,
	Chris Wilson

Hi Janusz,

On Thu, Nov 28, 2024 at 12:16:36PM +0100, Janusz Krzysztofik wrote:
> The 'clear' subtest exercises correctness of object memory clearing on
> passing a batch with the object to GPU for processing.  The exercise is
> executed in several parallel threads, one per CPU.  Each thread repeats
> the exercise in a time only limited loop, with no delay between
> consecutive iterations.  In case of system memory objects, that happens
> to exhaust all available physical memory, which is neither the goal nor
> requirement of the exercise.
> 
> Make sure sufficient amount of physical memory is available before calling
> another execbuf.
> 
> v2: Limit the scope of the fix to SMEM exercise.
> 
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11738
> Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>

Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>

Thanks,
Andi

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

* ✓ Xe.CI.BAT: success for tests/gem_mmap_offset: Fix OOM hits (rev2)
  2024-11-28 11:16 [PATCH i-g-t v2 0/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
  2024-11-28 11:16 ` [PATCH i-g-t v2 1/2] tests/gem_mmap_offset: Split 'clear' subtest Janusz Krzysztofik
  2024-11-28 11:16 ` [PATCH i-g-t v2 2/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
@ 2024-11-28 13:56 ` Patchwork
  2024-11-28 14:05 ` ✓ i915.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-11-28 13:56 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

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

== Series Details ==

Series: tests/gem_mmap_offset: Fix OOM hits (rev2)
URL   : https://patchwork.freedesktop.org/series/141643/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8129_BAT -> XEIGTPW_12214_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

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

  
#### Possible fixes ####

  * igt@kms_addfb_basic@bad-pitch-0:
    - bat-adlp-7:         [DMESG-WARN][3] ([Intel XE#3429]) -> [PASS][4] +31 other tests pass
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html

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


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

  * IGT: IGT_8129 -> IGTPW_12214

  IGTPW_12214: 12214
  IGT_8129: 363499a879fee5b9b7eda8acf7c772bce3423493 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2289-f3f406165a3d5f0fcb60be2060b7920ac385dc22: f3f406165a3d5f0fcb60be2060b7920ac385dc22

== Logs ==

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

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

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

* ✓ i915.CI.BAT: success for tests/gem_mmap_offset: Fix OOM hits (rev2)
  2024-11-28 11:16 [PATCH i-g-t v2 0/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
                   ` (2 preceding siblings ...)
  2024-11-28 13:56 ` ✓ Xe.CI.BAT: success for tests/gem_mmap_offset: Fix OOM hits (rev2) Patchwork
@ 2024-11-28 14:05 ` Patchwork
  2024-11-28 17:05 ` ✗ Xe.CI.Full: failure " Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-11-28 14:05 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: tests/gem_mmap_offset: Fix OOM hits (rev2)
URL   : https://patchwork.freedesktop.org/series/141643/
State : success

== Summary ==

CI Bug Log - changes from IGT_8129 -> IGTPW_12214
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (44 -> 43)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@dmabuf@all-tests@dma_fence_chain:
    - fi-bsw-nick:        [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html

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

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [PASS][7] -> [ABORT][8] ([i915#12061]) +1 other test abort
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-mtlp-8/igt@i915_selftest@live.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/bat-mtlp-8/igt@i915_selftest@live.html

  * igt@i915_selftest@live@gt_mocs:
    - bat-twl-2:          [PASS][9] -> [ABORT][10] ([i915#12919]) +1 other test abort
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/bat-twl-2/igt@i915_selftest@live@gt_mocs.html

  
#### Possible fixes ####

  * igt@dmabuf@all-tests:
    - bat-apl-1:          [INCOMPLETE][11] ([i915#12904]) -> [PASS][12] +1 other test pass
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-apl-1/igt@dmabuf@all-tests.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/bat-apl-1/igt@dmabuf@all-tests.html

  * igt@i915_module_load@load:
    - bat-twl-1:          [DMESG-WARN][13] ([i915#1982]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-twl-1/igt@i915_module_load@load.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/bat-twl-1/igt@i915_module_load@load.html

  * igt@i915_pm_rpm@module-reload:
    - bat-rpls-4:         [FAIL][15] ([i915#12903]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/bat-rpls-4/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live:
    - bat-twl-1:          [ABORT][17] ([i915#12919]) -> [PASS][18] +1 other test pass
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-twl-1/igt@i915_selftest@live.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/bat-twl-1/igt@i915_selftest@live.html
    - fi-skl-6600u:       [INCOMPLETE][19] ([i915#13050]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/fi-skl-6600u/igt@i915_selftest@live.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/fi-skl-6600u/igt@i915_selftest@live.html

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

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

  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
  [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
  [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
  [i915#13050]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13050
  [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8129 -> IGTPW_12214

  CI-20190529: 20190529
  CI_DRM_15757: f3f406165a3d5f0fcb60be2060b7920ac385dc22 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12214: 12214
  IGT_8129: 363499a879fee5b9b7eda8acf7c772bce3423493 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

* ✗ Xe.CI.Full: failure for tests/gem_mmap_offset: Fix OOM hits (rev2)
  2024-11-28 11:16 [PATCH i-g-t v2 0/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
                   ` (3 preceding siblings ...)
  2024-11-28 14:05 ` ✓ i915.CI.BAT: " Patchwork
@ 2024-11-28 17:05 ` Patchwork
  2024-11-29 15:06   ` Janusz Krzysztofik
  2024-11-28 17:16 ` ✗ i915.CI.Full: " Patchwork
  2024-12-02 13:07 ` ✓ i915.CI.Full: success " Patchwork
  6 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2024-11-28 17:05 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

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

== Series Details ==

Series: tests/gem_mmap_offset: Fix OOM hits (rev2)
URL   : https://patchwork.freedesktop.org/series/141643/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8129_full -> XEIGTPW_12214_full
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@core_setmaster@master-drop-set-root:
    - shard-bmg:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@core_setmaster@master-drop-set-root.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][2] +123 other tests dmesg-warn
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2:
    - shard-bmg:          [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2.html

  * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][5] +2 other tests dmesg-warn
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-2.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-5:
    - shard-dg2-set2:     NOTRUN -> [FAIL][6]
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-5.html

  * igt@kms_sequence@get-forked@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][7]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_sequence@get-forked@pipe-a-hdmi-a-3.html

  * igt@xe_drm_fdinfo@utilization-others-idle:
    - shard-lnl:          [PASS][8] -> [FAIL][9]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-7/igt@xe_drm_fdinfo@utilization-others-idle.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-3/igt@xe_drm_fdinfo@utilization-others-idle.html

  
#### Warnings ####

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][10] ([Intel XE#2136] / [Intel XE#2351]) -> [DMESG-WARN][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][12] ([Intel XE#2136]) -> [DMESG-WARN][13] +3 other tests dmesg-warn
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_plane@pixel-format:
    - shard-dg2-set2:     [SKIP][14] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][15] +1 other test dmesg-warn
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_plane@pixel-format.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_plane@pixel-format.html

  * igt@kms_sequence@get-forked:
    - shard-bmg:          [SKIP][16] ([Intel XE#2423]) -> [INCOMPLETE][17]
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_sequence@get-forked.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_sequence@get-forked.html

  * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
    - shard-bmg:          [DMESG-WARN][18] ([Intel XE#3467]) -> [DMESG-WARN][19]
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@hotreplug:
    - shard-bmg:          [PASS][20] -> [DMESG-WARN][21] ([Intel XE#3467] / [Intel XE#3468])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@core_hotunplug@hotreplug.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@core_hotunplug@hotreplug.html
    - shard-dg2-set2:     [PASS][22] -> [DMESG-WARN][23] ([Intel XE#3467] / [Intel XE#3468])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@core_hotunplug@hotreplug.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@core_hotunplug@hotreplug.html

  * igt@core_hotunplug@hotunplug-rescan:
    - shard-bmg:          [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1727] / [Intel XE#3468])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@core_hotunplug@hotunplug-rescan.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html

  * igt@fbdev@unaligned-read:
    - shard-bmg:          [PASS][26] -> [SKIP][27] ([Intel XE#2134]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@fbdev@unaligned-read.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@fbdev@unaligned-read.html

  * igt@kms_addfb_basic@bad-pitch-999:
    - shard-bmg:          [PASS][28] -> [SKIP][29] ([Intel XE#2423]) +76 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_addfb_basic@bad-pitch-999.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-999.html

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

  * igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [FAIL][31] ([Intel XE#3557])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html

  * igt@kms_async_flips@crc@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][32] ([Intel XE#3468]) +24 other tests dmesg-warn
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html

  * igt@kms_atomic@plane-invalid-params-fence@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][33] ([Intel XE#1727])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence@pipe-a-hdmi-a-6.html

  * igt@kms_atomic_interruptible@legacy-cursor:
    - shard-bmg:          [PASS][34] -> [DMESG-WARN][35] ([Intel XE#3468]) +15 other tests dmesg-warn
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_atomic_interruptible@legacy-cursor.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_atomic_interruptible@legacy-cursor.html

  * igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][36] ([Intel XE#1727] / [Intel XE#3468])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
    - shard-lnl:          [PASS][37] -> [FAIL][38] ([Intel XE#1701]) +1 other test fail
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
    - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#2136]) +13 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-bmg:          [PASS][41] -> [SKIP][42] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

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

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#1124]) +8 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [PASS][45] -> [SKIP][46] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2314] / [Intel XE#2894])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#787]) +60 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-b-dp-5:
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#787]) +418 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-b-dp-5.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][50] ([Intel XE#1727]) +3 other tests dmesg-warn
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2887]) +4 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html

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

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][53] -> [SKIP][54] ([Intel XE#2136])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

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

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

  * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2252])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2341])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][59] ([Intel XE#1178]) +2 other tests fail
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][60] ([Intel XE#3304])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html

  * igt@kms_content_protection@srm@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][61] ([Intel XE#1178]) +2 other tests fail
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html

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

  * igt@kms_cursor_crc@cursor-offscreen-max-size:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2320]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-max-size.html

  * igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][64] -> [INCOMPLETE][65] ([Intel XE#1727]) +1 other test incomplete
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-6.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-6.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][66] ([Intel XE#1727] / [Intel XE#3468])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#2286])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@torture-bo@all-pipes:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][69] ([Intel XE#2932] / [Intel XE#3184])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_cursor_legacy@torture-bo@all-pipes.html

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

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

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [PASS][72] -> [SKIP][73] ([Intel XE#3009])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_dp_aux_dev.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_dp_aux_dev.html

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

  * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
    - shard-bmg:          NOTRUN -> [FAIL][75] ([Intel XE#3321] / [Intel XE#3487]) +1 other test fail
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [DMESG-FAIL][76] ([Intel XE#3468])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [DMESG-FAIL][77] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4.html

  * igt@kms_flip@2x-plain-flip-interruptible:
    - shard-bmg:          [PASS][78] -> [SKIP][79] ([Intel XE#2316])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_flip@2x-plain-flip-interruptible.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-bmg:          [PASS][80] -> [SKIP][81] ([Intel XE#3007]) +6 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html

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

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][83] ([Intel XE#301] / [Intel XE#3486])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@a-dp4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][84] ([Intel XE#3321] / [Intel XE#3487])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@c-dp4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][85] ([Intel XE#301] / [Intel XE#3321] / [Intel XE#3487]) +1 other test fail
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][86] ([Intel XE#301]) +10 other tests fail
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
    - shard-bmg:          [PASS][87] -> [DMESG-WARN][88] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
    - shard-dg2-set2:     [PASS][89] -> [INCOMPLETE][90] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

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

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

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-4-to-linear:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][94] ([Intel XE#3468]) +2 other tests dmesg-fail
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-4-to-linear.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][95] ([Intel XE#2705]) +1 other test dmesg-fail
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][96] ([Intel XE#1727] / [Intel XE#3468])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#2311]) +12 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html

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

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#2136]) +30 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
    - shard-dg2-set2:     NOTRUN -> [SKIP][101] ([Intel XE#651])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#2313]) +14 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2312]) +2 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][104] ([Intel XE#616]) +2 other tests fail
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

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

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
    - shard-dg2-set2:     NOTRUN -> [SKIP][106] ([Intel XE#2763] / [Intel XE#455]) +8 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html

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

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

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [PASS][109] -> [FAIL][110] ([Intel XE#718])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#1439] / [Intel XE#3141])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-stress-extra-wait:
    - shard-bmg:          [PASS][112] -> [SKIP][113] ([Intel XE#2446]) +4 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_pm_rpm@modeset-stress-extra-wait.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_rpm@modeset-stress-extra-wait.html

  * igt@kms_properties@connector-properties-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#2423]) +21 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_properties@connector-properties-legacy.html

  * igt@kms_properties@crtc-properties-atomic:
    - shard-dg2-set2:     [PASS][115] -> [SKIP][116] ([Intel XE#2423] / [i915#2575])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@kms_properties@crtc-properties-atomic.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_properties@crtc-properties-atomic.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-bmg:          NOTRUN -> [SKIP][117] ([Intel XE#1489]) +3 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][118] ([Intel XE#2387])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@psr2-primary-blt:
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#2234] / [Intel XE#2850])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_psr@psr2-primary-blt.html

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

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2413])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [PASS][122] -> [SKIP][123] ([Intel XE#1435])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [PASS][124] -> [DMESG-WARN][125] ([Intel XE#1727]) +1 other test dmesg-warn
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#2426])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-lnl:          [PASS][127] -> [FAIL][128] ([Intel XE#899])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html

  * igt@kms_vblank@query-forked-busy@pipe-a-dp-2:
    - shard-bmg:          [PASS][129] -> [DMESG-FAIL][130] ([Intel XE#3468]) +2 other tests dmesg-fail
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_vblank@query-forked-busy@pipe-a-dp-2.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_vblank@query-forked-busy@pipe-a-dp-2.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][131] ([Intel XE#3468]) +5 other tests dmesg-warn
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-6.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][132] ([Intel XE#1499])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@max-min@pipe-a-edp-1:
    - shard-lnl:          [PASS][133] -> [FAIL][134] ([Intel XE#1522]) +1 other test fail
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_vrr@max-min@pipe-a-edp-1.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-8/igt@kms_vrr@max-min@pipe-a-edp-1.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#1091] / [Intel XE#2849])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

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

  * igt@xe_eudebug@basic-vm-access-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][137] ([Intel XE#1130]) +38 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_eudebug@basic-vm-access-userptr.html

  * igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#2905]) +8 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html

  * igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate:
    - shard-dg2-set2:     [PASS][139] -> [DMESG-WARN][140] ([Intel XE#1727])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate.html

  * igt@xe_exec_basic@many-execqueues-basic-defer-mmap:
    - shard-dg2-set2:     [PASS][141] -> [SKIP][142] ([Intel XE#1130])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_exec_basic@many-execqueues-basic-defer-mmap.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_exec_basic@many-execqueues-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][143] ([Intel XE#2322]) +2 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@many-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][144] ([Intel XE#288])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_exec_fault_mode@many-rebind-imm.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
    - shard-bmg:          [PASS][145] -> [DMESG-WARN][146] ([Intel XE#3343] / [Intel XE#3468])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html

  * igt@xe_live_ktest@xe_bo:
    - shard-bmg:          [PASS][147] -> [SKIP][148] ([Intel XE#1192])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_live_ktest@xe_bo.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_live_ktest@xe_bo.html

  * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][149] ([Intel XE#2229]) +1 other test skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html

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

  * igt@xe_module_load@reload:
    - shard-bmg:          [PASS][151] -> [FAIL][152] ([Intel XE#3625])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@xe_module_load@reload.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_module_load@reload.html

  * igt@xe_module_load@unload:
    - shard-dg2-set2:     [PASS][153] -> [DMESG-WARN][154] ([Intel XE#3467])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_module_load@unload.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_module_load@unload.html

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

  * igt@xe_pm@s4-mocs:
    - shard-bmg:          [PASS][156] -> [DMESG-WARN][157] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@xe_pm@s4-mocs.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@xe_pm@s4-mocs.html

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

  * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
    - shard-bmg:          [PASS][159] -> [SKIP][160] ([Intel XE#1130]) +210 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html

  
#### Possible fixes ####

  * igt@core_getversion@basic:
    - shard-dg2-set2:     [FAIL][161] ([Intel XE#3440]) -> [PASS][162]
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@core_getversion@basic.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@core_getversion@basic.html

  * igt@core_hotunplug@hotrebind:
    - shard-dg2-set2:     [SKIP][163] ([Intel XE#1885]) -> [PASS][164] +2 other tests pass
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@core_hotunplug@hotrebind.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@core_hotunplug@hotrebind.html
    - shard-bmg:          [SKIP][165] ([Intel XE#1885]) -> [PASS][166]
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@core_hotunplug@hotrebind.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@core_hotunplug@hotrebind.html

  * igt@core_setmaster@master-drop-set-root:
    - shard-dg2-set2:     [FAIL][167] ([Intel XE#3249]) -> [PASS][168]
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@core_setmaster@master-drop-set-root.html

  * igt@core_setmaster@master-drop-set-user:
    - shard-dg2-set2:     [FAIL][169] ([Intel XE#3339]) -> [PASS][170]
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@core_setmaster@master-drop-set-user.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@core_setmaster@master-drop-set-user.html

  * igt@fbdev@read:
    - shard-dg2-set2:     [SKIP][171] ([Intel XE#2134]) -> [PASS][172] +4 other tests pass
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@fbdev@read.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@fbdev@read.html

  * igt@kms_addfb_basic@unused-handle:
    - shard-bmg:          [SKIP][173] ([Intel XE#2423]) -> [PASS][174] +86 other tests pass
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_addfb_basic@unused-handle.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_addfb_basic@unused-handle.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-dg2-set2:     [SKIP][175] ([Intel XE#2423] / [i915#2575]) -> [PASS][176] +358 other tests pass
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
    - shard-lnl:          [FAIL][177] ([Intel XE#1701]) -> [PASS][178] +1 other test pass
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-lnl:          [FAIL][179] ([Intel XE#1426]) -> [PASS][180] +1 other test pass
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-bmg:          [DMESG-FAIL][181] ([Intel XE#3468]) -> [PASS][182] +5 other tests pass
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-bmg:          [SKIP][185] ([Intel XE#2136]) -> [PASS][186] +13 other tests pass
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1:
    - shard-lnl:          [FAIL][187] ([Intel XE#2577]) -> [PASS][188] +1 other test pass
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-1/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][189] ([Intel XE#2291]) -> [PASS][190]
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_dp_aux_dev:
    - shard-dg2-set2:     [SKIP][191] ([Intel XE#2423]) -> [PASS][192] +3 other tests pass
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_dp_aux_dev.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_dp_aux_dev.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-bmg:          [SKIP][193] ([Intel XE#2316]) -> [PASS][194] +1 other test pass
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

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

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][197] ([Intel XE#2597]) -> [PASS][198]
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
    - shard-bmg:          [INCOMPLETE][199] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][200]
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html

  * igt@kms_frontbuffer_tracking@basic:
    - shard-dg2-set2:     [SKIP][201] ([Intel XE#2351]) -> [PASS][202]
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][203] ([Intel XE#2136]) -> [PASS][204] +109 other tests pass
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_pm_rpm@cursor:
    - shard-bmg:          [SKIP][205] ([Intel XE#2446]) -> [PASS][206] +2 other tests pass
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_rpm@cursor.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_pm_rpm@cursor.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg2-set2:     [SKIP][207] ([Intel XE#2446]) -> [PASS][208] +11 other tests pass
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01:
    - shard-bmg:          [DMESG-WARN][209] ([Intel XE#3468]) -> [PASS][210] +12 other tests pass
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01.html

  * igt@xe_exec_balancer@once-parallel-rebind:
    - shard-dg2-set2:     [SKIP][211] ([Intel XE#1130]) -> [PASS][212] +635 other tests pass
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html

  * igt@xe_exec_basic@many-execqueues-null-defer-bind:
    - shard-bmg:          [SKIP][213] ([Intel XE#1130]) -> [PASS][214] +182 other tests pass
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_basic@many-execqueues-null-defer-bind.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_exec_basic@many-execqueues-null-defer-bind.html

  * igt@xe_live_ktest@xe_bo:
    - shard-lnl:          [SKIP][215] ([Intel XE#1192]) -> [PASS][216]
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-7/igt@xe_live_ktest@xe_bo.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-1/igt@xe_live_ktest@xe_bo.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-bmg:          [SKIP][217] ([Intel XE#2229]) -> [PASS][218]
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_module_load@unload:
    - shard-bmg:          [DMESG-WARN][219] -> [PASS][220]
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_module_load@unload.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_module_load@unload.html

  * igt@xe_oa@oa-regs-whitelisted:
    - shard-lnl:          [FAIL][221] ([Intel XE#2514]) -> [PASS][222]
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-1/igt@xe_oa@oa-regs-whitelisted.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-dg2-set2:     [DMESG-WARN][223] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][224]
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_pm@s2idle-basic-exec.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_query@query-gt-list:
    - shard-dg2-set2:     [DMESG-WARN][225] ([Intel XE#1727]) -> [PASS][226]
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_query@query-gt-list.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_query@query-gt-list.html

  * igt@xe_tlb@basic-tlb:
    - shard-lnl:          [CRASH][227] ([Intel XE#3212]) -> [PASS][228]
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-8/igt@xe_tlb@basic-tlb.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-3/igt@xe_tlb@basic-tlb.html

  * igt@xe_vm@large-userptr-split-misaligned-binds-2097152:
    - shard-bmg:          [DMESG-WARN][229] ([Intel XE#1727]) -> [PASS][230]
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_vm@large-userptr-split-misaligned-binds-2097152.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_vm@large-userptr-split-misaligned-binds-2097152.html

  
#### Warnings ####

  * igt@core_hotunplug@hotunplug-rescan:
    - shard-dg2-set2:     [SKIP][231] ([Intel XE#1885]) -> [INCOMPLETE][232] ([Intel XE#1727] / [Intel XE#3468])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html

  * igt@core_hotunplug@unplug-rescan:
    - shard-dg2-set2:     [SKIP][233] ([Intel XE#1885]) -> [DMESG-WARN][234] ([Intel XE#3468])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@core_hotunplug@unplug-rescan.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@core_hotunplug@unplug-rescan.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2-set2:     [SKIP][235] ([Intel XE#2423] / [i915#2575]) -> [SKIP][236] ([Intel XE#623])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - shard-bmg:          [SKIP][237] ([Intel XE#2423]) -> [SKIP][238] ([Intel XE#2233])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_atomic@plane-invalid-params-fence:
    - shard-dg2-set2:     [SKIP][239] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][240] ([Intel XE#1727])
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_atomic@plane-invalid-params-fence.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence.html

  * igt@kms_atomic_interruptible@legacy-setmode:
    - shard-dg2-set2:     [SKIP][241] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][242] ([Intel XE#1727] / [Intel XE#3468])
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_atomic_interruptible@legacy-setmode.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_atomic_interruptible@legacy-setmode.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
    - shard-bmg:          [DMESG-FAIL][243] ([Intel XE#3468]) -> [SKIP][244] ([Intel XE#2136])
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][245] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][246] ([Intel XE#316]) +6 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          [SKIP][247] ([Intel XE#2327]) -> [SKIP][248] ([Intel XE#2136]) +3 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][249] ([Intel XE#2136]) -> [SKIP][250] ([Intel XE#316]) +9 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-270.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-bmg:          [SKIP][251] ([Intel XE#2136]) -> [SKIP][252] ([Intel XE#2327]) +2 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-90.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-bmg:          [SKIP][253] ([Intel XE#2136]) -> [SKIP][254] ([Intel XE#2136] / [Intel XE#2231]) +7 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][255] ([Intel XE#2136]) -> [SKIP][256] ([Intel XE#610]) +1 other test skip
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
    - shard-bmg:          [SKIP][257] ([Intel XE#2136]) -> [SKIP][258] ([Intel XE#610])
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-bmg:          [SKIP][259] ([Intel XE#1124]) -> [SKIP][260] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          [SKIP][261] ([Intel XE#1124]) -> [SKIP][262] ([Intel XE#2136]) +10 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][263] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][264] ([Intel XE#1124]) +16 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][265] ([Intel XE#2136]) -> [SKIP][266] ([Intel XE#1124]) +32 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     [SKIP][267] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][268] ([Intel XE#619]) +1 other test skip
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][269] ([Intel XE#607]) -> [SKIP][270] ([Intel XE#2136]) +1 other test skip
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][271] ([Intel XE#2136]) -> [SKIP][272] ([Intel XE#1124]) +11 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][273] ([Intel XE#2423] / [i915#2575]) -> [SKIP][274] ([Intel XE#367]) +16 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          [SKIP][275] ([Intel XE#2423]) -> [SKIP][276] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          [SKIP][277] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][278] ([Intel XE#2423]) +1 other test skip
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][279] ([Intel XE#2423] / [i915#2575]) -> [SKIP][280] ([Intel XE#2191]) +5 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][281] ([Intel XE#2423]) -> [SKIP][282] ([Intel XE#367]) +2 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          [SKIP][283] ([Intel XE#367]) -> [SKIP][284] ([Intel XE#2423]) +3 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [SKIP][285] ([Intel XE#2136]) -> [DMESG-WARN][286] ([Intel XE#1727])
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][287] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][288] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][289] ([Intel XE#2136]) -> [SKIP][290] ([Intel XE#455] / [Intel XE#787]) +47 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][291] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][292] ([Intel XE#2136])
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][293] ([Intel XE#2136]) -> [SKIP][294] ([Intel XE#3442]) +1 other test skip
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-bmg:          [SKIP][295] ([Intel XE#2136]) -> [SKIP][296] ([Intel XE#3432]) +2 other tests skip
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-bmg:          [SKIP][297] ([Intel XE#3432]) -> [SKIP][298] ([Intel XE#2136]) +1 other test skip
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          [SKIP][299] ([Intel XE#2887]) -> [SKIP][300] ([Intel XE#2136]) +17 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][301] ([Intel XE#2136]) -> [SKIP][302] ([Intel XE#2907]) +6 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][303] ([Intel XE#2887]) -> [SKIP][304] ([Intel XE#2136] / [Intel XE#2231])
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          [SKIP][305] ([Intel XE#2136]) -> [SKIP][306] ([Intel XE#2887]) +15 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#2652] / [Intel XE#787]) +1 other test skip
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     [SKIP][309] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][310] ([Intel XE#314])
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-bmg:          [SKIP][311] ([Intel XE#2423]) -> [SKIP][312] ([Intel XE#2325]) +3 other tests skip
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_chamelium_color@ctm-0-25.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-bmg:          [SKIP][313] ([Intel XE#2325]) -> [SKIP][314] ([Intel XE#2423]) +1 other test skip
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-bmg:          [SKIP][315] ([Intel XE#2325]) -> [SKIP][316] ([Intel XE#3007])
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_chamelium_color@ctm-green-to-red.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2-set2:     [SKIP][317] ([Intel XE#2423] / [i915#2575]) -> [SKIP][318] ([Intel XE#306]) +5 other tests skip
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_chamelium_color@degamma.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          [SKIP][319] ([Intel XE#2423]) -> [SKIP][320] ([Intel XE#2252]) +10 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-bmg:          [SKIP][321] ([Intel XE#2252]) -> [SKIP][322] ([Intel XE#3007]) +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_chamelium_frames@dp-frame-dump.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-bmg:          [SKIP][323] ([Intel XE#2252]) -> [SKIP][324] ([Intel XE#2423]) +9 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-storm.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [SKIP][326] ([Intel XE#373]) +43 other tests skip
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [SKIP][327] ([Intel XE#2423]) -> [FAIL][328] ([Intel XE#1178])
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-bmg:          [SKIP][329] ([Intel XE#2390]) -> [SKIP][330] ([Intel XE#2423])
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-0.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2-set2:     [SKIP][331] ([Intel XE#2423] / [i915#2575]) -> [SKIP][332] ([Intel XE#307]) +3 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
    - shard-bmg:          [SKIP][333] ([Intel XE#2423]) -> [SKIP][334] ([Intel XE#2390])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@lic-type-0:
    - shard-dg2-set2:     [SKIP][335] ([Intel XE#2423] / [i915#2575]) -> [FAIL][336] ([Intel XE#1178]) +3 other tests fail
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_content_protection@lic-type-0.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [FAIL][337] ([Intel XE#1178]) -> [SKIP][338] ([Intel XE#2423])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_content_protection@srm.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg2-set2:     [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [SKIP][340] ([Intel XE#308]) +6 other tests skip
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          [SKIP][341] ([Intel XE#2320]) -> [SKIP][342] ([Intel XE#2423]) +4 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_crc@cursor-random-64x21:
    - shard-bmg:          [SKIP][343] ([Intel XE#2320]) -> [SKIP][344] ([Intel XE#3007])
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_cursor_crc@cursor-random-64x21.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_cursor_crc@cursor-random-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-bmg:          [SKIP][345] ([Intel XE#2423]) -> [SKIP][346] ([Intel XE#2320]) +2 other tests skip
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-bmg:          [SKIP][347] ([Intel XE#2423]) -> [SKIP][348] ([Intel XE#2321])
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-bmg:          [SKIP][349] ([Intel XE#2321]) -> [SKIP][350] ([Intel XE#2423]) +1 other test skip
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-dg2-set2:     [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][352] ([Intel XE#1727] / [Intel XE#3468])
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_edge_walk@256x256-left-edge:
    - shard-bmg:          [SKIP][353] ([Intel XE#2423]) -> [DMESG-FAIL][354] ([Intel XE#3468]) +1 other test dmesg-fail
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_edge_walk@256x256-left-edge.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_cursor_edge_walk@256x256-left-edge.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-bmg:          [DMESG-WARN][355] ([Intel XE#3468]) -> [SKIP][356] ([Intel XE#2291])
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2-set2:     [SKIP][357] ([Intel XE#2423] / [i915#2575]) -> [SKIP][358] ([Intel XE#323]) +1 other test skip
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-bmg:          [SKIP][359] ([Intel XE#2423]) -> [SKIP][360] ([Intel XE#2286])
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-bmg:          [SKIP][361] ([Intel XE#2286]) -> [SKIP][362] ([Intel XE#2423]) +1 other test skip
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-bmg:          [SKIP][363] ([Intel XE#2286]) -> [SKIP][364] ([Intel XE#3007])
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size:
    - shard-bmg:          [DMESG-WARN][365] ([Intel XE#3468]) -> [SKIP][366] ([Intel XE#2423]) +4 other tests skip
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-bmg:          [INCOMPLETE][367] ([Intel XE#1727] / [Intel XE#3226]) -> [SKIP][368] ([Intel XE#2423])
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][369] ([Intel XE#2423]) -> [SKIP][370] ([Intel XE#2291])
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-bmg:          [DMESG-WARN][371] ([Intel XE#877]) -> [SKIP][372] ([Intel XE#2291])
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@torture-bo:
    - shard-dg2-set2:     [SKIP][373] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][374] ([Intel XE#2932] / [Intel XE#3184])
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_cursor_legacy@torture-bo.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_cursor_legacy@torture-bo.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          [FAIL][375] ([Intel XE#2141]) -> [SKIP][376] ([Intel XE#2136])
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][377] ([Intel XE#1508]) -> [SKIP][378] ([Intel XE#2136]) +1 other test skip
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dsc@dsc-basic:
    - shard-dg2-set2:     [SKIP][379] ([Intel XE#2351]) -> [SKIP][380] ([Intel XE#455])
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_dsc@dsc-basic.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-bmg:          [SKIP][381] ([Intel XE#2136]) -> [SKIP][382] ([Intel XE#2244]) +3 other tests skip
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          [SKIP][383] ([Intel XE#2136]) -> [FAIL][384] ([Intel XE#1695])
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     [SKIP][385] ([Intel XE#2136]) -> [SKIP][386] ([Intel XE#776]) +1 other test skip
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_fbcon_fbt@psr.html
    - shard-bmg:          [SKIP][387] ([Intel XE#776]) -> [SKIP][388] ([Intel XE#2136])
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_fbcon_fbt@psr.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_fbcon_fbt@psr.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          [SKIP][389] ([Intel XE#2136]) -> [SKIP][390] ([Intel XE#776])
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     [SKIP][391] ([Intel XE#2423] / [i915#2575]) -> [SKIP][392] ([Intel XE#701])
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_feature_discovery@chamelium.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          [SKIP][393] ([Intel XE#2373]) -> [SKIP][394] ([Intel XE#3007])
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_feature_discovery@display-3x.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_feature_discovery@display-3x.html

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

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

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][399] ([Intel XE#2423] / [i915#2575]) -> [SKIP][400] ([Intel XE#1135])
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_feature_discovery@psr1.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          [SKIP][401] ([Intel XE#2374]) -> [SKIP][402] ([Intel XE#3007])
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_feature_discovery@psr2.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-bmg:          [DMESG-WARN][403] ([Intel XE#3468]) -> [SKIP][404] ([Intel XE#3007])
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [SKIP][405] ([Intel XE#2316]) -> [SKIP][406] ([Intel XE#2423])
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [FAIL][407] ([Intel XE#2882]) -> [SKIP][408] ([Intel XE#2316])
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-dg2-set2:     [SKIP][409] ([Intel XE#2423] / [i915#2575]) -> [DMESG-FAIL][410] ([Intel XE#1727] / [Intel XE#3468])
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-bmg:          [SKIP][411] ([Intel XE#2423]) -> [SKIP][412] ([Intel XE#2316]) +3 other tests skip
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-dg2-set2:     [SKIP][413] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][414] ([Intel XE#1727]) +1 other test dmesg-warn
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-dg2-set2:     [SKIP][415] ([Intel XE#2423] / [i915#2575]) -> [FAIL][416] ([Intel XE#301]) +1 other test fail
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-panning:
    - shard-bmg:          [SKIP][417] ([Intel XE#2423]) -> [DMESG-WARN][418] ([Intel XE#3468]) +1 other test dmesg-warn
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip@flip-vs-panning.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_flip@flip-vs-panning.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-bmg:          [SKIP][419] ([Intel XE#2136]) -> [SKIP][420] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
    - shard-bmg:          [SKIP][423] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][424] ([Intel XE#2136]) +6 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2-set2:     [SKIP][425] ([Intel XE#2136]) -> [SKIP][426] ([Intel XE#455]) +18 other tests skip
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_tiling@flip-change-tiling:
    - shard-bmg:          [SKIP][427] ([Intel XE#2136]) -> [INCOMPLETE][428] ([Intel XE#1727] / [Intel XE#3468])
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling.html

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

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][431] ([Intel XE#2136]) -> [SKIP][432] ([Intel XE#2311]) +22 other tests skip
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#2312]) +8 other tests skip
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][435] ([Intel XE#2136]) -> [SKIP][436] ([Intel XE#651]) +88 other tests skip
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][437] ([Intel XE#2312]) -> [SKIP][438] ([Intel XE#2311]) +5 other tests skip
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-dg2-set2:     [SKIP][439] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][440] ([Intel XE#651]) +42 other tests skip
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [FAIL][441] ([Intel XE#2333]) -> [DMESG-FAIL][442] ([Intel XE#3468]) +1 other test dmesg-fail
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
    - shard-bmg:          [FAIL][443] ([Intel XE#2333]) -> [SKIP][444] ([Intel XE#2136] / [Intel XE#2231])
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          [FAIL][445] ([Intel XE#2333]) -> [SKIP][446] ([Intel XE#2136]) +10 other tests skip
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][447] ([Intel XE#2136]) -> [FAIL][448] ([Intel XE#2333]) +13 other tests fail
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [FAIL][449] ([Intel XE#2333]) -> [SKIP][450] ([Intel XE#2312]) +2 other tests skip
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][451] ([Intel XE#2312]) -> [DMESG-FAIL][452] ([Intel XE#3468])
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-rte:
    - shard-dg2-set2:     [SKIP][453] ([Intel XE#2136]) -> [ABORT][454] ([Intel XE#3468])
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-rte.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][455] ([Intel XE#2136]) -> [DMESG-FAIL][456] ([Intel XE#3468]) +3 other tests dmesg-fail
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][457] ([Intel XE#2312]) -> [FAIL][458] ([Intel XE#2333])
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-dg2-set2:     [SKIP][459] ([Intel XE#2136]) -> [INCOMPLETE][460] ([Intel XE#1727] / [Intel XE#3468])
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-linear:
    - shard-bmg:          [DMESG-FAIL][461] ([Intel XE#3468]) -> [FAIL][462] ([Intel XE#2333])
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-bmg:          [SKIP][463] ([Intel XE#2352]) -> [SKIP][464] ([Intel XE#2136])
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
    - shard-bmg:          [SKIP][465] ([Intel XE#2311]) -> [SKIP][466] ([Intel XE#2312]) +7 other tests skip
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][467] ([Intel XE#2312]) -> [SKIP][468] ([Intel XE#2136]) +3 other tests skip
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][469] ([Intel XE#2311]) -> [SKIP][470] ([Intel XE#2136]) +24 other tests skip
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     [SKIP][471] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][472] ([Intel XE#658]) +2 other tests skip
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][473] ([Intel XE#2136]) -> [SKIP][474] ([Intel XE#653]) +92 other tests skip
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][475] ([Intel XE#2313]) -> [SKIP][476] ([Intel XE#2136]) +22 other tests skip
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][477] ([Intel XE#2313]) -> [SKIP][478] ([Intel XE#2312]) +3 other tests skip
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
    - shard-bmg:          [SKIP][479] ([Intel XE#2313]) -> [SKIP][480] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html

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

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     [SKIP][483] ([Intel XE#2136]) -> [SKIP][484] ([Intel XE#1158])
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
    - shard-bmg:          [SKIP][485] ([Intel XE#2350]) -> [SKIP][486] ([Intel XE#2136])
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][487] ([Intel XE#2136]) -> [SKIP][488] ([Intel XE#2313]) +21 other tests skip
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

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

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][491] ([Intel XE#2312]) -> [SKIP][492] ([Intel XE#2313]) +5 other tests skip
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-bmg:          [SKIP][493] ([Intel XE#2502]) -> [SKIP][494] ([Intel XE#2423])
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_getfb@getfb-reject-ccs.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html
    - shard-dg2-set2:     [SKIP][495] ([Intel XE#2423] / [i915#2575]) -> [SKIP][496] ([Intel XE#605])
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html

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

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          [SKIP][499] ([Intel XE#346]) -> [SKIP][500] ([Intel XE#2136])
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-dg2-set2:     [SKIP][501] ([Intel XE#2136]) -> [SKIP][502] ([Intel XE#346]) +1 other test skip
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2-set2:     [SKIP][503] ([Intel XE#2136]) -> [SKIP][504] ([Intel XE#2925])
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-dg2-set2:     [SKIP][505] ([Intel XE#2136]) -> [SKIP][506] ([Intel XE#2927]) +1 other test skip
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          [SKIP][507] ([Intel XE#2501]) -> [SKIP][508] ([Intel XE#2423])
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-dg2-set2:     [SKIP][509] ([Intel XE#2423] / [i915#2575]) -> [SKIP][510] ([Intel XE#356])
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          [SKIP][511] ([Intel XE#2423]) -> [SKIP][512] ([Intel XE#2486])
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_panel_fitting@legacy.html
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane@planar-pixel-format-settings:
    - shard-bmg:          [SKIP][513] ([Intel XE#2423]) -> [SKIP][514] ([Intel XE#3007]) +3 other tests skip
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_plane@planar-pixel-format-settings.html
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_plane@planar-pixel-format-settings.html

  * igt@kms_plane_cursor@primary:
    - shard-dg2-set2:     [SKIP][515] ([Intel XE#2423] / [i915#2575]) -> [FAIL][516] ([Intel XE#616])
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_plane_cursor@primary.html
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_plane_cursor@primary.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2-set2:     [SKIP][517] ([Intel XE#2423] / [i915#2575]) -> [FAIL][518] ([Intel XE#361])
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-bmg:          [SKIP][519] ([Intel XE#2763]) -> [SKIP][520] ([Intel XE#2423]) +2 other tests skip
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][521] ([Intel XE#2423] / [i915#2575]) -> [SKIP][522] ([Intel XE#2763] / [Intel XE#455]) +8 other tests skip
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
    - shard-bmg:          [SKIP][523] ([Intel XE#2423]) -> [SKIP][524] ([Intel XE#2763]) +3 other tests skip
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
    - shard-bmg:          [SKIP][525] ([Intel XE#2763]) -> [SKIP][526] ([Intel XE#3007])
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          [SKIP][527] ([Intel XE#2136]) -> [SKIP][528] ([Intel XE#870])
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          [SKIP][529] ([Intel XE#2938]) -> [SKIP][530] ([Intel XE#2136])
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-dg2-set2:     [SKIP][531] ([Intel XE#2136]) -> [SKIP][532] ([Intel XE#2938])
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          [SKIP][533] ([Intel XE#870]) -> [SKIP][534] ([Intel XE#2136])
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_pm_backlight@fade.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2-set2:     [SKIP][535] ([Intel XE#2136]) -> [SKIP][536] ([Intel XE#870]) +2 other tests skip
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2-set2:     [SKIP][537] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][538] ([Intel XE#1122])
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
    - shard-bmg:          [SKIP][539] ([Intel XE#2136]) -> [SKIP][540] ([Intel XE#2391])
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2-set2:     [SKIP][541] ([Intel XE#2136]) -> [SKIP][542] ([Intel XE#3309])
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2-set2:     [SKIP][543] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][544] ([Intel XE#908])
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html
    - shard-bmg:          [SKIP][545] ([Intel XE#2136]) -> [FAIL][546] ([Intel XE#1430])
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          [SKIP][547] ([Intel XE#2392]) -> [SKIP][548] ([Intel XE#2136]) +1 other test skip
   [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_pm_dc@dc6-psr.html
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-dg2-set2:     [SKIP][549] ([Intel XE#2136]) -> [SKIP][550] ([Intel XE#908])
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
    - shard-bmg:          [SKIP][551] ([Intel XE#2505]) -> [SKIP][552] ([Intel XE#2136])
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          [SKIP][553] ([Intel XE#2499]) -> [SKIP][554] ([Intel XE#2136] / [Intel XE#2231])
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-bmg:          [SKIP][555] ([Intel XE#2446]) -> [SKIP][556] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html
   [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@drm-resources-equal:
    - shard-dg2-set2:     [SKIP][557] ([Intel XE#2446]) -> [DMESG-FAIL][558] ([Intel XE#1727] / [Intel XE#3468])
   [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_pm_rpm@drm-resources-equal.html
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_pm_rpm@drm-resources-equal.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg2-set2:     [SKIP][559] ([Intel XE#2446]) -> [DMESG-WARN][560] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-dg2-set2:     [SKIP][561] ([Intel XE#2446]) -> [DMESG-WARN][562] ([Intel XE#3468])
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-dg2-set2:     [SKIP][563] ([Intel XE#2446]) -> [ABORT][564] ([Intel XE#3468])
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-bmg:          [INCOMPLETE][565] ([Intel XE#2864]) -> [SKIP][566] ([Intel XE#2446])
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_pm_rpm@universal-planes-dpms.html
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          [SKIP][567] ([Intel XE#2136]) -> [SKIP][568] ([Intel XE#1489]) +5 other tests skip
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     [SKIP][569] ([Intel XE#2136]) -> [SKIP][570] ([Intel XE#1489]) +33 other tests skip
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][571] ([Intel XE#1489]) -> [SKIP][572] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
    - shard-bmg:          [SKIP][573] ([Intel XE#1489]) -> [SKIP][574] ([Intel XE#2136]) +6 other tests skip
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-dg2-set2:     [SKIP][575] ([Intel XE#1489]) -> [SKIP][576] ([Intel XE#2136])
   [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
   [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     [SKIP][577] ([Intel XE#2136]) -> [SKIP][578] ([Intel XE#1122]) +2 other tests skip
   [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html
   [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-pr-cursor-blt:
    - shard-bmg:          [SKIP][579] ([Intel XE#2136]) -> [SKIP][580] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
   [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_psr@fbc-pr-cursor-blt.html
   [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_psr@fbc-pr-cursor-blt.html

  * igt@kms_psr@fbc-pr-no-drrs:
    - shard-dg2-set2:     [SKIP][581] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][582] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip
   [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_psr@fbc-pr-no-drrs.html
   [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_psr@fbc-pr-no-drrs.html

  * igt@kms_psr@fbc-psr2-cursor-blt:
    - shard-bmg:          [SKIP][583] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][584] ([Intel XE#2136] / [Intel XE#2231])
   [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_psr@fbc-psr2-cursor-blt.html
   [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-blt.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-dg2-set2:     [SKIP][585] ([Intel XE#2136]) -> [SKIP][586] ([Intel XE#2850] / [Intel XE#929]) +44 other tests skip
   [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
   [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-dg2-set2:     [SKIP][587] ([Intel XE#2351]) -> [SKIP][588] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_psr@psr-sprite-plane-onoff.html
   [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_psr@psr2-no-drrs:
    - shard-bmg:          [SKIP][589] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][590] ([Intel XE#2136]) +13 other tests skip
   [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_psr@psr2-no-drrs.html
   [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_psr@psr2-no-drrs.html

  * igt@kms_psr@psr2-primary-render:
    - shard-bmg:          [SKIP][591] ([Intel XE#2136]) -> [SKIP][592] ([Intel XE#2234])
   [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_psr@psr2-primary-render.html
   [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_psr@psr2-primary-render.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-dg2-set2:     [SKIP][593] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][594] ([Intel XE#2939])
   [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg2-set2:     [SKIP][595] ([Intel XE#2136]) -> [SKIP][596] ([Intel XE#2939])
   [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          [SKIP][597] ([Intel XE#2423]) -> [SKIP][598] ([Intel XE#3414])
   [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html
   [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     [SKIP][599] ([Intel XE#2423] / [i915#2575]) -> [SKIP][600] ([Intel XE#3414]) +8 other tests skip
   [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][601] ([Intel XE#2423] / [i915#2575]) -> [SKIP][602] ([Intel XE#1127]) +2 other tests skip
   [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-bmg:          [SKIP][603] ([Intel XE#2413]) -> [SKIP][604] ([Intel XE#2423])
   [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full.html
   [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_scaling_modes@scaling-mode-none:
    - shard-bmg:          [SKIP][605] ([Intel XE#2423]) -> [SKIP][606] ([Intel XE#2413])
   [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-none.html
   [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-none.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          [SKIP][607] ([Intel XE#2423]) -> [SKIP][608] ([Intel XE#1435])
   [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
   [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [SKIP][609] ([Intel XE#2423] / [i915#2575]) -> [SKIP][610] ([Intel XE#362]) +1 other test skip
   [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
   [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][611] ([Intel XE#2426]) -> [SKIP][612] ([Intel XE#2423])
   [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vblank@query-forked:
    - shard-bmg:          [DMESG-FAIL][613] ([Intel XE#3468]) -> [SKIP][614] ([Intel XE#2423]) +1 other test skip
   [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_vblank@query-forked.html
   [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_vblank@query-forked.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-dg2-set2:     [SKIP][615] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][616] ([Intel XE#3468]) +1 other test dmesg-warn
   [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          [SKIP][617] ([Intel XE#2423]) -> [SKIP][618] ([Intel XE#1499]) +1 other test skip
   [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_vrr@flip-basic.html
   [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][619] ([Intel XE#1499]) -> [SKIP][620] ([Intel XE#2423]) +2 other tests skip
   [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_vrr@flip-suspend.html
   [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][621] ([Intel XE#2423] / [i915#2575]) -> [SKIP][622] ([Intel XE#455]) +33 other tests skip
   [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_vrr@flipline.html
   [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_vrr@flipline.html

  * igt@kms_vrr@lobf:
    - shard-dg2-set2:     [SKIP][623] ([Intel XE#2423] / [i915#2575]) -> [SKIP][624] ([Intel XE#2168]) +1 other test skip
   [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_vrr@lobf.html
   [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_vrr@lobf.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-dg2-set2:     [SKIP][625] ([Intel XE#2423] / [i915#2575]) -> [SKIP][626] ([Intel XE#756]) +3 other tests skip
   [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
   [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
    - shard-bmg:          [SKIP][627] ([Intel XE#756]) -> [SKIP][628] ([Intel XE#2423])
   [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
   [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-bmg:          [SKIP][629] ([Intel XE#2423]) -> [SKIP][630] ([Intel XE#756]) +1 other test skip
   [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_writeback@writeback-invalid-parameters.html
   [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2-set2:     [SKIP][631] ([Intel XE#2423] / [i915#2575]) -> [SKIP][632] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
   [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

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

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][635] ([Intel XE#1130]) -> [SKIP][636] ([Intel XE#1123]) +2 other tests skip
   [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
   [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][637] ([Intel XE#1130]) -> [SKIP][638] ([Intel XE#1126]) +3 other tests skip
   [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html
   [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_eudebug@basic-exec-queues-enable:
    - shard-bmg:          [SKIP][639] ([Intel XE#1130]) -> [SKIP][640] ([Intel XE#2905]) +10 other tests skip
   [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_eudebug@basic-exec-queues-enable.html
   [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_eudebug@basic-exec-queues-enable.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          [SKIP][641] ([Intel XE#2905]) -> [SKIP][642] ([Intel XE#1130]) +13 other tests skip
   [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
   [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_eudebug_online@basic-breakpoint:
    - shard-dg2-set2:     [SKIP][643] ([Intel XE#1130]) -> [SKIP][644] ([Intel XE#2905]) +46 other tests skip
   [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_eudebug_online@basic-breakpoint.html
   [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_eudebug_online@basic-breakpoint.html

  * igt@xe_evict@evict-beng-large:
    - shard-bmg:          [DMESG-WARN][645] ([Intel XE#3468]) -> [SKIP][646] ([Intel XE#1130])
   [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@xe_evict@evict-beng-large.html
   [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_evict@evict-beng-large.html

  * igt@xe_evict@evict-beng-large-multi-vm-cm:
    - shard-dg2-set2:     [SKIP][647] ([Intel XE#1130]) -> [FAIL][648] ([Intel XE#1600])
   [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html
   [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html

  * igt@xe_evict@evict-beng-mixed-many-threads-large:
    - shard-dg2-set2:     [SKIP][649] ([Intel XE#1130]) -> [INCOMPLETE][650] ([Intel XE#1473]) +1 other test incomplete
   [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html
   [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][651] ([Intel XE#1473]) -> [SKIP][652] ([Intel XE#1130])
   [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-large-multi-vm-cm:
    - shard-bmg:          [FAIL][653] ([Intel XE#2364]) -> [SKIP][654] ([Intel XE#1130])
   [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@xe_evict@evict-large-multi-vm-cm.html
   [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][655] ([Intel XE#1473] / [Intel XE#3468]) -> [TIMEOUT][656] ([Intel XE#1473])
   [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
   [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
    - shard-dg2-set2:     [SKIP][657] ([Intel XE#1130]) -> [TIMEOUT][658] ([Intel XE#1473])
   [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
   [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate:
    - shard-bmg:          [SKIP][659] ([Intel XE#1130]) -> [DMESG-WARN][660] ([Intel XE#1727]) +1 other test dmesg-warn
   [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate.html
   [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate.html

  * igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind:
    - shard-bmg:          [SKIP][661] ([Intel XE#1130]) -> [DMESG-WARN][662] ([Intel XE#3468]) +1 other test dmesg-warn
   [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind.html
   [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
    - shard-bmg:          [SKIP][663] ([Intel XE#1130]) -> [SKIP][664] ([Intel XE#2322]) +12 other tests skip
   [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
   [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
    - shard-bmg:          [SKIP][665] ([Intel XE#2322]) -> [SKIP][666] ([Intel XE#1130]) +12 other tests skip
   [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
   [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html

  * igt@xe_exec_basic@once-rebind:
    - shard-dg2-set2:     [SKIP][667] ([Intel XE#1130]) -> [DMESG-WARN][668] ([Intel XE#1727]) +6 other tests dmesg-warn
   [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_exec_basic@once-rebind.html
   [668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_exec_basic@once-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm:
    - shard-dg2-set2:     [SKIP][669] ([Intel XE#288]) -> [SKIP][670] ([Intel XE#1130])
   [669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html
   [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     [SKIP][671] ([Intel XE#1130]) -> [SKIP][672] ([Intel XE#288]) +108 other tests skip
   [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
   [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
    - shard-dg2-set2:     [SKIP][673] ([Intel XE#1130]) -> [SKIP][674] ([Intel XE#2360]) +2 other tests skip
   [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
   [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html

  * igt@xe_exec_threads@threads-hang-shared-vm-rebind:
    - shard-dg2-set2:     [SKIP][675] ([Intel XE#1130]) -> [DMESG-WARN][676] ([Intel XE#1727] / [Intel XE#358]) +1 other test dmesg-warn
   [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html
   [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-bmg:          [DMESG-WARN][677] ([Intel XE#3467] / [Intel XE#3468]) -> [SKIP][678] ([Intel XE#1130])
   [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
   [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
    - shard-dg2-set2:     [SKIP][679] ([Intel XE#1130]) -> [DMESG-WARN][680] ([Intel XE#3343]) +2 other tests dmesg-warn
   [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
   [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
    - shard-bmg:          [DMESG-WARN][681] ([Intel XE#3467]) -> [SKIP][682] ([Intel XE#1130])
   [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
   [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
    - shard-bmg:          [SKIP][683] ([Intel XE#1130]) -> [DMESG-WARN][684] ([Intel XE#3467])
   [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
   [684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
    - shard-bmg:          [SKIP][685] ([Intel XE#1130]) -> [DMESG-WARN][686] ([Intel XE#3343] / [Intel XE#3468])
   [685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
   [686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html

  * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
    - shard-bmg:          [SKIP][687] ([Intel XE#1130]) -> [FAIL][688] ([Intel XE#3499])
   [687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
   [688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html

  * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
    - shard-bmg:          [FAIL][689] ([Intel XE#3499]) -> [DMESG-FAIL][690] ([Intel XE#3467])
   [689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
   [690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html

  * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
    - shard-bmg:          [DMESG-FAIL][691] ([Intel XE#3467] / [Intel XE#3468]) -> [SKIP][692] ([Intel XE#1130])
   [691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
   [692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html

  * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
    - shard-dg2-set2:     [SKIP][693] ([Intel XE#1130]) -> [DMESG-WARN][694] ([Intel XE#3467]) +12 other tests dmesg-warn
   [693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
   [694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html

  * igt@xe_gt_freq@freq_suspend:
    - shard-bmg:          [SKIP][695] ([Intel XE#1130]) -> [DMESG-FAIL][696] ([Intel XE#1727] / [Intel XE#3468])
   [695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_gt_freq@freq_suspend.html
   [696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@xe_gt_freq@freq_suspend.html

  * igt@xe_huc_copy@huc_copy:
    - shard-dg2-set2:     [SKIP][697] ([Intel XE#1130]) -> [SKIP][698] ([Intel XE#255])
   [697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_huc_copy@huc_copy.html
   [698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_huc_copy@huc_copy.html

  * igt@xe_media_fill@media-fill:
    - shard-dg2-set2:     [SKIP][699] ([Intel XE#1130]) -> [SKIP][700] ([Intel XE#560])
   [699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_media_fill@media-fill.html
   [700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_media_fill@media-fill.html
    - shard-bmg:          [SKIP][701] ([Intel XE#1130]) -> [SKIP][702] ([Intel XE#2459] / [Intel XE#2596])
   [701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_media_fill@media-fill.html
   [702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@xe_media_fill@media-fill.html

  * igt@xe_mmap@small-bar:
    - shard-dg2-set2:     [SKIP][703] ([Intel XE#1130]) -> [SKIP][704] ([Intel XE#512])
   [703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_mmap@small-bar.html
   [704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_mmap@small-bar.html

  * igt@xe_module_load@reload:
    - shard-dg2-set2:     [FAIL][705] ([Intel XE#3546]) -> [DMESG-FAIL][706] ([Intel XE#3467])
   [705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_module_load@reload.html
   [706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_module_load@reload.html

  * igt@xe_module_load@reload-no-display:
    - shard-bmg:          [FAIL][707] ([Intel XE#3625]) -> [DMESG-WARN][708] ([Intel XE#3467])
   [707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_module_load@reload-no-display.html
   [708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_module_load@reload-no-display.html
    - shard-dg2-set2:     [FAIL][709] ([Intel XE#3546]) -> [DMESG-WARN][710] ([Intel XE#3467])
   [709]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_module_load@reload-no-display.html
   [710]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_module_load@reload-no-display.html

  * igt@xe_oa@oa-unit-exclusive-stream-exec-q:
    - shard-dg2-set2:     [SKIP][711] ([Intel XE#3573]) -> [SKIP][712] ([Intel XE#1130])
   [711]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-exec-q.html
   [712]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-exec-q.html

  * igt@xe_oa@syncs-ufence-wait:
    - shard-dg2-set2:     [SKIP][713] ([Intel XE#1130]) -> [SKIP][714] ([Intel XE#3573]) +27 other tests skip
   [713]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_oa@syncs-ufence-wait.html
   [714]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_oa@syncs-ufence-wait.html

  * igt@xe_oa@unprivileged-single-ctx-counters:
    - shard-bmg:          [SKIP][715] ([Intel XE#2248]) -> [SKIP][716] ([Intel XE#1130])
   [715]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@xe_oa@unprivileged-single-ctx-counters.html
   [716]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_oa@unprivileged-single-ctx-counters.html

  * igt@xe_pat@display-vs-wb-transient:
    - shard-dg2-set2:     [SKIP][717] ([Intel XE#1130]) -> [SKIP][718] ([Intel XE#1337])
   [717]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html
   [718]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html

  * igt@xe_pat@pat-index-xe2:
    - shard-dg2-set2:     [SKIP][719] ([Intel XE#1130]) -> [SKIP][720] ([Intel XE#977])
   [719]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
   [720]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-dg2-set2:     [SKIP][721] ([Intel XE#1130]) -> [SKIP][722] ([Intel XE#979])
   [721]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
   [722]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_peer2peer@read:
    - shard-dg2-set2:     [SKIP][723] ([Intel XE#1061]) -> [FAIL][724] ([Intel XE#1173])
   [723]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_peer2peer@read.html
   [724]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_peer2peer@read.html

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

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          [SKIP][727] ([Intel XE#2284]) -> [SKIP][728] ([Intel XE#1130])
   [727]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_pm@d3cold-mocs.html
   [728]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@d3hot-mmap-system:
    - shard-dg2-set2:     [SKIP][729] ([Intel XE#1130]) -> [DMESG-WARN][730] ([Intel XE#3468]) +1 other test dmesg-warn
   [729]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pm@d3hot-mmap-system.html
   [730]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_pm@d3hot-mmap-system.html

  * igt@xe_pm@s2idle-basic:
    - shard-dg2-set2:     [SKIP][731] ([Intel XE#1130]) -> [DMESG-WARN][732] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-warn
   [731]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_pm@s2idle-basic.html
   [732]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm@s3-d3hot-basic-exec:
    - shard-dg2-set2:     [SKIP][733] ([Intel XE#1130]) -> [DMESG-WARN][734] ([Intel XE#3468] / [Intel XE#569])
   [733]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_pm@s3-d3hot-basic-exec.html
   [734]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-bmg:          [DMESG-WARN][735] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][736] ([Intel XE#1130])
   [735]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html
   [736]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-dg2-set2:     [SKIP][737] ([Intel XE#1130]) -> [DMESG-WARN][738] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
   [737]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html
   [738]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s4-mocs:
    - shard-dg2-set2:     [SKIP][739] ([Intel XE#1130]) -> [DMESG-WARN][740] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
   [739]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pm@s4-mocs.html
   [740]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_pm@s4-mocs.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     [SKIP][741] ([Intel XE#1130]) -> [SKIP][742] ([Intel XE#579])
   [741]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html
   [742]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html
    - shard-bmg:          [SKIP][743] ([Intel XE#579]) -> [SKIP][744] ([Intel XE#1130])
   [743]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@xe_pm@vram-d3cold-threshold.html
   [744]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     [SKIP][745] ([Intel XE#1130]) -> [SKIP][746] ([Intel XE#944]) +13 other tests skip
   [745]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_query@multigpu-query-engines.html
   [746]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-bmg:          [SKIP][747] ([Intel XE#944]) -> [SKIP][748] ([Intel XE#1130]) +1 other test skip
   [747]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_query@multigpu-query-hwconfig.html
   [748]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_query@multigpu-query-hwconfig.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-bmg:          [SKIP][749] ([Intel XE#1130]) -> [SKIP][750] ([Intel XE#944]) +3 other tests skip
   [749]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_query@multigpu-query-mem-usage.html
   [750]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-dg2-set2:     [SKIP][751] ([Intel XE#1130]) -> [SKIP][752] ([Intel XE#3342])
   [751]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html
   [752]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-bmg:          [ABORT][753] -> [ABORT][754] ([Intel XE#3421])
   [753]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.html
   [754]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_wedged@wedged-at-any-timeout.html

  * igt@xe_wedged@wedged-mode-toggle:
    - shard-bmg:          [SKIP][755] ([Intel XE#1130]) -> [ABORT][756] ([Intel XE#3084])
   [755]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_wedged@wedged-mode-toggle.html
   [756]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_wedged@wedged-mode-toggle.html

  
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
  [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
  [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
  [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
  [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
  [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
  [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
  [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
  [Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212
  [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
  [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
  [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
  [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
  [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
  [Intel XE#3557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3557
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274


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

  * IGT: IGT_8129 -> IGTPW_12214

  IGTPW_12214: 12214
  IGT_8129: 363499a879fee5b9b7eda8acf7c772bce3423493 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2289-f3f406165a3d5f0fcb60be2060b7920ac385dc22: f3f406165a3d5f0fcb60be2060b7920ac385dc22

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for tests/gem_mmap_offset: Fix OOM hits (rev2)
  2024-11-28 11:16 [PATCH i-g-t v2 0/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
                   ` (4 preceding siblings ...)
  2024-11-28 17:05 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-11-28 17:16 ` Patchwork
  2024-11-29 14:59   ` Janusz Krzysztofik
  2024-12-02 13:07 ` ✓ i915.CI.Full: success " Patchwork
  6 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2024-11-28 17:16 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: tests/gem_mmap_offset: Fix OOM hits (rev2)
URL   : https://patchwork.freedesktop.org/series/141643/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8129_full -> IGTPW_12214_full
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_ctx_exec@basic-norecovery:
    - shard-mtlp:         [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@gem_ctx_exec@basic-norecovery.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-tglu-1:       NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_tiled_swapping@non-threaded.html
    - shard-snb:          [PASS][4] -> [FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb1/igt@gem_tiled_swapping@non-threaded.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb4/igt@gem_tiled_swapping@non-threaded.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][6] +6 other tests incomplete
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-rkl:          [PASS][7] -> [SKIP][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html

  
#### Warnings ####

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-tglu:         [INCOMPLETE][9] ([i915#7443]) -> [INCOMPLETE][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html

  
New tests
---------

  New tests have been introduced between IGT_8129_full and IGTPW_12214_full:

### New IGT tests (3) ###

  * igt@gem_mmap_offset@clear-via-pagefault:
    - Statuses : 4 pass(s)
    - Exec time: [22.61, 51.21] s

  * igt@gem_mmap_offset@clear-via-pagefault@lmem0:
    - Statuses : 2 pass(s)
    - Exec time: [23.89, 25.75] s

  * igt@gem_mmap_offset@clear-via-pagefault@smem0:
    - Statuses : 4 pass(s)
    - Exec time: [22.29, 25.45] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-dg1:          NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
    - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#8411]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
    - shard-rkl:          NOTRUN -> [SKIP][13] ([i915#8411])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@device_reset@unbind-reset-rebind:
    - shard-dg1:          NOTRUN -> [ABORT][14] ([i915#11814] / [i915#11815])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html
    - shard-tglu:         NOTRUN -> [ABORT][15] ([i915#12817] / [i915#5507])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html

  * igt@drm_fdinfo@virtual-busy-all:
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#8414]) +2 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@drm_fdinfo@virtual-busy-all.html
    - shard-dg1:          NOTRUN -> [SKIP][17] ([i915#8414]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@drm_fdinfo@virtual-busy-all.html
    - shard-mtlp:         NOTRUN -> [SKIP][18] ([i915#8414])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-all.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-dg1:          NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy.html

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

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

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

  * igt@gem_ctx_persistence@file:
    - shard-snb:          NOTRUN -> [SKIP][23] ([i915#1099])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb1/igt@gem_ctx_persistence@file.html

  * igt@gem_ctx_persistence@heartbeat-stop:
    - shard-dg1:          NOTRUN -> [SKIP][24] ([i915#8555])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
    - shard-mtlp:         NOTRUN -> [SKIP][25] ([i915#8555])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-stop.html
    - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#8555])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-stop.html

  * igt@gem_ctx_persistence@hostile:
    - shard-tglu-1:       NOTRUN -> [FAIL][27] ([i915#11980] / [i915#12580])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_ctx_persistence@hostile.html

  * igt@gem_ctx_sseu@engines:
    - shard-rkl:          NOTRUN -> [SKIP][28] ([i915#280])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_ctx_sseu@engines.html
    - shard-dg1:          NOTRUN -> [SKIP][29] ([i915#280])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_ctx_sseu@engines.html
    - shard-tglu:         NOTRUN -> [SKIP][30] ([i915#280])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_ctx_sseu@engines.html
    - shard-dg2:          NOTRUN -> [SKIP][31] ([i915#280])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_ctx_sseu@engines.html

  * igt@gem_exec_balancer@bonded-dual:
    - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#4771])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html
    - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#4771])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_exec_balancer@bonded-dual.html

  * igt@gem_exec_balancer@bonded-semaphore:
    - shard-mtlp:         NOTRUN -> [SKIP][34] ([i915#4812])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_exec_balancer@bonded-semaphore.html

  * igt@gem_exec_balancer@hog:
    - shard-dg1:          NOTRUN -> [SKIP][35] ([i915#4812]) +4 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_exec_balancer@hog.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#4036])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html
    - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#4036])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_capture@capture-invisible:
    - shard-dg1:          NOTRUN -> [SKIP][38] ([i915#6334]) +2 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_exec_capture@capture-invisible.html

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

  * igt@gem_exec_flush@basic-wb-ro-before-default:
    - shard-dg1:          NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html

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

  * igt@gem_exec_reloc@basic-scanout:
    - shard-rkl:          NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_exec_reloc@basic-scanout.html

  * igt@gem_exec_reloc@basic-wc-cpu-noreloc:
    - shard-dg1:          NOTRUN -> [SKIP][43] ([i915#3281]) +14 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-write-read-active:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_exec_reloc@basic-write-read-active.html

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

  * igt@gem_exec_suspend@basic-s0@lmem0:
    - shard-dg2:          [PASS][46] -> [INCOMPLETE][47] ([i915#11441]) +1 other test incomplete
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@gem_exec_suspend@basic-s0@lmem0.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - shard-dg2:          NOTRUN -> [ABORT][48] ([i915#7975] / [i915#8213]) +1 other test abort
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_fenced_exec_thrash@no-spare-fences:
    - shard-dg1:          NOTRUN -> [SKIP][49] ([i915#4860])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html

  * igt@gem_huc_copy@huc-copy:
    - shard-rkl:          NOTRUN -> [SKIP][50] ([i915#2190])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
    - shard-tglu-1:       NOTRUN -> [SKIP][51] ([i915#2190])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_huc_copy@huc-copy.html

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

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

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

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#4565]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#12193]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          NOTRUN -> [TIMEOUT][58] ([i915#5493]) +1 other test timeout
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html

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

  * igt@gem_madvise@dontneed-before-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#3282]) +5 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@gem_madvise@dontneed-before-pwrite.html

  * igt@gem_mmap@bad-offset:
    - shard-dg1:          NOTRUN -> [SKIP][61] ([i915#4083]) +5 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_mmap@bad-offset.html

  * igt@gem_mmap_gtt@basic-copy:
    - shard-dg2:          NOTRUN -> [SKIP][62] ([i915#4077]) +6 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_mmap_gtt@basic-copy.html

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

  * igt@gem_mmap_wc@close:
    - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#4083]) +6 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_mmap_wc@close.html

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

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - shard-rkl:          NOTRUN -> [SKIP][66] ([i915#3282]) +4 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
    - shard-mtlp:         NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gem_pread@exhaustion:
    - shard-tglu-1:       NOTRUN -> [WARN][68] ([i915#2658])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_pread@exhaustion.html
    - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#3282]) +8 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_pread@exhaustion.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk:          NOTRUN -> [WARN][70] ([i915#2658])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk8/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@create-regular-buffer:
    - shard-rkl:          NOTRUN -> [TIMEOUT][71] ([i915#12917] / [i915#12964])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@gem_pxp@create-regular-buffer.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-dg2:          NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
    - shard-rkl:          NOTRUN -> [TIMEOUT][73] ([i915#12964])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

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

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-tglu:         [PASS][75] -> [SKIP][76] ([i915#4270])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
    - shard-dg1:          NOTRUN -> [SKIP][77] ([i915#4270]) +5 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
    - shard-tglu:         NOTRUN -> [SKIP][78] ([i915#4270])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][79] ([i915#8428])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html

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

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

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

  * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
    - shard-mtlp:         NOTRUN -> [SKIP][83] ([i915#4077]) +2 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html

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

  * igt@gem_unfence_active_buffers:
    - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#4879])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@gem_unfence_active_buffers.html

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

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-dg2:          NOTRUN -> [SKIP][88] ([i915#3297])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_userptr_blits@unsync-overlap.html
    - shard-rkl:          NOTRUN -> [SKIP][89] ([i915#3297])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-dg1:          NOTRUN -> [SKIP][90] ([i915#3297]) +3 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gen7_exec_parse@bitmasks:
    - shard-dg2:          NOTRUN -> [SKIP][91] +13 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@gen7_exec_parse@bitmasks.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-rkl:          NOTRUN -> [SKIP][92] ([i915#2527]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html

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

  * igt@gen9_exec_parse@bb-large:
    - shard-dg1:          NOTRUN -> [SKIP][94] ([i915#2527]) +5 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gen9_exec_parse@bb-large.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#2856]) +1 other test skip
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-tglu-1:       NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +2 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html

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

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-mtlp:         [PASS][98] -> [ABORT][99] ([i915#10131] / [i915#9820])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-tglu-1:       NOTRUN -> [SKIP][100] ([i915#8399])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html

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

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
    - shard-dg1:          [PASS][102] -> [FAIL][103] ([i915#12548] / [i915#3591])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg1:          NOTRUN -> [SKIP][104] ([i915#11681] / [i915#6621]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rps@min-max-config-idle.html

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

  * igt@i915_pm_sseu@full-enable:
    - shard-dg2:          NOTRUN -> [SKIP][106] ([i915#4387])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@i915_pm_sseu@full-enable.html

  * igt@i915_power@sanity:
    - shard-mtlp:         [PASS][107] -> [SKIP][108] ([i915#7984])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@i915_power@sanity.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@i915_power@sanity.html

  * igt@i915_query@hwconfig_table:
    - shard-tglu-1:       NOTRUN -> [SKIP][109] ([i915#6245])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@i915_query@hwconfig_table.html
    - shard-dg1:          NOTRUN -> [SKIP][110] ([i915#6245])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@i915_query@hwconfig_table.html

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

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg1:          NOTRUN -> [SKIP][112] ([i915#4215])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@bo-too-small-due-to-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][113] ([i915#4212])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html

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

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-dg2:          NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-rkl:          NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-dg1:          NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-tglu:         NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-glk:          NOTRUN -> [SKIP][119] ([i915#1769])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

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

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-mtlp:         [PASS][121] -> [FAIL][122] ([i915#12469] / [i915#5138])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-tglu-1:       NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +6 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][125] ([i915#5286]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

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

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html

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

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

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][130] ([i915#5190]) +1 other test skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
    - shard-mtlp:         NOTRUN -> [SKIP][131] ([i915#6187]) +1 other test skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-mtlp:         NOTRUN -> [SKIP][132] +6 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

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

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
    - shard-glk:          NOTRUN -> [SKIP][134] +333 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][135] ([i915#12313]) +2 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][136] ([i915#12313])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][137] ([i915#12313])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#12313])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

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

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +174 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][141] ([i915#12805])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#6095]) +19 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][145] ([i915#6095]) +54 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html

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

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#6095]) +11 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][148] ([i915#12313]) +3 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][149] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition:
    - shard-tglu-1:       NOTRUN -> [SKIP][150] ([i915#3742])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_cdclk@mode-transition.html

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

  * igt@kms_cdclk@plane-scaling:
    - shard-dg1:          NOTRUN -> [SKIP][152] ([i915#3742]) +1 other test skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_cdclk@plane-scaling.html

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

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#7828]) +9 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-dg1:          NOTRUN -> [SKIP][155] +65 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_chamelium_color@ctm-0-50.html

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

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - shard-rkl:          NOTRUN -> [SKIP][157] ([i915#7828]) +3 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html

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

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

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

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

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][162] ([i915#3116] / [i915#3299])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@lic-type-0:
    - shard-dg1:          NOTRUN -> [SKIP][163] ([i915#9424])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@mei-interface:
    - shard-tglu-1:       NOTRUN -> [SKIP][164] ([i915#6944] / [i915#9424])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [TIMEOUT][165] ([i915#7173])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-4.html

  * igt@kms_content_protection@uevent:
    - shard-dg1:          NOTRUN -> [SKIP][166] ([i915#7116] / [i915#9424])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-mtlp:         NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8814]) +1 other test skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#13049]) +1 other test skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-rkl:          NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-mtlp:         NOTRUN -> [SKIP][171] ([i915#13049])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][172] ([i915#13049]) +3 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-tglu-1:       NOTRUN -> [SKIP][173] ([i915#4103])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-mtlp:         NOTRUN -> [SKIP][174] ([i915#4213])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

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

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-mtlp:         NOTRUN -> [SKIP][176] ([i915#9809]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-rkl:          NOTRUN -> [SKIP][177] +6 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
    - shard-snb:          [PASS][178] -> [FAIL][179] ([i915#2346])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg1:          NOTRUN -> [SKIP][180] ([i915#4103] / [i915#4213]) +1 other test skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
    - shard-tglu:         NOTRUN -> [SKIP][181] ([i915#4103])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

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

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#9833])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

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

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-tglu:         NOTRUN -> [SKIP][185] ([i915#1769] / [i915#3555] / [i915#3804])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

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

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg2:          NOTRUN -> [SKIP][187] ([i915#12402])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_dp_linktrain_fallback@dp-fallback.html

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

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2:          NOTRUN -> [SKIP][189] ([i915#3840] / [i915#9688])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-dg1:          NOTRUN -> [SKIP][190] ([i915#3840]) +1 other test skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html

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

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-dg1:          NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html

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

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

  * igt@kms_feature_discovery@display-3x:
    - shard-tglu-1:       NOTRUN -> [SKIP][195] ([i915#1839]) +1 other test skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@psr1:
    - shard-tglu:         NOTRUN -> [SKIP][196] ([i915#658])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-9/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-tglu-1:       NOTRUN -> [SKIP][197] ([i915#658])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_feature_discovery@psr2.html
    - shard-dg2:          NOTRUN -> [SKIP][198] ([i915#658])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][199] ([i915#3637])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-tglu-1:       NOTRUN -> [SKIP][200] ([i915#3637]) +2 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          NOTRUN -> [SKIP][201] ([i915#9934]) +7 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
    - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#9934]) +2 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
    - shard-dg1:          NOTRUN -> [SKIP][203] ([i915#9934]) +7 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-tglu:         NOTRUN -> [SKIP][204] ([i915#3637]) +7 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@absolute-wf_vblank-interruptible:
    - shard-rkl:          [PASS][205] -> [DMESG-WARN][206] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_flip@absolute-wf_vblank-interruptible.html
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_flip@absolute-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][207] ([i915#4839])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk9/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8810] / [i915#8813])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html

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

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

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

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

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +3 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555]) +3 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#2672]) +5 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html

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

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

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][221] ([i915#2672]) +1 other test skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
    - shard-rkl:          [PASS][223] -> [DMESG-WARN][224] ([i915#12964]) +58 other tests dmesg-warn
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-dg2:          [PASS][225] -> [FAIL][226] ([i915#6880]) +1 other test fail
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][227] ([i915#1825]) +6 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-snb:          [PASS][228] -> [SKIP][229] +4 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#5354]) +27 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
    - shard-rkl:          NOTRUN -> [SKIP][231] ([i915#1825]) +10 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-tglu-1:       NOTRUN -> [SKIP][232] +56 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
    - shard-dg2:          NOTRUN -> [FAIL][233] ([i915#6880])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-rkl:          [PASS][234] -> [DMESG-FAIL][235] ([i915#12964])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][236] ([i915#10056])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][237] ([i915#3458]) +10 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][238] +76 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][239] ([i915#8708]) +3 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html

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

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

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg1:          NOTRUN -> [SKIP][242] ([i915#5439])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][243] ([i915#8708]) +19 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
    - shard-dg1:          NOTRUN -> [SKIP][244] ([i915#3458]) +18 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-dg2:          [PASS][245] -> [SKIP][246] ([i915#3555] / [i915#8228])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-dg2:          NOTRUN -> [SKIP][247] ([i915#12713])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg1:          NOTRUN -> [SKIP][248] ([i915#1187] / [i915#12713])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-tglu-1:       NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228]) +1 other test skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
    - shard-rkl:          NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
    - shard-tglu:         NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@static-toggle:
    - shard-dg1:          NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) +1 other test skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_hdr@static-toggle.html

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

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

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][256] ([i915#12339])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_joiner@basic-ultra-joiner.html

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

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-glk:          NOTRUN -> [INCOMPLETE][258] ([i915#12756])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc.html

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

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-dg2:          NOTRUN -> [SKIP][261] ([i915#12247] / [i915#9423]) +1 other test skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
    - shard-rkl:          NOTRUN -> [SKIP][262] ([i915#12247]) +2 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
    - shard-tglu:         NOTRUN -> [SKIP][263] ([i915#12247]) +14 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
    - shard-dg2:          NOTRUN -> [SKIP][264] ([i915#12247]) +7 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
    - shard-tglu-1:       NOTRUN -> [SKIP][265] ([i915#12247]) +3 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
    - shard-mtlp:         NOTRUN -> [SKIP][266] ([i915#12247]) +4 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
    - shard-dg1:          NOTRUN -> [SKIP][267] ([i915#12247]) +18 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
    - shard-dg1:          NOTRUN -> [SKIP][268] ([i915#12247] / [i915#6953])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#12343])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][270] ([i915#5354]) +1 other test skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][271] ([i915#5354]) +1 other test skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][272] ([i915#9812]) +1 other test skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2:          NOTRUN -> [SKIP][273] ([i915#9685])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_pm_dc@dc3co-vpb-simulation.html

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

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-mtlp:         NOTRUN -> [SKIP][275] ([i915#8430])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2:          [PASS][276] -> [SKIP][277] ([i915#9519]) +1 other test skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][278] ([i915#9519])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
    - shard-rkl:          NOTRUN -> [SKIP][279] ([i915#9519])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
    - shard-dg1:          NOTRUN -> [SKIP][280] ([i915#9519])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          [PASS][281] -> [SKIP][282] ([i915#9519]) +1 other test skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglu:         NOTRUN -> [SKIP][283] ([i915#9519])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_prime@basic-modeset-hybrid:
    - shard-dg1:          NOTRUN -> [SKIP][284] ([i915#6524]) +1 other test skip
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_prime@basic-modeset-hybrid.html
    - shard-tglu:         NOTRUN -> [SKIP][285] ([i915#6524])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_prime@basic-modeset-hybrid.html

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

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
    - shard-tglu:         NOTRUN -> [SKIP][287] ([i915#11520]) +7 other tests skip
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-tglu-1:       NOTRUN -> [SKIP][288] ([i915#11520]) +3 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-mtlp:         NOTRUN -> [SKIP][289] ([i915#12316]) +1 other test skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][290] ([i915#9808])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#11520]) +7 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-dg1:          NOTRUN -> [SKIP][292] ([i915#11520]) +10 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-rkl:          NOTRUN -> [SKIP][293] ([i915#11520]) +1 other test skip
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][294] ([i915#11520]) +10 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk8/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][295] ([i915#9683])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg1:          NOTRUN -> [SKIP][296] ([i915#9683]) +1 other test skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-tglu-1:       NOTRUN -> [SKIP][297] ([i915#9732]) +10 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr-sprite-blt:
    - shard-dg2:          NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +18 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_psr@fbc-psr-sprite-blt.html

  * igt@kms_psr@fbc-psr-sprite-plane-move:
    - shard-mtlp:         NOTRUN -> [SKIP][299] ([i915#9688]) +2 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_psr@fbc-psr-sprite-plane-move.html

  * igt@kms_psr@psr2-cursor-render:
    - shard-tglu:         NOTRUN -> [SKIP][300] ([i915#9732]) +15 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_psr@psr2-cursor-render.html

  * igt@kms_psr@psr2-sprite-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][301] ([i915#1072] / [i915#9732]) +26 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html

  * igt@kms_psr@psr2-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][302] ([i915#1072] / [i915#9732]) +9 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_psr@psr2-suspend.html

  * igt@kms_pwrite_crc:
    - shard-rkl:          NOTRUN -> [DMESG-WARN][303] ([i915#12964]) +6 other tests dmesg-warn
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_pwrite_crc.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-snb:          NOTRUN -> [SKIP][304] +78 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@kms_rotation_crc@bad-pixel-format.html
    - shard-mtlp:         NOTRUN -> [SKIP][305] ([i915#12755])
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          NOTRUN -> [SKIP][306] ([i915#12755]) +1 other test skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-tglu:         NOTRUN -> [SKIP][307] ([i915#5289])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-tglu-1:       NOTRUN -> [SKIP][308] ([i915#3555]) +4 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-tglu:         NOTRUN -> [SKIP][309] ([i915#3555]) +7 other tests skip
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_selftest@drm_framebuffer:
    - shard-dg1:          NOTRUN -> [ABORT][310] ([i915#12231]) +1 other test abort
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_selftest@drm_framebuffer.html
    - shard-glk:          NOTRUN -> [ABORT][311] ([i915#12231]) +1 other test abort
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk1/igt@kms_selftest@drm_framebuffer.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-dg2:          NOTRUN -> [SKIP][312] ([i915#3555]) +2 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
    - shard-rkl:          NOTRUN -> [SKIP][313] ([i915#3555]) +2 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
    - shard-dg1:          NOTRUN -> [SKIP][314] ([i915#3555]) +5 other tests skip
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          NOTRUN -> [FAIL][315] ([IGT#160])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_sysfs_edid_timing.html
    - shard-dg1:          NOTRUN -> [FAIL][316] ([IGT#160] / [i915#6493])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_sysfs_edid_timing.html

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

  * igt@kms_vrr@flip-basic-fastset:
    - shard-tglu-1:       NOTRUN -> [SKIP][318] ([i915#9906])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@max-min:
    - shard-tglu:         NOTRUN -> [SKIP][319] ([i915#9906]) +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_vrr@max-min.html

  * igt@kms_vrr@negative-basic:
    - shard-dg2:          NOTRUN -> [SKIP][320] ([i915#3555] / [i915#9906])
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_vrr@negative-basic.html
    - shard-rkl:          NOTRUN -> [SKIP][321] ([i915#3555] / [i915#9906])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_vrr@negative-basic.html
    - shard-dg1:          NOTRUN -> [SKIP][322] ([i915#3555] / [i915#9906])
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_vrr@negative-basic.html
    - shard-tglu:         NOTRUN -> [SKIP][323] ([i915#3555] / [i915#9906])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-dg1:          NOTRUN -> [SKIP][324] ([i915#9906]) +2 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@kms_writeback@writeback-check-output:
    - shard-glk:          NOTRUN -> [SKIP][325] ([i915#2437])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk5/igt@kms_writeback@writeback-check-output.html

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

  * igt@kms_writeback@writeback-fb-id:
    - shard-tglu:         NOTRUN -> [SKIP][327] ([i915#2437]) +1 other test skip
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-tglu:         NOTRUN -> [SKIP][328] ([i915#2437] / [i915#9412])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-dg1:          NOTRUN -> [SKIP][329] ([i915#2437]) +1 other test skip
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-dg2:          NOTRUN -> [SKIP][330] ([i915#2437])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-rkl:          NOTRUN -> [SKIP][331] ([i915#2437])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@perf@mi-rpc:
    - shard-dg2:          NOTRUN -> [SKIP][332] ([i915#2434])
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@perf@mi-rpc.html

  * igt@perf_pmu@busy-idle@ccs0:
    - shard-mtlp:         [PASS][333] -> [FAIL][334] ([i915#4349]) +11 other tests fail
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@perf_pmu@busy-idle@ccs0.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@perf_pmu@busy-idle@ccs0.html
    - shard-dg2:          [PASS][335] -> [FAIL][336] ([i915#4349]) +7 other tests fail
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@perf_pmu@busy-idle@ccs0.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@perf_pmu@busy-idle@ccs0.html

  * igt@perf_pmu@cpu-hotplug:
    - shard-tglu:         NOTRUN -> [SKIP][337] ([i915#8850])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html

  * igt@perf_pmu@most-busy-check-all:
    - shard-rkl:          [PASS][338] -> [FAIL][339] ([i915#4349]) +1 other test fail
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html

  * igt@perf_pmu@rc6-all-gts:
    - shard-dg1:          NOTRUN -> [SKIP][340] ([i915#8516]) +1 other test skip
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html

  * igt@perf_pmu@rc6@other-idle-gt0:
    - shard-dg2:          NOTRUN -> [SKIP][341] ([i915#8516])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html

  * igt@perf_pmu@render-node-busy-idle@vcs0:
    - shard-dg2:          NOTRUN -> [FAIL][342] ([i915#4349]) +5 other tests fail
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@perf_pmu@render-node-busy-idle@vcs0.html

  * igt@perf_pmu@semaphore-busy@vcs1:
    - shard-dg1:          [PASS][343] -> [FAIL][344] ([i915#4349]) +3 other tests fail
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html

  * igt@prime_vgem@basic-fence-read:
    - shard-dg1:          NOTRUN -> [SKIP][345] ([i915#3708])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@coherency-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][346] ([i915#3708] / [i915#4077])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@prime_vgem@coherency-gtt.html

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

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-dg1:          NOTRUN -> [SKIP][348] ([i915#9917])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2:          NOTRUN -> [SKIP][349] ([i915#9917])
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

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

  
#### Possible fixes ####

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          [INCOMPLETE][351] ([i915#7297]) -> [PASS][352] +1 other test pass
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-5/igt@gem_ccs@suspend-resume.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@gem_ccs@suspend-resume.html

  * igt@gem_eio@hibernate:
    - shard-tglu:         [ABORT][353] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][354]
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-10/igt@gem_eio@hibernate.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_eio@hibernate.html

  * igt@gem_eio@in-flight-suspend:
    - shard-dg1:          [DMESG-WARN][355] ([i915#4391] / [i915#4423]) -> [PASS][356]
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@gem_eio@in-flight-suspend.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@kms:
    - shard-tglu:         [DMESG-WARN][357] -> [PASS][358]
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-9/igt@gem_eio@kms.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-8/igt@gem_eio@kms.html

  * igt@gem_exec_whisper@basic-queues-priority:
    - shard-rkl:          [DMESG-WARN][359] ([i915#12917] / [i915#12964]) -> [PASS][360]
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-2/igt@gem_exec_whisper@basic-queues-priority.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_exec_whisper@basic-queues-priority.html

  * igt@gem_pxp@verify-pxp-stale-buf-execution:
    - shard-tglu:         [SKIP][361] ([i915#4270]) -> [PASS][362] +1 other test pass
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html

  * igt@gem_workarounds@suspend-resume:
    - shard-rkl:          [DMESG-FAIL][363] ([i915#12964]) -> [PASS][364]
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@gem_workarounds@suspend-resume.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_workarounds@suspend-resume.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
    - shard-dg1:          [FAIL][365] ([i915#12548] / [i915#3591]) -> [PASS][366]
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html

  * igt@i915_pm_rps@reset:
    - shard-snb:          [INCOMPLETE][367] ([i915#7790]) -> [PASS][368]
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb4/igt@i915_pm_rps@reset.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@i915_pm_rps@reset.html

  * igt@i915_selftest@live@workarounds:
    - shard-mtlp:         [ABORT][369] ([i915#12061]) -> [PASS][370] +1 other test pass
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@i915_selftest@live@workarounds.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
    - shard-dg1:          [DMESG-WARN][371] ([i915#4423]) -> [PASS][372] +2 other tests pass
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-snb:          [INCOMPLETE][373] -> [PASS][374] +1 other test pass
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3:
    - shard-dg2:          [FAIL][375] ([i915#11989]) -> [PASS][376] +5 other tests pass
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3.html

  * igt@kms_flip@flip-vs-rmfb-interruptible:
    - shard-dg2:          [INCOMPLETE][377] ([i915#6113]) -> [PASS][378] +1 other test pass
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_flip@flip-vs-rmfb-interruptible.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@kms_flip@flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3:
    - shard-dg1:          [INCOMPLETE][379] ([i915#6113]) -> [PASS][380] +1 other test pass
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1:
    - shard-mtlp:         [FAIL][381] ([i915#11989]) -> [PASS][382] +4 other tests pass
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1:
    - shard-snb:          [FAIL][383] ([i915#11989]) -> [PASS][384] +5 other tests pass
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-snb:          [SKIP][385] -> [PASS][386] +3 other tests pass
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
    - shard-dg2:          [FAIL][387] ([i915#6880]) -> [PASS][388]
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html

  * igt@kms_plane_cursor@primary:
    - shard-mtlp:         [DMESG-WARN][389] ([i915#1982]) -> [PASS][390] +1 other test pass
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-2/igt@kms_plane_cursor@primary.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@kms_plane_cursor@primary.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-tglu:         [FAIL][391] ([i915#9295]) -> [PASS][392]
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg2:          [SKIP][393] ([i915#9519]) -> [PASS][394] +1 other test pass
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@perf@gen12-oa-tlb-invalidate:
    - shard-rkl:          [DMESG-WARN][395] ([i915#12964]) -> [PASS][396] +52 other tests pass
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@perf@gen12-oa-tlb-invalidate.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@perf@gen12-oa-tlb-invalidate.html

  * igt@perf_pmu@all-busy-idle-check-all:
    - shard-dg2:          [FAIL][397] ([i915#11943]) -> [PASS][398]
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html
    - shard-mtlp:         [FAIL][399] ([i915#11943]) -> [PASS][400]
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html

  * igt@perf_pmu@busy-double-start@vecs0:
    - shard-dg1:          [FAIL][401] ([i915#4349]) -> [PASS][402] +2 other tests pass
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-14/igt@perf_pmu@busy-double-start@vecs0.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@perf_pmu@busy-double-start@vecs0.html

  * igt@perf_pmu@most-busy-idle-check-all@rcs0:
    - shard-rkl:          [FAIL][403] ([i915#4349]) -> [PASS][404] +1 other test pass
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html

  * igt@perf_pmu@multi-client:
    - shard-mtlp:         [FAIL][405] ([i915#4349]) -> [PASS][406] +1 other test pass
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@perf_pmu@multi-client.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@perf_pmu@multi-client.html

  
#### Warnings ####

  * igt@gem_eio@hibernate:
    - shard-dg2:          [DMESG-WARN][407] -> [ABORT][408] ([i915#10030] / [i915#7975] / [i915#8213])
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@gem_eio@hibernate.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_eio@hibernate.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-dg2:          [DMESG-WARN][409] ([i915#5493]) -> [SKIP][410] ([i915#12936])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@gem_lmem_swapping@smem-oom.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-rkl:          [TIMEOUT][411] ([i915#12917] / [i915#12964]) -> [FAIL][412] ([i915#13104])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-rkl:          [TIMEOUT][413] ([i915#12964]) -> [SKIP][414] ([i915#4270])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_pxp@reject-modify-context-protection-on:
    - shard-rkl:          [TIMEOUT][415] ([i915#12917] / [i915#12964]) -> [SKIP][416] ([i915#4270])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-on.html

  * igt@gem_pxp@verify-pxp-stale-buf-execution:
    - shard-rkl:          [SKIP][417] ([i915#4270]) -> [TIMEOUT][418] ([i915#12917] / [i915#12964]) +1 other test timeout
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-tglu:         [ABORT][419] ([i915#10887] / [i915#12817] / [i915#9820]) -> [ABORT][420] ([i915#10887] / [i915#12817] / [i915#13010] / [i915#9820])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg1:          [SKIP][421] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][422] ([i915#4538] / [i915#5286])
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg1:          [SKIP][423] ([i915#9433]) -> [SKIP][424] ([i915#9424])
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_content_protection@mei-interface.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm:
    - shard-dg2:          [SKIP][425] ([i915#7118]) -> [TIMEOUT][426] ([i915#7173])
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-7/igt@kms_content_protection@srm.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_content_protection@srm.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][427] ([i915#3458]) -> [SKIP][428] ([i915#10433] / [i915#3458])
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-dg1:          [SKIP][429] -> [SKIP][430] ([i915#4423])
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-tglu:         [SKIP][431] ([i915#1187] / [i915#12713]) -> [SKIP][432] ([i915#12713])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_psr@pr-basic:
    - shard-dg1:          [SKIP][433] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][434] ([i915#1072] / [i915#9732])
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_psr@pr-basic.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr@pr-basic.html

  * igt@perf@gen12-group-concurrent-oa-buffer-read:
    - shard-rkl:          [DMESG-WARN][435] ([i915#12964]) -> [FAIL][436] ([i915#10538])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html

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

  [IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160
  [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
  [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
  [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
  [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/iss

== Logs ==

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

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

* Re: ✗ i915.CI.Full: failure for tests/gem_mmap_offset: Fix OOM hits (rev2)
  2024-11-28 17:16 ` ✗ i915.CI.Full: " Patchwork
@ 2024-11-29 14:59   ` Janusz Krzysztofik
  2024-12-03  4:37     ` Illipilli, TejasreeX
  0 siblings, 1 reply; 13+ messages in thread
From: Janusz Krzysztofik @ 2024-11-29 14:59 UTC (permalink / raw)
  To: I915-ci-infra, Janusz Krzysztofik; +Cc: igt-dev

Hi I915-ci-infra@lists.freedesktop.org,

On Thursday, 28 November 2024 18:16:48 CET Patchwork wrote:
> == Series Details ==
> 
> Series: tests/gem_mmap_offset: Fix OOM hits (rev2)
> URL   : https://patchwork.freedesktop.org/series/141643/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_8129_full -> IGTPW_12214_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_12214_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_12214_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_12214/index.html
> 
> Participating hosts (10 -> 10)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_12214_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_ctx_exec@basic-norecovery:
>     - shard-mtlp:         [PASS][1] -> [ABORT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@gem_ctx_exec@basic-norecovery.html
> 
>   * igt@gem_tiled_swapping@non-threaded:
>     - shard-tglu-1:       NOTRUN -> [FAIL][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_tiled_swapping@non-threaded.html
>     - shard-snb:          [PASS][4] -> [FAIL][5]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb1/igt@gem_tiled_swapping@non-threaded.html
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb4/igt@gem_tiled_swapping@non-threaded.html
> 
>   * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][6] +6 other tests incomplete
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
> 
>   * igt@kms_pm_rpm@system-suspend-modeset:
>     - shard-rkl:          [PASS][7] -> [SKIP][8]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html

None of the above mentioned possible regressions are related to changes 
introduced by my series, which have only modified igt@gem_mmap_offset@clear 
and introduced igt@gem_mmap_offset@clear-via-pagefault, the former not 
mentioned then apparently succeeded, and the latter reported below as success.  
Please update CBL filters and re-report.

Thanks,
Janusz

> 
>   
> #### Warnings ####
> 
>   * igt@i915_suspend@basic-s3-without-i915:
>     - shard-tglu:         [INCOMPLETE][9] ([i915#7443]) -> [INCOMPLETE][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html
> 
>   
> New tests
> ---------
> 
>   New tests have been introduced between IGT_8129_full and IGTPW_12214_full:
> 
> ### New IGT tests (3) ###
> 
>   * igt@gem_mmap_offset@clear-via-pagefault:
>     - Statuses : 4 pass(s)
>     - Exec time: [22.61, 51.21] s
> 
>   * igt@gem_mmap_offset@clear-via-pagefault@lmem0:
>     - Statuses : 2 pass(s)
>     - Exec time: [23.89, 25.75] s
> 
>   * igt@gem_mmap_offset@clear-via-pagefault@smem0:
>     - Statuses : 4 pass(s)
>     - Exec time: [22.29, 25.45] s
> 
>   
> 
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_12214_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@api_intel_bb@blit-reloc-purge-cache:
>     - shard-dg1:          NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
>     - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#8411]) +1 other test skip
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
>     - shard-rkl:          NOTRUN -> [SKIP][13] ([i915#8411])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html
> 
>   * igt@device_reset@unbind-reset-rebind:
>     - shard-dg1:          NOTRUN -> [ABORT][14] ([i915#11814] / [i915#11815])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html
>     - shard-tglu:         NOTRUN -> [ABORT][15] ([i915#12817] / [i915#5507])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html
> 
>   * igt@drm_fdinfo@virtual-busy-all:
>     - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#8414]) +2 other tests skip
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@drm_fdinfo@virtual-busy-all.html
>     - shard-dg1:          NOTRUN -> [SKIP][17] ([i915#8414]) +2 other tests skip
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@drm_fdinfo@virtual-busy-all.html
>     - shard-mtlp:         NOTRUN -> [SKIP][18] ([i915#8414])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-all.html
> 
>   * igt@gem_ccs@ctrl-surf-copy:
>     - shard-dg1:          NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy.html
> 
>   * igt@gem_close_race@multigpu-basic-process:
>     - shard-tglu:         NOTRUN -> [SKIP][20] ([i915#7697])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_close_race@multigpu-basic-process.html
> 
>   * igt@gem_close_race@multigpu-basic-threads:
>     - shard-dg2:          NOTRUN -> [SKIP][21] ([i915#7697])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@gem_close_race@multigpu-basic-threads.html
> 
>   * igt@gem_create@create-ext-set-pat:
>     - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#8562])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@gem_create@create-ext-set-pat.html
> 
>   * igt@gem_ctx_persistence@file:
>     - shard-snb:          NOTRUN -> [SKIP][23] ([i915#1099])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb1/igt@gem_ctx_persistence@file.html
> 
>   * igt@gem_ctx_persistence@heartbeat-stop:
>     - shard-dg1:          NOTRUN -> [SKIP][24] ([i915#8555])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
>     - shard-mtlp:         NOTRUN -> [SKIP][25] ([i915#8555])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-stop.html
>     - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#8555])
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-stop.html
> 
>   * igt@gem_ctx_persistence@hostile:
>     - shard-tglu-1:       NOTRUN -> [FAIL][27] ([i915#11980] / [i915#12580])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_ctx_persistence@hostile.html
> 
>   * igt@gem_ctx_sseu@engines:
>     - shard-rkl:          NOTRUN -> [SKIP][28] ([i915#280])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_ctx_sseu@engines.html
>     - shard-dg1:          NOTRUN -> [SKIP][29] ([i915#280])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_ctx_sseu@engines.html
>     - shard-tglu:         NOTRUN -> [SKIP][30] ([i915#280])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_ctx_sseu@engines.html
>     - shard-dg2:          NOTRUN -> [SKIP][31] ([i915#280])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_ctx_sseu@engines.html
> 
>   * igt@gem_exec_balancer@bonded-dual:
>     - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#4771])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html
>     - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#4771])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_exec_balancer@bonded-dual.html
> 
>   * igt@gem_exec_balancer@bonded-semaphore:
>     - shard-mtlp:         NOTRUN -> [SKIP][34] ([i915#4812])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_exec_balancer@bonded-semaphore.html
> 
>   * igt@gem_exec_balancer@hog:
>     - shard-dg1:          NOTRUN -> [SKIP][35] ([i915#4812]) +4 other tests skip
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_exec_balancer@hog.html
> 
>   * igt@gem_exec_balancer@invalid-bonds:
>     - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#4036])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html
>     - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#4036])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html
> 
>   * igt@gem_exec_capture@capture-invisible:
>     - shard-dg1:          NOTRUN -> [SKIP][38] ([i915#6334]) +2 other tests skip
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_exec_capture@capture-invisible.html
> 
>   * igt@gem_exec_fence@concurrent:
>     - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_exec_fence@concurrent.html
> 
>   * igt@gem_exec_flush@basic-wb-ro-before-default:
>     - shard-dg1:          NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html
> 
>   * igt@gem_exec_reloc@basic-cpu-noreloc:
>     - shard-mtlp:         NOTRUN -> [SKIP][41] ([i915#3281]) +2 other tests skip
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
> 
>   * igt@gem_exec_reloc@basic-scanout:
>     - shard-rkl:          NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_exec_reloc@basic-scanout.html
> 
>   * igt@gem_exec_reloc@basic-wc-cpu-noreloc:
>     - shard-dg1:          NOTRUN -> [SKIP][43] ([i915#3281]) +14 other tests skip
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
> 
>   * igt@gem_exec_reloc@basic-write-read-active:
>     - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_exec_reloc@basic-write-read-active.html
> 
>   * igt@gem_exec_schedule@preempt-queue-chain:
>     - shard-dg2:          NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-chain.html
> 
>   * igt@gem_exec_suspend@basic-s0@lmem0:
>     - shard-dg2:          [PASS][46] -> [INCOMPLETE][47] ([i915#11441]) +1 other test incomplete
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@gem_exec_suspend@basic-s0@lmem0.html
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html
> 
>   * igt@gem_exec_suspend@basic-s4-devices:
>     - shard-dg2:          NOTRUN -> [ABORT][48] ([i915#7975] / [i915#8213]) +1 other test abort
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html
> 
>   * igt@gem_fenced_exec_thrash@no-spare-fences:
>     - shard-dg1:          NOTRUN -> [SKIP][49] ([i915#4860])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html
> 
>   * igt@gem_huc_copy@huc-copy:
>     - shard-rkl:          NOTRUN -> [SKIP][50] ([i915#2190])
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
>     - shard-tglu-1:       NOTRUN -> [SKIP][51] ([i915#2190])
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
> 
>   * igt@gem_lmem_swapping@heavy-multi:
>     - shard-rkl:          NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@gem_lmem_swapping@heavy-multi.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-multi:
>     - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi.html
>     - shard-tglu-1:       NOTRUN -> [SKIP][54] ([i915#4613])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
>     - shard-glk:          NOTRUN -> [SKIP][55] ([i915#4613]) +4 other tests skip
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
>     - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#4565]) +1 other test skip
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
> 
>   * igt@gem_lmem_swapping@parallel-random-verify-ccs:
>     - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#12193]) +1 other test skip
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
> 
>   * igt@gem_lmem_swapping@smem-oom@lmem0:
>     - shard-dg1:          NOTRUN -> [TIMEOUT][58] ([i915#5493]) +1 other test timeout
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
> 
>   * igt@gem_lmem_swapping@verify:
>     - shard-tglu:         NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_lmem_swapping@verify.html
> 
>   * igt@gem_madvise@dontneed-before-pwrite:
>     - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#3282]) +5 other tests skip
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@gem_madvise@dontneed-before-pwrite.html
> 
>   * igt@gem_mmap@bad-offset:
>     - shard-dg1:          NOTRUN -> [SKIP][61] ([i915#4083]) +5 other tests skip
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_mmap@bad-offset.html
> 
>   * igt@gem_mmap_gtt@basic-copy:
>     - shard-dg2:          NOTRUN -> [SKIP][62] ([i915#4077]) +6 other tests skip
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_mmap_gtt@basic-copy.html
> 
>   * igt@gem_mmap_gtt@basic-small-copy-odd:
>     - shard-dg1:          NOTRUN -> [SKIP][63] ([i915#4077]) +11 other tests skip
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_mmap_gtt@basic-small-copy-odd.html
> 
>   * igt@gem_mmap_wc@close:
>     - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#4083]) +6 other tests skip
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_mmap_wc@close.html
> 
>   * igt@gem_mmap_wc@write-cpu-read-wc:
>     - shard-mtlp:         NOTRUN -> [SKIP][65] ([i915#4083])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_mmap_wc@write-cpu-read-wc.html
> 
>   * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
>     - shard-rkl:          NOTRUN -> [SKIP][66] ([i915#3282]) +4 other tests skip
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
>     - shard-mtlp:         NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
> 
>   * igt@gem_pread@exhaustion:
>     - shard-tglu-1:       NOTRUN -> [WARN][68] ([i915#2658])
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_pread@exhaustion.html
>     - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#3282]) +8 other tests skip
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_pread@exhaustion.html
> 
>   * igt@gem_pwrite@basic-exhaustion:
>     - shard-glk:          NOTRUN -> [WARN][70] ([i915#2658])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk8/igt@gem_pwrite@basic-exhaustion.html
> 
>   * igt@gem_pxp@create-regular-buffer:
>     - shard-rkl:          NOTRUN -> [TIMEOUT][71] ([i915#12917] / [i915#12964])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@gem_pxp@create-regular-buffer.html
> 
>   * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
>     - shard-dg2:          NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
>     - shard-rkl:          NOTRUN -> [TIMEOUT][73] ([i915#12964])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
> 
>   * igt@gem_pxp@hw-rejects-pxp-buffer:
>     - shard-tglu-1:       NOTRUN -> [SKIP][74] ([i915#13033])
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
> 
>   * igt@gem_pxp@regular-baseline-src-copy-readible:
>     - shard-tglu:         [PASS][75] -> [SKIP][76] ([i915#4270])
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
> 
>   * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
>     - shard-dg1:          NOTRUN -> [SKIP][77] ([i915#4270]) +5 other tests skip
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
>     - shard-tglu:         NOTRUN -> [SKIP][78] ([i915#4270])
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
> 
>   * igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
>     - shard-mtlp:         NOTRUN -> [SKIP][79] ([i915#8428])
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
> 
>   * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
>     - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +6 other tests skip
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
> 
>   * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>     - shard-dg2:          NOTRUN -> [SKIP][81] ([i915#4079]) +2 other tests skip
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
> 
>   * igt@gem_set_tiling_vs_gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][82] ([i915#4079]) +1 other test skip
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_set_tiling_vs_gtt.html
> 
>   * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
>     - shard-mtlp:         NOTRUN -> [SKIP][83] ([i915#4077]) +2 other tests skip
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
> 
>   * igt@gem_tiled_pread_pwrite:
>     - shard-dg1:          NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_tiled_pread_pwrite.html
> 
>   * igt@gem_unfence_active_buffers:
>     - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#4879])
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@gem_unfence_active_buffers.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-glk:          NOTRUN -> [SKIP][86] ([i915#3323])
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@readonly-pwrite-unsync:
>     - shard-tglu:         NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
> 
>   * igt@gem_userptr_blits@unsync-overlap:
>     - shard-dg2:          NOTRUN -> [SKIP][88] ([i915#3297])
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_userptr_blits@unsync-overlap.html
>     - shard-rkl:          NOTRUN -> [SKIP][89] ([i915#3297])
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html
> 
>   * igt@gem_userptr_blits@unsync-unmap-cycles:
>     - shard-dg1:          NOTRUN -> [SKIP][90] ([i915#3297]) +3 other tests skip
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-cycles.html
> 
>   * igt@gen7_exec_parse@bitmasks:
>     - shard-dg2:          NOTRUN -> [SKIP][91] +13 other tests skip
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@gen7_exec_parse@bitmasks.html
> 
>   * igt@gen9_exec_parse@batch-invalid-length:
>     - shard-rkl:          NOTRUN -> [SKIP][92] ([i915#2527]) +1 other test skip
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html
> 
>   * igt@gen9_exec_parse@bb-chained:
>     - shard-mtlp:         NOTRUN -> [SKIP][93] ([i915#2856]) +1 other test skip
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gen9_exec_parse@bb-chained.html
> 
>   * igt@gen9_exec_parse@bb-large:
>     - shard-dg1:          NOTRUN -> [SKIP][94] ([i915#2527]) +5 other tests skip
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gen9_exec_parse@bb-large.html
> 
>   * igt@gen9_exec_parse@bb-secure:
>     - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#2856]) +1 other test skip
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gen9_exec_parse@bb-secure.html
> 
>   * igt@gen9_exec_parse@bb-start-cmd:
>     - shard-tglu-1:       NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +2 other tests skip
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
> 
>   * igt@gen9_exec_parse@cmd-crossing-page:
>     - shard-tglu:         NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +4 other tests skip
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@gen9_exec_parse@cmd-crossing-page.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-mtlp:         [PASS][98] -> [ABORT][99] ([i915#10131] / [i915#9820])
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_pm_freq_api@freq-reset:
>     - shard-tglu-1:       NOTRUN -> [SKIP][100] ([i915#8399])
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
> 
>   * igt@i915_pm_freq_mult@media-freq@gt0:
>     - shard-tglu-1:       NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
>     - shard-dg1:          [PASS][102] -> [FAIL][103] ([i915#12548] / [i915#3591])
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
> 
>   * igt@i915_pm_rps@min-max-config-idle:
>     - shard-dg1:          NOTRUN -> [SKIP][104] ([i915#11681] / [i915#6621]) +1 other test skip
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rps@min-max-config-idle.html
> 
>   * igt@i915_pm_rps@thresholds-idle-park:
>     - shard-mtlp:         NOTRUN -> [SKIP][105] ([i915#11681])
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@i915_pm_rps@thresholds-idle-park.html
> 
>   * igt@i915_pm_sseu@full-enable:
>     - shard-dg2:          NOTRUN -> [SKIP][106] ([i915#4387])
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@i915_pm_sseu@full-enable.html
> 
>   * igt@i915_power@sanity:
>     - shard-mtlp:         [PASS][107] -> [SKIP][108] ([i915#7984])
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@i915_power@sanity.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@i915_power@sanity.html
> 
>   * igt@i915_query@hwconfig_table:
>     - shard-tglu-1:       NOTRUN -> [SKIP][109] ([i915#6245])
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@i915_query@hwconfig_table.html
>     - shard-dg1:          NOTRUN -> [SKIP][110] ([i915#6245])
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@i915_query@hwconfig_table.html
> 
>   * igt@i915_query@test-query-geometry-subslices:
>     - shard-tglu:         NOTRUN -> [SKIP][111] ([i915#5723])
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html
> 
>   * igt@kms_addfb_basic@basic-y-tiled-legacy:
>     - shard-dg1:          NOTRUN -> [SKIP][112] ([i915#4215])
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
> 
>   * igt@kms_addfb_basic@bo-too-small-due-to-tiling:
>     - shard-dg2:          NOTRUN -> [SKIP][113] ([i915#4212])
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
> 
>   * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
>     - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#8709]) +11 other tests skip
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
>     - shard-dg2:          NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555])
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>     - shard-rkl:          NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555])
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>     - shard-dg1:          NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555])
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>     - shard-tglu:         NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555])
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>     - shard-glk:          NOTRUN -> [SKIP][119] ([i915#1769])
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
> 
>   * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
>     - shard-tglu:         NOTRUN -> [SKIP][120] ([i915#5286]) +4 other tests skip
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
> 
>   * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
>     - shard-mtlp:         [PASS][121] -> [FAIL][122] ([i915#12469] / [i915#5138])
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
> 
>   * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
>     - shard-tglu-1:       NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
>     - shard-dg1:          NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +6 other tests skip
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
> 
>   * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
>     - shard-rkl:          NOTRUN -> [SKIP][125] ([i915#5286]) +1 other test skip
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
>     - shard-dg1:          NOTRUN -> [SKIP][126] ([i915#5286])
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@linear-8bpp-rotate-270:
>     - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
>     - shard-dg1:          NOTRUN -> [SKIP][128] ([i915#3638]) +4 other tests skip
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
>     - shard-dg2:          NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +7 other tests skip
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-addfb-size-overflow:
>     - shard-dg2:          NOTRUN -> [SKIP][130] ([i915#5190]) +1 other test skip
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
>     - shard-mtlp:         NOTRUN -> [SKIP][131] ([i915#6187]) +1 other test skip
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
>     - shard-mtlp:         NOTRUN -> [SKIP][132] +6 other tests skip
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
>     - shard-dg1:          NOTRUN -> [SKIP][133] ([i915#4538]) +8 other tests skip
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
> 
>   * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
>     - shard-glk:          NOTRUN -> [SKIP][134] +333 other tests skip
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html
> 
>   * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
>     - shard-dg2:          NOTRUN -> [SKIP][135] ([i915#12313]) +2 other tests skip
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
>     - shard-rkl:          NOTRUN -> [SKIP][136] ([i915#12313])
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
>     - shard-tglu:         NOTRUN -> [SKIP][137] ([i915#12313])
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
>     - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#12313])
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
> 
>   * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
>     - shard-tglu:         NOTRUN -> [SKIP][139] ([i915#6095]) +104 other tests skip
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +174 other tests skip
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>     - shard-tglu:         NOTRUN -> [SKIP][141] ([i915#12805])
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
>     - shard-rkl:          NOTRUN -> [SKIP][142] ([i915#6095]) +92 other tests skip
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#6095]) +19 other tests skip
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
>     - shard-dg1:          NOTRUN -> [SKIP][144] ([i915#12805])
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
>     - shard-tglu-1:       NOTRUN -> [SKIP][145] ([i915#6095]) +54 other tests skip
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3:
>     - shard-dg1:          NOTRUN -> [SKIP][146] ([i915#6095]) +151 other tests skip
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#6095]) +11 other tests skip
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
>     - shard-dg1:          NOTRUN -> [SKIP][148] ([i915#12313]) +3 other tests skip
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
>     - shard-dg2:          NOTRUN -> [SKIP][149] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_cdclk@mode-transition:
>     - shard-tglu-1:       NOTRUN -> [SKIP][150] ([i915#3742])
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_cdclk@mode-transition.html
> 
>   * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
>     - shard-dg2:          NOTRUN -> [SKIP][151] ([i915#11616] / [i915#7213]) +3 other tests skip
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_cdclk@plane-scaling:
>     - shard-dg1:          NOTRUN -> [SKIP][152] ([i915#3742]) +1 other test skip
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_cdclk@plane-scaling.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][153] ([i915#4087]) +4 other tests skip
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
> 
>   * igt@kms_chamelium_audio@hdmi-audio-edid:
>     - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#7828]) +9 other tests skip
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html
> 
>   * igt@kms_chamelium_color@ctm-0-50:
>     - shard-dg1:          NOTRUN -> [SKIP][155] +65 other tests skip
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_chamelium_color@ctm-0-50.html
> 
>   * igt@kms_chamelium_frames@dp-crc-fast:
>     - shard-dg2:          NOTRUN -> [SKIP][156] ([i915#7828]) +8 other tests skip
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-fast.html
> 
>   * igt@kms_chamelium_frames@hdmi-crc-fast:
>     - shard-rkl:          NOTRUN -> [SKIP][157] ([i915#7828]) +3 other tests skip
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html
> 
>   * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
>     - shard-mtlp:         NOTRUN -> [SKIP][158] ([i915#7828]) +3 other tests skip
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
> 
>   * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
>     - shard-tglu-1:       NOTRUN -> [SKIP][159] ([i915#7828]) +6 other tests skip
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
> 
>   * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
>     - shard-tglu:         NOTRUN -> [SKIP][160] ([i915#7828]) +10 other tests skip
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
> 
>   * igt@kms_content_protection@atomic:
>     - shard-tglu:         NOTRUN -> [SKIP][161] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_content_protection@atomic.html
> 
>   * igt@kms_content_protection@dp-mst-type-1:
>     - shard-tglu-1:       NOTRUN -> [SKIP][162] ([i915#3116] / [i915#3299])
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
> 
>   * igt@kms_content_protection@lic-type-0:
>     - shard-dg1:          NOTRUN -> [SKIP][163] ([i915#9424])
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_content_protection@lic-type-0.html
> 
>   * igt@kms_content_protection@mei-interface:
>     - shard-tglu-1:       NOTRUN -> [SKIP][164] ([i915#6944] / [i915#9424])
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_content_protection@mei-interface.html
> 
>   * igt@kms_content_protection@srm@pipe-a-dp-4:
>     - shard-dg2:          NOTRUN -> [TIMEOUT][165] ([i915#7173])
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-4.html
> 
>   * igt@kms_content_protection@uevent:
>     - shard-dg1:          NOTRUN -> [SKIP][166] ([i915#7116] / [i915#9424])
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_content_protection@uevent.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-32x10:
>     - shard-mtlp:         NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8814]) +1 other test skip
>    [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-32x10.html
> 
>   * igt@kms_cursor_crc@cursor-random-512x512:
>     - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#13049]) +1 other test skip
>    [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
>     - shard-rkl:          NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip
>    [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
>     - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip
>    [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html
>     - shard-mtlp:         NOTRUN -> [SKIP][171] ([i915#13049])
>    [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
>     - shard-tglu:         NOTRUN -> [SKIP][172] ([i915#13049]) +3 other tests skip
>    [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>     - shard-tglu-1:       NOTRUN -> [SKIP][173] ([i915#4103])
>    [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
>     - shard-mtlp:         NOTRUN -> [SKIP][174] ([i915#4213])
>    [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
>     - shard-dg2:          NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213])
>    [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
>     - shard-mtlp:         NOTRUN -> [SKIP][176] ([i915#9809]) +1 other test skip
>    [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
>     - shard-rkl:          NOTRUN -> [SKIP][177] +6 other tests skip
>    [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
>     - shard-snb:          [PASS][178] -> [FAIL][179] ([i915#2346])
>    [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
>    [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
>     - shard-dg1:          NOTRUN -> [SKIP][180] ([i915#4103] / [i915#4213]) +1 other test skip
>    [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
>     - shard-tglu:         NOTRUN -> [SKIP][181] ([i915#4103])
>    [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
>     - shard-tglu:         NOTRUN -> [SKIP][182] ([i915#9723])
>    [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
> 
>   * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>     - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#9833])
>    [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
> 
>   * igt@kms_display_modes@mst-extended-mode-negative:
>     - shard-tglu:         NOTRUN -> [SKIP][184] ([i915#8588])
>    [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@kms_display_modes@mst-extended-mode-negative.html
> 
>   * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
>     - shard-tglu:         NOTRUN -> [SKIP][185] ([i915#1769] / [i915#3555] / [i915#3804])
>    [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
> 
>   * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
>     - shard-tglu:         NOTRUN -> [SKIP][186] ([i915#3804])
>    [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_dp_linktrain_fallback@dp-fallback:
>     - shard-dg2:          NOTRUN -> [SKIP][187] ([i915#12402])
>    [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
> 
>   * igt@kms_draw_crc@draw-method-mmap-wc:
>     - shard-dg1:          NOTRUN -> [SKIP][188] ([i915#8812])
>    [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-wc.html
> 
>   * igt@kms_dsc@dsc-fractional-bpp:
>     - shard-dg2:          NOTRUN -> [SKIP][189] ([i915#3840] / [i915#9688])
>    [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp.html
>     - shard-dg1:          NOTRUN -> [SKIP][190] ([i915#3840]) +1 other test skip
>    [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html
> 
>   * igt@kms_dsc@dsc-with-formats:
>     - shard-tglu:         NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840])
>    [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html
> 
>   * igt@kms_dsc@dsc-with-output-formats:
>     - shard-dg1:          NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840])
>    [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][193] ([i915#9878])
>    [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk4/igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_feature_discovery@display-2x:
>     - shard-dg2:          NOTRUN -> [SKIP][194] ([i915#1839])
>    [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_feature_discovery@display-2x.html
> 
>   * igt@kms_feature_discovery@display-3x:
>     - shard-tglu-1:       NOTRUN -> [SKIP][195] ([i915#1839]) +1 other test skip
>    [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
> 
>   * igt@kms_feature_discovery@psr1:
>     - shard-tglu:         NOTRUN -> [SKIP][196] ([i915#658])
>    [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-9/igt@kms_feature_discovery@psr1.html
> 
>   * igt@kms_feature_discovery@psr2:
>     - shard-tglu-1:       NOTRUN -> [SKIP][197] ([i915#658])
>    [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_feature_discovery@psr2.html
>     - shard-dg2:          NOTRUN -> [SKIP][198] ([i915#658])
>    [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_feature_discovery@psr2.html
> 
>   * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
>     - shard-mtlp:         NOTRUN -> [SKIP][199] ([i915#3637])
>    [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-panning-vs-hang:
>     - shard-tglu-1:       NOTRUN -> [SKIP][200] ([i915#3637]) +2 other tests skip
>    [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
> 
>   * igt@kms_flip@2x-modeset-vs-vblank-race:
>     - shard-dg2:          NOTRUN -> [SKIP][201] ([i915#9934]) +7 other tests skip
>    [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
>     - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#9934]) +2 other tests skip
>    [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
>     - shard-dg1:          NOTRUN -> [SKIP][203] ([i915#9934]) +7 other tests skip
>    [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_flip@2x-modeset-vs-vblank-race.html
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate:
>     - shard-tglu:         NOTRUN -> [SKIP][204] ([i915#3637]) +7 other tests skip
>    [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_flip@2x-plain-flip-fb-recreate.html
> 
>   * igt@kms_flip@absolute-wf_vblank-interruptible:
>     - shard-rkl:          [PASS][205] -> [DMESG-WARN][206] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn
>    [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_flip@absolute-wf_vblank-interruptible.html
>    [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_flip@absolute-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][207] ([i915#4839])
>    [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk9/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
>     - shard-mtlp:         NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8810] / [i915#8813])
>    [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8810])
>    [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
>     - shard-tglu-1:       NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672]) +1 other test skip
>    [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
>     - shard-tglu:         NOTRUN -> [SKIP][211] ([i915#2587] / [i915#2672]) +3 other tests skip
>    [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
>     - shard-dg1:          NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672]) +5 other tests skip
>    [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
>     - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +3 other tests skip
>    [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
>     - shard-tglu:         NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555]) +3 other tests skip
>    [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
>     - shard-dg1:          NOTRUN -> [SKIP][215] ([i915#2587] / [i915#2672] / [i915#3555])
>    [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
>     - shard-dg2:          NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
>    [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
>     - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#2672]) +5 other tests skip
>    [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
>     - shard-tglu-1:       NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +1 other test skip
>    [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
>     - shard-rkl:          NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555]) +1 other test skip
>    [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
>     - shard-dg1:          NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555]) +4 other tests skip
>    [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
>     - shard-rkl:          NOTRUN -> [SKIP][221] ([i915#2672]) +1 other test skip
>    [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>     - shard-mtlp:         NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
>    [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
>     - shard-rkl:          [PASS][223] -> [DMESG-WARN][224] ([i915#12964]) +58 other tests dmesg-warn
>    [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
>    [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
>     - shard-dg2:          [PASS][225] -> [FAIL][226] ([i915#6880]) +1 other test fail
>    [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
>    [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
>     - shard-mtlp:         NOTRUN -> [SKIP][227] ([i915#1825]) +6 other tests skip
>    [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
>     - shard-snb:          [PASS][228] -> [SKIP][229] +4 other tests skip
>    [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
>    [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
>     - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#5354]) +27 other tests skip
>    [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
>     - shard-rkl:          NOTRUN -> [SKIP][231] ([i915#1825]) +10 other tests skip
>    [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
>     - shard-tglu-1:       NOTRUN -> [SKIP][232] +56 other tests skip
>    [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
>     - shard-dg2:          NOTRUN -> [FAIL][233] ([i915#6880])
>    [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-suspend:
>     - shard-rkl:          [PASS][234] -> [DMESG-FAIL][235] ([i915#12964])
>    [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
>    [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
>     - shard-glk:          NOTRUN -> [INCOMPLETE][236] ([i915#10056])
>    [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
>     - shard-dg2:          NOTRUN -> [SKIP][237] ([i915#3458]) +10 other tests skip
>    [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
>     - shard-tglu:         NOTRUN -> [SKIP][238] +76 other tests skip
>    [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][239] ([i915#8708]) +3 other tests skip
>    [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
>     - shard-rkl:          NOTRUN -> [SKIP][240] ([i915#3023]) +7 other tests skip
>    [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
>     - shard-dg1:          NOTRUN -> [SKIP][241] ([i915#8708]) +22 other tests skip
>    [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
>     - shard-dg1:          NOTRUN -> [SKIP][242] ([i915#5439])
>    [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
>     - shard-dg2:          NOTRUN -> [SKIP][243] ([i915#8708]) +19 other tests skip
>    [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
>     - shard-dg1:          NOTRUN -> [SKIP][244] ([i915#3458]) +18 other tests skip
>    [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
> 
>   * igt@kms_hdr@bpc-switch-dpms:
>     - shard-dg2:          [PASS][245] -> [SKIP][246] ([i915#3555] / [i915#8228])
>    [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
>    [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html
> 
>   * igt@kms_hdr@brightness-with-hdr:
>     - shard-dg2:          NOTRUN -> [SKIP][247] ([i915#12713])
>    [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
>     - shard-dg1:          NOTRUN -> [SKIP][248] ([i915#1187] / [i915#12713])
>    [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
> 
>   * igt@kms_hdr@invalid-hdr:
>     - shard-tglu-1:       NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228])
>    [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_hdr@invalid-hdr.html
> 
>   * igt@kms_hdr@invalid-metadata-sizes:
>     - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228]) +1 other test skip
>    [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
>     - shard-rkl:          NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228])
>    [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
>     - shard-tglu:         NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228])
>    [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_hdr@invalid-metadata-sizes.html
> 
>   * igt@kms_hdr@static-toggle:
>     - shard-dg1:          NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) +1 other test skip
>    [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_hdr@static-toggle.html
> 
>   * igt@kms_hdr@static-toggle-dpms:
>     - shard-mtlp:         NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228])
>    [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@kms_hdr@static-toggle-dpms.html
> 
>   * igt@kms_joiner@basic-big-joiner:
>     - shard-dg2:          NOTRUN -> [SKIP][255] ([i915#10656])
>    [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_joiner@basic-big-joiner.html
> 
>   * igt@kms_joiner@basic-ultra-joiner:
>     - shard-tglu:         NOTRUN -> [SKIP][256] ([i915#12339])
>    [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_joiner@basic-ultra-joiner.html
> 
>   * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>     - shard-dg2:          NOTRUN -> [SKIP][257] ([i915#4816])
>    [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][258] ([i915#12756])
>    [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc.html
> 
>   * igt@kms_plane_scaling@intel-max-src-size:
>     - shard-dg2:          NOTRUN -> [SKIP][259] ([i915#6953] / [i915#9423])
>    [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html
>     - shard-dg1:          NOTRUN -> [SKIP][260] ([i915#6953])
>    [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
>     - shard-dg2:          NOTRUN -> [SKIP][261] ([i915#12247] / [i915#9423]) +1 other test skip
>    [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
>     - shard-rkl:          NOTRUN -> [SKIP][262] ([i915#12247]) +2 other tests skip
>    [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
>     - shard-tglu:         NOTRUN -> [SKIP][263] ([i915#12247]) +14 other tests skip
>    [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
>     - shard-dg2:          NOTRUN -> [SKIP][264] ([i915#12247]) +7 other tests skip
>    [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
> 
>   * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
>     - shard-tglu-1:       NOTRUN -> [SKIP][265] ([i915#12247]) +3 other tests skip
>    [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
>     - shard-mtlp:         NOTRUN -> [SKIP][266] ([i915#12247]) +4 other tests skip
>    [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
>     - shard-dg1:          NOTRUN -> [SKIP][267] ([i915#12247]) +18 other tests skip
>    [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
> 
>   * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
>     - shard-dg1:          NOTRUN -> [SKIP][268] ([i915#12247] / [i915#6953])
>    [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
> 
>   * igt@kms_pm_backlight@brightness-with-dpms:
>     - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#12343])
>    [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_pm_backlight@brightness-with-dpms.html
> 
>   * igt@kms_pm_backlight@fade-with-dpms:
>     - shard-rkl:          NOTRUN -> [SKIP][270] ([i915#5354]) +1 other test skip
>    [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
>     - shard-dg1:          NOTRUN -> [SKIP][271] ([i915#5354]) +1 other test skip
>    [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html
>     - shard-tglu:         NOTRUN -> [SKIP][272] ([i915#9812]) +1 other test skip
>    [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html
> 
>   * igt@kms_pm_dc@dc3co-vpb-simulation:
>     - shard-dg2:          NOTRUN -> [SKIP][273] ([i915#9685])
>    [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@kms_pm_dc@dc5-psr:
>     - shard-dg1:          NOTRUN -> [SKIP][274] ([i915#9685])
>    [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_pm_dc@dc5-psr.html
> 
>   * igt@kms_pm_lpsp@screens-disabled:
>     - shard-mtlp:         NOTRUN -> [SKIP][275] ([i915#8430])
>    [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_pm_lpsp@screens-disabled.html
> 
>   * igt@kms_pm_rpm@dpms-lpsp:
>     - shard-dg2:          [PASS][276] -> [SKIP][277] ([i915#9519]) +1 other test skip
>    [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
>    [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-lpsp:
>     - shard-dg2:          NOTRUN -> [SKIP][278] ([i915#9519])
>    [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
>     - shard-rkl:          NOTRUN -> [SKIP][279] ([i915#9519])
>    [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
>     - shard-dg1:          NOTRUN -> [SKIP][280] ([i915#9519])
>    [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-lpsp-stress:
>     - shard-rkl:          [PASS][281] -> [SKIP][282] ([i915#9519]) +1 other test skip
>    [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
>    [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
> 
>   * igt@kms_pm_rpm@modeset-non-lpsp-stress:
>     - shard-tglu:         NOTRUN -> [SKIP][283] ([i915#9519])
>    [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
> 
>   * igt@kms_prime@basic-modeset-hybrid:
>     - shard-dg1:          NOTRUN -> [SKIP][284] ([i915#6524]) +1 other test skip
>    [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_prime@basic-modeset-hybrid.html
>     - shard-tglu:         NOTRUN -> [SKIP][285] ([i915#6524])
>    [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_prime@basic-modeset-hybrid.html
> 
>   * igt@kms_prime@d3hot:
>     - shard-dg2:          NOTRUN -> [SKIP][286] ([i915#6524] / [i915#6805])
>    [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_prime@d3hot.html
> 
>   * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
>     - shard-tglu:         NOTRUN -> [SKIP][287] ([i915#11520]) +7 other tests skip
>    [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
>     - shard-tglu-1:       NOTRUN -> [SKIP][288] ([i915#11520]) +3 other tests skip
>    [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
>     - shard-mtlp:         NOTRUN -> [SKIP][289] ([i915#12316]) +1 other test skip
>    [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][290] ([i915#9808])
>    [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
>     - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#11520]) +7 other tests skip
>    [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
>     - shard-dg1:          NOTRUN -> [SKIP][292] ([i915#11520]) +10 other tests skip
>    [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
>     - shard-rkl:          NOTRUN -> [SKIP][293] ([i915#11520]) +1 other test skip
>    [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
> 
>   * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
>     - shard-glk:          NOTRUN -> [SKIP][294] ([i915#11520]) +10 other tests skip
>    [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk8/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
> 
>   * igt@kms_psr2_su@frontbuffer-xrgb8888:
>     - shard-dg2:          NOTRUN -> [SKIP][295] ([i915#9683])
>    [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
> 
>   * igt@kms_psr2_su@page_flip-p010:
>     - shard-dg1:          NOTRUN -> [SKIP][296] ([i915#9683]) +1 other test skip
>    [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_psr2_su@page_flip-p010.html
> 
>   * igt@kms_psr@fbc-pr-sprite-render:
>     - shard-tglu-1:       NOTRUN -> [SKIP][297] ([i915#9732]) +10 other tests skip
>    [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html
> 
>   * igt@kms_psr@fbc-psr-sprite-blt:
>     - shard-dg2:          NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +18 other tests skip
>    [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_psr@fbc-psr-sprite-blt.html
> 
>   * igt@kms_psr@fbc-psr-sprite-plane-move:
>     - shard-mtlp:         NOTRUN -> [SKIP][299] ([i915#9688]) +2 other tests skip
>    [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_psr@fbc-psr-sprite-plane-move.html
> 
>   * igt@kms_psr@psr2-cursor-render:
>     - shard-tglu:         NOTRUN -> [SKIP][300] ([i915#9732]) +15 other tests skip
>    [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_psr@psr2-cursor-render.html
> 
>   * igt@kms_psr@psr2-sprite-mmap-gtt:
>     - shard-dg1:          NOTRUN -> [SKIP][301] ([i915#1072] / [i915#9732]) +26 other tests skip
>    [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html
> 
>   * igt@kms_psr@psr2-suspend:
>     - shard-rkl:          NOTRUN -> [SKIP][302] ([i915#1072] / [i915#9732]) +9 other tests skip
>    [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_psr@psr2-suspend.html
> 
>   * igt@kms_pwrite_crc:
>     - shard-rkl:          NOTRUN -> [DMESG-WARN][303] ([i915#12964]) +6 other tests dmesg-warn
>    [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_pwrite_crc.html
> 
>   * igt@kms_rotation_crc@bad-pixel-format:
>     - shard-snb:          NOTRUN -> [SKIP][304] +78 other tests skip
>    [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@kms_rotation_crc@bad-pixel-format.html
>     - shard-mtlp:         NOTRUN -> [SKIP][305] ([i915#12755])
>    [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_rotation_crc@bad-pixel-format.html
> 
>   * igt@kms_rotation_crc@primary-rotation-270:
>     - shard-dg2:          NOTRUN -> [SKIP][306] ([i915#12755]) +1 other test skip
>    [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html
> 
>   * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>     - shard-tglu:         NOTRUN -> [SKIP][307] ([i915#5289])
>    [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
> 
>   * igt@kms_scaling_modes@scaling-mode-center:
>     - shard-tglu-1:       NOTRUN -> [SKIP][308] ([i915#3555]) +4 other tests skip
>    [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html
> 
>   * igt@kms_scaling_modes@scaling-mode-full:
>     - shard-tglu:         NOTRUN -> [SKIP][309] ([i915#3555]) +7 other tests skip
>    [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full.html
> 
>   * igt@kms_selftest@drm_framebuffer:
>     - shard-dg1:          NOTRUN -> [ABORT][310] ([i915#12231]) +1 other test abort
>    [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_selftest@drm_framebuffer.html
>     - shard-glk:          NOTRUN -> [ABORT][311] ([i915#12231]) +1 other test abort
>    [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk1/igt@kms_selftest@drm_framebuffer.html
> 
>   * igt@kms_setmode@invalid-clone-single-crtc-stealing:
>     - shard-dg2:          NOTRUN -> [SKIP][312] ([i915#3555]) +2 other tests skip
>    [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
>     - shard-rkl:          NOTRUN -> [SKIP][313] ([i915#3555]) +2 other tests skip
>    [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
>     - shard-dg1:          NOTRUN -> [SKIP][314] ([i915#3555]) +5 other tests skip
>    [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
> 
>   * igt@kms_sysfs_edid_timing:
>     - shard-dg2:          NOTRUN -> [FAIL][315] ([IGT#160])
>    [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_sysfs_edid_timing.html
>     - shard-dg1:          NOTRUN -> [FAIL][316] ([IGT#160] / [i915#6493])
>    [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_sysfs_edid_timing.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-dg2:          NOTRUN -> [SKIP][317] ([i915#8623])
>    [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_vrr@flip-basic-fastset:
>     - shard-tglu-1:       NOTRUN -> [SKIP][318] ([i915#9906])
>    [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html
> 
>   * igt@kms_vrr@max-min:
>     - shard-tglu:         NOTRUN -> [SKIP][319] ([i915#9906]) +1 other test skip
>    [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_vrr@max-min.html
> 
>   * igt@kms_vrr@negative-basic:
>     - shard-dg2:          NOTRUN -> [SKIP][320] ([i915#3555] / [i915#9906])
>    [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_vrr@negative-basic.html
>     - shard-rkl:          NOTRUN -> [SKIP][321] ([i915#3555] / [i915#9906])
>    [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_vrr@negative-basic.html
>     - shard-dg1:          NOTRUN -> [SKIP][322] ([i915#3555] / [i915#9906])
>    [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_vrr@negative-basic.html
>     - shard-tglu:         NOTRUN -> [SKIP][323] ([i915#3555] / [i915#9906])
>    [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_vrr@negative-basic.html
> 
>   * igt@kms_vrr@seamless-rr-switch-virtual:
>     - shard-dg1:          NOTRUN -> [SKIP][324] ([i915#9906]) +2 other tests skip
>    [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-virtual.html
> 
>   * igt@kms_writeback@writeback-check-output:
>     - shard-glk:          NOTRUN -> [SKIP][325] ([i915#2437])
>    [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk5/igt@kms_writeback@writeback-check-output.html
> 
>   * igt@kms_writeback@writeback-check-output-xrgb2101010:
>     - shard-tglu-1:       NOTRUN -> [SKIP][326] ([i915#2437] / [i915#9412])
>    [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
> 
>   * igt@kms_writeback@writeback-fb-id:
>     - shard-tglu:         NOTRUN -> [SKIP][327] ([i915#2437]) +1 other test skip
>    [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_writeback@writeback-fb-id.html
> 
>   * igt@kms_writeback@writeback-fb-id-xrgb2101010:
>     - shard-tglu:         NOTRUN -> [SKIP][328] ([i915#2437] / [i915#9412])
>    [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
> 
>   * igt@kms_writeback@writeback-invalid-parameters:
>     - shard-dg1:          NOTRUN -> [SKIP][329] ([i915#2437]) +1 other test skip
>    [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html
>     - shard-dg2:          NOTRUN -> [SKIP][330] ([i915#2437])
>    [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html
>     - shard-rkl:          NOTRUN -> [SKIP][331] ([i915#2437])
>    [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_writeback@writeback-invalid-parameters.html
> 
>   * igt@perf@mi-rpc:
>     - shard-dg2:          NOTRUN -> [SKIP][332] ([i915#2434])
>    [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@perf@mi-rpc.html
> 
>   * igt@perf_pmu@busy-idle@ccs0:
>     - shard-mtlp:         [PASS][333] -> [FAIL][334] ([i915#4349]) +11 other tests fail
>    [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@perf_pmu@busy-idle@ccs0.html
>    [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@perf_pmu@busy-idle@ccs0.html
>     - shard-dg2:          [PASS][335] -> [FAIL][336] ([i915#4349]) +7 other tests fail
>    [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@perf_pmu@busy-idle@ccs0.html
>    [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@perf_pmu@busy-idle@ccs0.html
> 
>   * igt@perf_pmu@cpu-hotplug:
>     - shard-tglu:         NOTRUN -> [SKIP][337] ([i915#8850])
>    [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html
> 
>   * igt@perf_pmu@most-busy-check-all:
>     - shard-rkl:          [PASS][338] -> [FAIL][339] ([i915#4349]) +1 other test fail
>    [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
>    [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
> 
>   * igt@perf_pmu@rc6-all-gts:
>     - shard-dg1:          NOTRUN -> [SKIP][340] ([i915#8516]) +1 other test skip
>    [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html
> 
>   * igt@perf_pmu@rc6@other-idle-gt0:
>     - shard-dg2:          NOTRUN -> [SKIP][341] ([i915#8516])
>    [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html
> 
>   * igt@perf_pmu@render-node-busy-idle@vcs0:
>     - shard-dg2:          NOTRUN -> [FAIL][342] ([i915#4349]) +5 other tests fail
>    [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@perf_pmu@render-node-busy-idle@vcs0.html
> 
>   * igt@perf_pmu@semaphore-busy@vcs1:
>     - shard-dg1:          [PASS][343] -> [FAIL][344] ([i915#4349]) +3 other tests fail
>    [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html
>    [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html
> 
>   * igt@prime_vgem@basic-fence-read:
>     - shard-dg1:          NOTRUN -> [SKIP][345] ([i915#3708])
>    [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@prime_vgem@basic-fence-read.html
> 
>   * igt@prime_vgem@coherency-gtt:
>     - shard-dg1:          NOTRUN -> [SKIP][346] ([i915#3708] / [i915#4077])
>    [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@prime_vgem@coherency-gtt.html
> 
>   * igt@prime_vgem@fence-flip-hang:
>     - shard-dg2:          NOTRUN -> [SKIP][347] ([i915#3708])
>    [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@prime_vgem@fence-flip-hang.html
> 
>   * igt@sriov_basic@enable-vfs-autoprobe-on:
>     - shard-dg1:          NOTRUN -> [SKIP][348] ([i915#9917])
>    [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-on.html
> 
>   * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
>     - shard-dg2:          NOTRUN -> [SKIP][349] ([i915#9917])
>    [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
> 
>   * igt@tools_test@sysfs_l3_parity:
>     - shard-dg1:          NOTRUN -> [SKIP][350] ([i915#4818])
>    [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ccs@suspend-resume:
>     - shard-dg2:          [INCOMPLETE][351] ([i915#7297]) -> [PASS][352] +1 other test pass
>    [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-5/igt@gem_ccs@suspend-resume.html
>    [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@gem_ccs@suspend-resume.html
> 
>   * igt@gem_eio@hibernate:
>     - shard-tglu:         [ABORT][353] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][354]
>    [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-10/igt@gem_eio@hibernate.html
>    [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_eio@hibernate.html
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-dg1:          [DMESG-WARN][355] ([i915#4391] / [i915#4423]) -> [PASS][356]
>    [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@gem_eio@in-flight-suspend.html
>    [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_eio@in-flight-suspend.html
> 
>   * igt@gem_eio@kms:
>     - shard-tglu:         [DMESG-WARN][357] -> [PASS][358]
>    [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-9/igt@gem_eio@kms.html
>    [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-8/igt@gem_eio@kms.html
> 
>   * igt@gem_exec_whisper@basic-queues-priority:
>     - shard-rkl:          [DMESG-WARN][359] ([i915#12917] / [i915#12964]) -> [PASS][360]
>    [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-2/igt@gem_exec_whisper@basic-queues-priority.html
>    [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_exec_whisper@basic-queues-priority.html
> 
>   * igt@gem_pxp@verify-pxp-stale-buf-execution:
>     - shard-tglu:         [SKIP][361] ([i915#4270]) -> [PASS][362] +1 other test pass
>    [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
>    [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html
> 
>   * igt@gem_workarounds@suspend-resume:
>     - shard-rkl:          [DMESG-FAIL][363] ([i915#12964]) -> [PASS][364]
>    [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@gem_workarounds@suspend-resume.html
>    [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_workarounds@suspend-resume.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
>     - shard-dg1:          [FAIL][365] ([i915#12548] / [i915#3591]) -> [PASS][366]
>    [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
>    [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
> 
>   * igt@i915_pm_rps@reset:
>     - shard-snb:          [INCOMPLETE][367] ([i915#7790]) -> [PASS][368]
>    [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb4/igt@i915_pm_rps@reset.html
>    [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@i915_pm_rps@reset.html
> 
>   * igt@i915_selftest@live@workarounds:
>     - shard-mtlp:         [ABORT][369] ([i915#12061]) -> [PASS][370] +1 other test pass
>    [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
>    [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
> 
>   * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
>     - shard-dg1:          [DMESG-WARN][371] ([i915#4423]) -> [PASS][372] +2 other tests pass
>    [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
>    [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
> 
>   * igt@kms_flip@2x-flip-vs-fences-interruptible:
>     - shard-snb:          [INCOMPLETE][373] -> [PASS][374] +1 other test pass
>    [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
>    [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
> 
>   * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3:
>     - shard-dg2:          [FAIL][375] ([i915#11989]) -> [PASS][376] +5 other tests pass
>    [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3.html
>    [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3.html
> 
>   * igt@kms_flip@flip-vs-rmfb-interruptible:
>     - shard-dg2:          [INCOMPLETE][377] ([i915#6113]) -> [PASS][378] +1 other test pass
>    [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_flip@flip-vs-rmfb-interruptible.html
>    [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@kms_flip@flip-vs-rmfb-interruptible.html
> 
>   * igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3:
>     - shard-dg1:          [INCOMPLETE][379] ([i915#6113]) -> [PASS][380] +1 other test pass
>    [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3.html
>    [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3.html
> 
>   * igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1:
>     - shard-mtlp:         [FAIL][381] ([i915#11989]) -> [PASS][382] +4 other tests pass
>    [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
>    [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
> 
>   * igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1:
>     - shard-snb:          [FAIL][383] ([i915#11989]) -> [PASS][384] +5 other tests pass
>    [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
>    [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
>     - shard-snb:          [SKIP][385] -> [PASS][386] +3 other tests pass
>    [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
>    [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
>     - shard-dg2:          [FAIL][387] ([i915#6880]) -> [PASS][388]
>    [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
>    [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
> 
>   * igt@kms_plane_cursor@primary:
>     - shard-mtlp:         [DMESG-WARN][389] ([i915#1982]) -> [PASS][390] +1 other test pass
>    [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-2/igt@kms_plane_cursor@primary.html
>    [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@kms_plane_cursor@primary.html
> 
>   * igt@kms_pm_dc@dc6-dpms:
>     - shard-tglu:         [FAIL][391] ([i915#9295]) -> [PASS][392]
>    [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
>    [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
> 
>   * igt@kms_pm_rpm@modeset-non-lpsp-stress:
>     - shard-dg2:          [SKIP][393] ([i915#9519]) -> [PASS][394] +1 other test pass
>    [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
>    [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
> 
>   * igt@perf@gen12-oa-tlb-invalidate:
>     - shard-rkl:          [DMESG-WARN][395] ([i915#12964]) -> [PASS][396] +52 other tests pass
>    [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@perf@gen12-oa-tlb-invalidate.html
>    [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@perf@gen12-oa-tlb-invalidate.html
> 
>   * igt@perf_pmu@all-busy-idle-check-all:
>     - shard-dg2:          [FAIL][397] ([i915#11943]) -> [PASS][398]
>    [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html
>    [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html
>     - shard-mtlp:         [FAIL][399] ([i915#11943]) -> [PASS][400]
>    [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html
>    [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html
> 
>   * igt@perf_pmu@busy-double-start@vecs0:
>     - shard-dg1:          [FAIL][401] ([i915#4349]) -> [PASS][402] +2 other tests pass
>    [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-14/igt@perf_pmu@busy-double-start@vecs0.html
>    [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@perf_pmu@busy-double-start@vecs0.html
> 
>   * igt@perf_pmu@most-busy-idle-check-all@rcs0:
>     - shard-rkl:          [FAIL][403] ([i915#4349]) -> [PASS][404] +1 other test pass
>    [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
>    [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
> 
>   * igt@perf_pmu@multi-client:
>     - shard-mtlp:         [FAIL][405] ([i915#4349]) -> [PASS][406] +1 other test pass
>    [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@perf_pmu@multi-client.html
>    [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@perf_pmu@multi-client.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_eio@hibernate:
>     - shard-dg2:          [DMESG-WARN][407] -> [ABORT][408] ([i915#10030] / [i915#7975] / [i915#8213])
>    [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@gem_eio@hibernate.html
>    [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_eio@hibernate.html
> 
>   * igt@gem_lmem_swapping@smem-oom:
>     - shard-dg2:          [DMESG-WARN][409] ([i915#5493]) -> [SKIP][410] ([i915#12936])
>    [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@gem_lmem_swapping@smem-oom.html
>    [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_lmem_swapping@smem-oom.html
> 
>   * igt@gem_pxp@hw-rejects-pxp-context:
>     - shard-rkl:          [TIMEOUT][411] ([i915#12917] / [i915#12964]) -> [FAIL][412] ([i915#13104])
>    [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html
>    [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html
> 
>   * igt@gem_pxp@regular-baseline-src-copy-readible:
>     - shard-rkl:          [TIMEOUT][413] ([i915#12964]) -> [SKIP][414] ([i915#4270])
>    [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
>    [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html
> 
>   * igt@gem_pxp@reject-modify-context-protection-on:
>     - shard-rkl:          [TIMEOUT][415] ([i915#12917] / [i915#12964]) -> [SKIP][416] ([i915#4270])
>    [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html
>    [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-on.html
> 
>   * igt@gem_pxp@verify-pxp-stale-buf-execution:
>     - shard-rkl:          [SKIP][417] ([i915#4270]) -> [TIMEOUT][418] ([i915#12917] / [i915#12964]) +1 other test timeout
>    [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html
>    [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-tglu:         [ABORT][419] ([i915#10887] / [i915#12817] / [i915#9820]) -> [ABORT][420] ([i915#10887] / [i915#12817] / [i915#13010] / [i915#9820])
>    [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
>    [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>     - shard-dg1:          [SKIP][421] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][422] ([i915#4538] / [i915#5286])
>    [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>    [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> 
>   * igt@kms_content_protection@mei-interface:
>     - shard-dg1:          [SKIP][423] ([i915#9433]) -> [SKIP][424] ([i915#9424])
>    [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_content_protection@mei-interface.html
>    [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_content_protection@mei-interface.html
> 
>   * igt@kms_content_protection@srm:
>     - shard-dg2:          [SKIP][425] ([i915#7118]) -> [TIMEOUT][426] ([i915#7173])
>    [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-7/igt@kms_content_protection@srm.html
>    [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_content_protection@srm.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
>     - shard-dg2:          [SKIP][427] ([i915#3458]) -> [SKIP][428] ([i915#10433] / [i915#3458])
>    [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
>    [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
>     - shard-dg1:          [SKIP][429] -> [SKIP][430] ([i915#4423])
>    [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
>    [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_hdr@brightness-with-hdr:
>     - shard-tglu:         [SKIP][431] ([i915#1187] / [i915#12713]) -> [SKIP][432] ([i915#12713])
>    [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
>    [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html
> 
>   * igt@kms_psr@pr-basic:
>     - shard-dg1:          [SKIP][433] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][434] ([i915#1072] / [i915#9732])
>    [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_psr@pr-basic.html
>    [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr@pr-basic.html
> 
>   * igt@perf@gen12-group-concurrent-oa-buffer-read:
>     - shard-rkl:          [DMESG-WARN][435] ([i915#12964]) -> [FAIL][436] ([i915#10538])
>    [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html
>    [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160
>   [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
>   [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
>   [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
>   [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
>   [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
>   [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
>   [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
>   [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
>   [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
>   [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
>   [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
>   [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
>   [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/iss
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/index.html
> 





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

* Re: ✗ Xe.CI.Full: failure for tests/gem_mmap_offset: Fix OOM hits (rev2)
  2024-11-28 17:05 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-11-29 15:06   ` Janusz Krzysztofik
  0 siblings, 0 replies; 13+ messages in thread
From: Janusz Krzysztofik @ 2024-11-29 15:06 UTC (permalink / raw)
  To: I915-ci-infra; +Cc: igt-dev, Janusz Krzysztofik

Dear I915-ci-infra@lists.freedesktop.org,

On Thursday, 28 November 2024 18:05:31 CET Patchwork wrote:
> == Series Details ==
> 
> Series: tests/gem_mmap_offset: Fix OOM hits (rev2)
> URL   : https://patchwork.freedesktop.org/series/141643/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from XEIGT_8129_full -> XEIGTPW_12214_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with XEIGTPW_12214_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in XEIGTPW_12214_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   
> 
> Participating hosts (4 -> 4)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in XEIGTPW_12214_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@core_setmaster@master-drop-set-root:
>     - shard-bmg:          NOTRUN -> [FAIL][1]
>    [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@core_setmaster@master-drop-set-root.html
> 
>   * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
>     - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][2] +123 other tests dmesg-warn
>    [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2:
>     - shard-bmg:          [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
>    [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2.html
>    [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2.html
> 
>   * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-2:
>     - shard-bmg:          NOTRUN -> [DMESG-WARN][5] +2 other tests dmesg-warn
>    [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-2.html
> 
>   * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-5:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][6]
>    [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-5.html
> 
>   * igt@kms_sequence@get-forked@pipe-a-hdmi-a-3:
>     - shard-bmg:          NOTRUN -> [INCOMPLETE][7]
>    [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_sequence@get-forked@pipe-a-hdmi-a-3.html
> 
>   * igt@xe_drm_fdinfo@utilization-others-idle:
>     - shard-lnl:          [PASS][8] -> [FAIL][9]
>    [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-7/igt@xe_drm_fdinfo@utilization-others-idle.html
>    [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-3/igt@xe_drm_fdinfo@utilization-others-idle.html

The test modified by my change doesn't apply to Xe, then none of the above 
mentioned possible regressions are related.  You may want to update CBL 
filters.

Thanks,
Janusz

> 
>   
> #### Warnings ####
> 
>   * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
>     - shard-dg2-set2:     [SKIP][10] ([Intel XE#2136] / [Intel XE#2351]) -> [DMESG-WARN][11]
>    [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
>    [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
>     - shard-dg2-set2:     [SKIP][12] ([Intel XE#2136]) -> [DMESG-WARN][13] +3 other tests dmesg-warn
>    [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
>    [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
> 
>   * igt@kms_plane@pixel-format:
>     - shard-dg2-set2:     [SKIP][14] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][15] +1 other test dmesg-warn
>    [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_plane@pixel-format.html
>    [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_plane@pixel-format.html
> 
>   * igt@kms_sequence@get-forked:
>     - shard-bmg:          [SKIP][16] ([Intel XE#2423]) -> [INCOMPLETE][17]
>    [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_sequence@get-forked.html
>    [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_sequence@get-forked.html
> 
>   * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
>     - shard-bmg:          [DMESG-WARN][18] ([Intel XE#3467]) -> [DMESG-WARN][19]
>    [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
>    [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in XEIGTPW_12214_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@core_hotunplug@hotreplug:
>     - shard-bmg:          [PASS][20] -> [DMESG-WARN][21] ([Intel XE#3467] / [Intel XE#3468])
>    [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@core_hotunplug@hotreplug.html
>    [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@core_hotunplug@hotreplug.html
>     - shard-dg2-set2:     [PASS][22] -> [DMESG-WARN][23] ([Intel XE#3467] / [Intel XE#3468])
>    [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@core_hotunplug@hotreplug.html
>    [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@core_hotunplug@hotreplug.html
> 
>   * igt@core_hotunplug@hotunplug-rescan:
>     - shard-bmg:          [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1727] / [Intel XE#3468])
>    [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@core_hotunplug@hotunplug-rescan.html
>    [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html
> 
>   * igt@fbdev@unaligned-read:
>     - shard-bmg:          [PASS][26] -> [SKIP][27] ([Intel XE#2134]) +3 other tests skip
>    [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@fbdev@unaligned-read.html
>    [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@fbdev@unaligned-read.html
> 
>   * igt@kms_addfb_basic@bad-pitch-999:
>     - shard-bmg:          [PASS][28] -> [SKIP][29] ([Intel XE#2423]) +76 other tests skip
>    [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_addfb_basic@bad-pitch-999.html
>    [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-999.html
> 
>   * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][30] ([Intel XE#2550]) +23 other tests skip
>    [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
> 
>   * igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
>     - shard-bmg:          NOTRUN -> [FAIL][31] ([Intel XE#3557])
>    [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_async_flips@crc@pipe-d-hdmi-a-3:
>     - shard-bmg:          NOTRUN -> [DMESG-WARN][32] ([Intel XE#3468]) +24 other tests dmesg-warn
>    [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_atomic@plane-invalid-params-fence@pipe-a-hdmi-a-6:
>     - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][33] ([Intel XE#1727])
>    [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence@pipe-a-hdmi-a-6.html
> 
>   * igt@kms_atomic_interruptible@legacy-cursor:
>     - shard-bmg:          [PASS][34] -> [DMESG-WARN][35] ([Intel XE#3468]) +15 other tests dmesg-warn
>    [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_atomic_interruptible@legacy-cursor.html
>    [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_atomic_interruptible@legacy-cursor.html
> 
>   * igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6:
>     - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][36] ([Intel XE#1727] / [Intel XE#3468])
>    [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html
> 
>   * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
>     - shard-lnl:          [PASS][37] -> [FAIL][38] ([Intel XE#1701]) +1 other test fail
>    [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
>    [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
> 
>   * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
>     - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#2136]) +13 other tests skip
>    [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
>    [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>     - shard-bmg:          [PASS][41] -> [SKIP][42] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
>    [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>    [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> 
>   * igt@kms_big_fb@linear-16bpp-rotate-90:
>     - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2327])
>    [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-90.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>     - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#1124]) +8 other tests skip
>    [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
> 
>   * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
>     - shard-bmg:          [PASS][45] -> [SKIP][46] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
>    [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
>    [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
> 
>   * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
>     - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2314] / [Intel XE#2894])
>    [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
> 
>   * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#787]) +60 other tests skip
>    [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5.html
> 
>   * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-b-dp-5:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#787]) +418 other tests skip
>    [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-b-dp-5.html
> 
>   * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
>     - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][50] ([Intel XE#1727]) +3 other tests dmesg-warn
>    [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
> 
>   * igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
>     - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2887]) +4 other tests skip
>    [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
>     - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2652] / [Intel XE#787]) +19 other tests skip
>    [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
>     - shard-dg2-set2:     [PASS][53] -> [SKIP][54] ([Intel XE#2136])
>    [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
>    [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#1152]) +3 other tests skip
>    [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
> 
>   * igt@kms_chamelium_color@ctm-0-75:
>     - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2325])
>    [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_chamelium_color@ctm-0-75.html
> 
>   * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
>     - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2252])
>    [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
> 
>   * igt@kms_content_protection@legacy:
>     - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2341])
>    [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_content_protection@legacy.html
> 
>   * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
>     - shard-bmg:          NOTRUN -> [FAIL][59] ([Intel XE#1178]) +2 other tests fail
>    [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
> 
>   * igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][60] ([Intel XE#3304])
>    [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
> 
>   * igt@kms_content_protection@srm@pipe-a-dp-4:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][61] ([Intel XE#1178]) +2 other tests fail
>    [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-512x170:
>     - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2321])
>    [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-max-size:
>     - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2320]) +2 other tests skip
>    [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-max-size.html
> 
>   * igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-6:
>     - shard-dg2-set2:     [PASS][64] -> [INCOMPLETE][65] ([Intel XE#1727]) +1 other test incomplete
>    [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-6.html
>    [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-6.html
> 
>   * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6:
>     - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][66] ([Intel XE#1727] / [Intel XE#3468])
>    [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
>     - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2291])
>    [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>     - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#2286])
>    [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@torture-bo@all-pipes:
>     - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][69] ([Intel XE#2932] / [Intel XE#3184])
>    [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_cursor_legacy@torture-bo@all-pipes.html
> 
>   * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
>     - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#1340])
>    [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([i915#3804])
>    [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
> 
>   * igt@kms_dp_aux_dev:
>     - shard-bmg:          [PASS][72] -> [SKIP][73] ([Intel XE#3009])
>    [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_dp_aux_dev.html
>    [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_dp_aux_dev.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
>     - shard-bmg:          NOTRUN -> [FAIL][74] ([Intel XE#2882]) +2 other tests fail
>    [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
>     - shard-bmg:          NOTRUN -> [FAIL][75] ([Intel XE#3321] / [Intel XE#3487]) +1 other test fail
>    [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
> 
>   * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4:
>     - shard-dg2-set2:     NOTRUN -> [DMESG-FAIL][76] ([Intel XE#3468])
>    [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
> 
>   * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4:
>     - shard-dg2-set2:     NOTRUN -> [DMESG-FAIL][77] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail
>    [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4.html
> 
>   * igt@kms_flip@2x-plain-flip-interruptible:
>     - shard-bmg:          [PASS][78] -> [SKIP][79] ([Intel XE#2316])
>    [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_flip@2x-plain-flip-interruptible.html
>    [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html
> 
>   * igt@kms_flip@2x-wf_vblank-ts-check:
>     - shard-bmg:          [PASS][80] -> [SKIP][81] ([Intel XE#3007]) +6 other tests skip
>    [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html
>    [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][82] ([Intel XE#3486])
>    [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][83] ([Intel XE#301] / [Intel XE#3486])
>    [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank@a-dp4:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][84] ([Intel XE#3321] / [Intel XE#3487])
>    [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank@c-dp4:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][85] ([Intel XE#301] / [Intel XE#3321] / [Intel XE#3487]) +1 other test fail
>    [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][86] ([Intel XE#301]) +10 other tests fail
>    [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
>     - shard-bmg:          [PASS][87] -> [DMESG-WARN][88] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
>    [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
>    [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
>     - shard-dg2-set2:     [PASS][89] -> [INCOMPLETE][90] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
>    [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
>    [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
>     - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
>    [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][92] ([Intel XE#455]) +22 other tests skip
>    [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
>     - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#2293]) +4 other tests skip
>    [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-4-to-linear:
>     - shard-bmg:          NOTRUN -> [DMESG-FAIL][94] ([Intel XE#3468]) +2 other tests dmesg-fail
>    [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-4-to-linear.html
> 
>   * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4:
>     - shard-bmg:          NOTRUN -> [DMESG-FAIL][95] ([Intel XE#2705]) +1 other test dmesg-fail
>    [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html
> 
>   * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x:
>     - shard-bmg:          NOTRUN -> [DMESG-FAIL][96] ([Intel XE#1727] / [Intel XE#3468])
>    [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
>     - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#2311]) +12 other tests skip
>    [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
>     - shard-bmg:          NOTRUN -> [FAIL][98] ([Intel XE#2333]) +8 other tests fail
>    [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
>    [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
>     - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#2136]) +30 other tests skip
>    [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][101] ([Intel XE#651])
>    [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#2313]) +14 other tests skip
>    [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2312]) +2 other tests skip
>    [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
> 
>   * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][104] ([Intel XE#616]) +2 other tests fail
>    [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
> 
>   * igt@kms_plane_lowres@tiling-y:
>     - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#2393])
>    [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][106] ([Intel XE#2763] / [Intel XE#455]) +8 other tests skip
>    [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
> 
>   * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][107] ([Intel XE#2763]) +26 other tests skip
>    [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
> 
>   * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
>     - shard-bmg:          NOTRUN -> [SKIP][108] ([Intel XE#2763]) +30 other tests skip
>    [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
> 
>   * igt@kms_pm_dc@dc5-dpms:
>     - shard-lnl:          [PASS][109] -> [FAIL][110] ([Intel XE#718])
>    [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
>    [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
> 
>   * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
>     - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#1439] / [Intel XE#3141])
>    [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
> 
>   * igt@kms_pm_rpm@modeset-stress-extra-wait:
>     - shard-bmg:          [PASS][112] -> [SKIP][113] ([Intel XE#2446]) +4 other tests skip
>    [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_pm_rpm@modeset-stress-extra-wait.html
>    [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_rpm@modeset-stress-extra-wait.html
> 
>   * igt@kms_properties@connector-properties-legacy:
>     - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#2423]) +21 other tests skip
>    [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_properties@connector-properties-legacy.html
> 
>   * igt@kms_properties@crtc-properties-atomic:
>     - shard-dg2-set2:     [PASS][115] -> [SKIP][116] ([Intel XE#2423] / [i915#2575])
>    [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@kms_properties@crtc-properties-atomic.html
>    [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_properties@crtc-properties-atomic.html
> 
>   * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
>     - shard-bmg:          NOTRUN -> [SKIP][117] ([Intel XE#1489]) +3 other tests skip
>    [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
> 
>   * igt@kms_psr2_su@frontbuffer-xrgb8888:
>     - shard-bmg:          NOTRUN -> [SKIP][118] ([Intel XE#2387])
>    [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
> 
>   * igt@kms_psr@psr2-primary-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#2234] / [Intel XE#2850])
>    [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_psr@psr2-primary-blt.html
> 
>   * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>     - shard-bmg:          NOTRUN -> [SKIP][120] ([Intel XE#3414]) +1 other test skip
>    [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
> 
>   * igt@kms_scaling_modes@scaling-mode-full-aspect:
>     - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2413])
>    [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
> 
>   * igt@kms_setmode@clone-exclusive-crtc:
>     - shard-bmg:          [PASS][122] -> [SKIP][123] ([Intel XE#1435])
>    [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html
>    [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
> 
>   * igt@kms_setmode@invalid-clone-single-crtc-stealing:
>     - shard-bmg:          [PASS][124] -> [DMESG-WARN][125] ([Intel XE#1727]) +1 other test dmesg-warn
>    [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
>    [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#2426])
>    [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
>     - shard-lnl:          [PASS][127] -> [FAIL][128] ([Intel XE#899])
>    [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
>    [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
> 
>   * igt@kms_vblank@query-forked-busy@pipe-a-dp-2:
>     - shard-bmg:          [PASS][129] -> [DMESG-FAIL][130] ([Intel XE#3468]) +2 other tests dmesg-fail
>    [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_vblank@query-forked-busy@pipe-a-dp-2.html
>    [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_vblank@query-forked-busy@pipe-a-dp-2.html
> 
>   * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-6:
>     - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][131] ([Intel XE#3468]) +5 other tests dmesg-warn
>    [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-6.html
> 
>   * igt@kms_vrr@flip-basic-fastset:
>     - shard-bmg:          NOTRUN -> [SKIP][132] ([Intel XE#1499])
>    [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_vrr@flip-basic-fastset.html
> 
>   * igt@kms_vrr@max-min@pipe-a-edp-1:
>     - shard-lnl:          [PASS][133] -> [FAIL][134] ([Intel XE#1522]) +1 other test fail
>    [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_vrr@max-min@pipe-a-edp-1.html
>    [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-8/igt@kms_vrr@max-min@pipe-a-edp-1.html
> 
>   * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
>     - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#1091] / [Intel XE#2849])
>    [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
> 
>   * igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][136] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
>    [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute.html
> 
>   * igt@xe_eudebug@basic-vm-access-userptr:
>     - shard-bmg:          NOTRUN -> [SKIP][137] ([Intel XE#1130]) +38 other tests skip
>    [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_eudebug@basic-vm-access-userptr.html
> 
>   * igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
>     - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#2905]) +8 other tests skip
>    [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
> 
>   * igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate:
>     - shard-dg2-set2:     [PASS][139] -> [DMESG-WARN][140] ([Intel XE#1727])
>    [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate.html
>    [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate.html
> 
>   * igt@xe_exec_basic@many-execqueues-basic-defer-mmap:
>     - shard-dg2-set2:     [PASS][141] -> [SKIP][142] ([Intel XE#1130])
>    [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_exec_basic@many-execqueues-basic-defer-mmap.html
>    [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_exec_basic@many-execqueues-basic-defer-mmap.html
> 
>   * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
>     - shard-bmg:          NOTRUN -> [SKIP][143] ([Intel XE#2322]) +2 other tests skip
>    [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
> 
>   * igt@xe_exec_fault_mode@many-rebind-imm:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][144] ([Intel XE#288])
>    [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_exec_fault_mode@many-rebind-imm.html
> 
>   * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
>     - shard-bmg:          [PASS][145] -> [DMESG-WARN][146] ([Intel XE#3343] / [Intel XE#3468])
>    [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
>    [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
> 
>   * igt@xe_live_ktest@xe_bo:
>     - shard-bmg:          [PASS][147] -> [SKIP][148] ([Intel XE#1192])
>    [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_live_ktest@xe_bo.html
>    [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_live_ktest@xe_bo.html
> 
>   * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
>     - shard-lnl:          NOTRUN -> [SKIP][149] ([Intel XE#2229]) +1 other test skip
>    [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
> 
>   * igt@xe_live_ktest@xe_eudebug:
>     - shard-bmg:          NOTRUN -> [SKIP][150] ([Intel XE#2833])
>    [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_live_ktest@xe_eudebug.html
> 
>   * igt@xe_module_load@reload:
>     - shard-bmg:          [PASS][151] -> [FAIL][152] ([Intel XE#3625])
>    [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@xe_module_load@reload.html
>    [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_module_load@reload.html
> 
>   * igt@xe_module_load@unload:
>     - shard-dg2-set2:     [PASS][153] -> [DMESG-WARN][154] ([Intel XE#3467])
>    [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_module_load@unload.html
>    [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_module_load@unload.html
> 
>   * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][155] ([Intel XE#1173])
>    [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
> 
>   * igt@xe_pm@s4-mocs:
>     - shard-bmg:          [PASS][156] -> [DMESG-WARN][157] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
>    [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@xe_pm@s4-mocs.html
>    [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@xe_pm@s4-mocs.html
> 
>   * igt@xe_query@multigpu-query-invalid-cs-cycles:
>     - shard-bmg:          NOTRUN -> [SKIP][158] ([Intel XE#944]) +1 other test skip
>    [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
> 
>   * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
>     - shard-bmg:          [PASS][159] -> [SKIP][160] ([Intel XE#1130]) +210 other tests skip
>    [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
>    [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@core_getversion@basic:
>     - shard-dg2-set2:     [FAIL][161] ([Intel XE#3440]) -> [PASS][162]
>    [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@core_getversion@basic.html
>    [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@core_getversion@basic.html
> 
>   * igt@core_hotunplug@hotrebind:
>     - shard-dg2-set2:     [SKIP][163] ([Intel XE#1885]) -> [PASS][164] +2 other tests pass
>    [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@core_hotunplug@hotrebind.html
>    [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@core_hotunplug@hotrebind.html
>     - shard-bmg:          [SKIP][165] ([Intel XE#1885]) -> [PASS][166]
>    [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@core_hotunplug@hotrebind.html
>    [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@core_hotunplug@hotrebind.html
> 
>   * igt@core_setmaster@master-drop-set-root:
>     - shard-dg2-set2:     [FAIL][167] ([Intel XE#3249]) -> [PASS][168]
>    [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
>    [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@core_setmaster@master-drop-set-root.html
> 
>   * igt@core_setmaster@master-drop-set-user:
>     - shard-dg2-set2:     [FAIL][169] ([Intel XE#3339]) -> [PASS][170]
>    [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@core_setmaster@master-drop-set-user.html
>    [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@core_setmaster@master-drop-set-user.html
> 
>   * igt@fbdev@read:
>     - shard-dg2-set2:     [SKIP][171] ([Intel XE#2134]) -> [PASS][172] +4 other tests pass
>    [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@fbdev@read.html
>    [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@fbdev@read.html
> 
>   * igt@kms_addfb_basic@unused-handle:
>     - shard-bmg:          [SKIP][173] ([Intel XE#2423]) -> [PASS][174] +86 other tests pass
>    [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_addfb_basic@unused-handle.html
>    [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_addfb_basic@unused-handle.html
> 
>   * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
>     - shard-dg2-set2:     [SKIP][175] ([Intel XE#2423] / [i915#2575]) -> [PASS][176] +358 other tests pass
>    [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
>    [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
> 
>   * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
>     - shard-lnl:          [FAIL][177] ([Intel XE#1701]) -> [PASS][178] +1 other test pass
>    [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
>    [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>     - shard-lnl:          [FAIL][179] ([Intel XE#1426]) -> [PASS][180] +1 other test pass
>    [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
>    [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
>     - shard-bmg:          [DMESG-FAIL][181] ([Intel XE#3468]) -> [PASS][182] +5 other tests pass
>    [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
>    [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
> 
>   * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
>     - shard-dg2-set2:     [SKIP][183] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][184] +43 other tests pass
>    [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
>    [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
>     - shard-bmg:          [SKIP][185] ([Intel XE#2136]) -> [PASS][186] +13 other tests pass
>    [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
>    [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
> 
>   * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1:
>     - shard-lnl:          [FAIL][187] ([Intel XE#2577]) -> [PASS][188] +1 other test pass
>    [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1.html
>    [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-1/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
>     - shard-bmg:          [SKIP][189] ([Intel XE#2291]) -> [PASS][190]
>    [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
>    [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
> 
>   * igt@kms_dp_aux_dev:
>     - shard-dg2-set2:     [SKIP][191] ([Intel XE#2423]) -> [PASS][192] +3 other tests pass
>    [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_dp_aux_dev.html
>    [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_dp_aux_dev.html
> 
>   * igt@kms_flip@2x-flip-vs-panning-vs-hang:
>     - shard-bmg:          [SKIP][193] ([Intel XE#2316]) -> [PASS][194] +1 other test pass
>    [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
>    [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
> 
>   * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
>     - shard-lnl:          [FAIL][195] ([Intel XE#886]) -> [PASS][196] +1 other test pass
>    [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
>    [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible:
>     - shard-bmg:          [INCOMPLETE][197] ([Intel XE#2597]) -> [PASS][198]
>    [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
>    [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
>     - shard-bmg:          [INCOMPLETE][199] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][200]
>    [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
>    [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
> 
>   * igt@kms_frontbuffer_tracking@basic:
>     - shard-dg2-set2:     [SKIP][201] ([Intel XE#2351]) -> [PASS][202]
>    [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html
>    [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_frontbuffer_tracking@basic.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
>     - shard-dg2-set2:     [SKIP][203] ([Intel XE#2136]) -> [PASS][204] +109 other tests pass
>    [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
>    [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
> 
>   * igt@kms_pm_rpm@cursor:
>     - shard-bmg:          [SKIP][205] ([Intel XE#2446]) -> [PASS][206] +2 other tests pass
>    [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_rpm@cursor.html
>    [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_pm_rpm@cursor.html
> 
>   * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
>     - shard-dg2-set2:     [SKIP][207] ([Intel XE#2446]) -> [PASS][208] +11 other tests pass
>    [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
>    [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
> 
>   * igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01:
>     - shard-bmg:          [DMESG-WARN][209] ([Intel XE#3468]) -> [PASS][210] +12 other tests pass
>    [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01.html
>    [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01.html
> 
>   * igt@xe_exec_balancer@once-parallel-rebind:
>     - shard-dg2-set2:     [SKIP][211] ([Intel XE#1130]) -> [PASS][212] +635 other tests pass
>    [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html
>    [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html
> 
>   * igt@xe_exec_basic@many-execqueues-null-defer-bind:
>     - shard-bmg:          [SKIP][213] ([Intel XE#1130]) -> [PASS][214] +182 other tests pass
>    [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_basic@many-execqueues-null-defer-bind.html
>    [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_exec_basic@many-execqueues-null-defer-bind.html
> 
>   * igt@xe_live_ktest@xe_bo:
>     - shard-lnl:          [SKIP][215] ([Intel XE#1192]) -> [PASS][216]
>    [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-7/igt@xe_live_ktest@xe_bo.html
>    [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-1/igt@xe_live_ktest@xe_bo.html
> 
>   * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
>     - shard-bmg:          [SKIP][217] ([Intel XE#2229]) -> [PASS][218]
>    [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
>    [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
> 
>   * igt@xe_module_load@unload:
>     - shard-bmg:          [DMESG-WARN][219] -> [PASS][220]
>    [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_module_load@unload.html
>    [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_module_load@unload.html
> 
>   * igt@xe_oa@oa-regs-whitelisted:
>     - shard-lnl:          [FAIL][221] ([Intel XE#2514]) -> [PASS][222]
>    [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted.html
>    [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-1/igt@xe_oa@oa-regs-whitelisted.html
> 
>   * igt@xe_pm@s2idle-basic-exec:
>     - shard-dg2-set2:     [DMESG-WARN][223] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][224]
>    [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_pm@s2idle-basic-exec.html
>    [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_pm@s2idle-basic-exec.html
> 
>   * igt@xe_query@query-gt-list:
>     - shard-dg2-set2:     [DMESG-WARN][225] ([Intel XE#1727]) -> [PASS][226]
>    [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_query@query-gt-list.html
>    [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_query@query-gt-list.html
> 
>   * igt@xe_tlb@basic-tlb:
>     - shard-lnl:          [CRASH][227] ([Intel XE#3212]) -> [PASS][228]
>    [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-8/igt@xe_tlb@basic-tlb.html
>    [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-lnl-3/igt@xe_tlb@basic-tlb.html
> 
>   * igt@xe_vm@large-userptr-split-misaligned-binds-2097152:
>     - shard-bmg:          [DMESG-WARN][229] ([Intel XE#1727]) -> [PASS][230]
>    [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_vm@large-userptr-split-misaligned-binds-2097152.html
>    [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_vm@large-userptr-split-misaligned-binds-2097152.html
> 
>   
> #### Warnings ####
> 
>   * igt@core_hotunplug@hotunplug-rescan:
>     - shard-dg2-set2:     [SKIP][231] ([Intel XE#1885]) -> [INCOMPLETE][232] ([Intel XE#1727] / [Intel XE#3468])
>    [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html
>    [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html
> 
>   * igt@core_hotunplug@unplug-rescan:
>     - shard-dg2-set2:     [SKIP][233] ([Intel XE#1885]) -> [DMESG-WARN][234] ([Intel XE#3468])
>    [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@core_hotunplug@unplug-rescan.html
>    [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@core_hotunplug@unplug-rescan.html
> 
>   * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>     - shard-dg2-set2:     [SKIP][235] ([Intel XE#2423] / [i915#2575]) -> [SKIP][236] ([Intel XE#623])
>    [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>    [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>     - shard-bmg:          [SKIP][237] ([Intel XE#2423]) -> [SKIP][238] ([Intel XE#2233])
>    [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>    [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
> 
>   * igt@kms_atomic@plane-invalid-params-fence:
>     - shard-dg2-set2:     [SKIP][239] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][240] ([Intel XE#1727])
>    [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_atomic@plane-invalid-params-fence.html
>    [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence.html
> 
>   * igt@kms_atomic_interruptible@legacy-setmode:
>     - shard-dg2-set2:     [SKIP][241] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][242] ([Intel XE#1727] / [Intel XE#3468])
>    [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_atomic_interruptible@legacy-setmode.html
>    [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_atomic_interruptible@legacy-setmode.html
> 
>   * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
>     - shard-bmg:          [DMESG-FAIL][243] ([Intel XE#3468]) -> [SKIP][244] ([Intel XE#2136])
>    [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
>    [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
> 
>   * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>     - shard-dg2-set2:     [SKIP][245] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][246] ([Intel XE#316]) +6 other tests skip
>    [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
>    [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
> 
>   * igt@kms_big_fb@linear-32bpp-rotate-270:
>     - shard-bmg:          [SKIP][247] ([Intel XE#2327]) -> [SKIP][248] ([Intel XE#2136]) +3 other tests skip
>    [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
>    [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html
> 
>   * igt@kms_big_fb@linear-8bpp-rotate-270:
>     - shard-dg2-set2:     [SKIP][249] ([Intel XE#2136]) -> [SKIP][250] ([Intel XE#316]) +9 other tests skip
>    [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-270.html
>    [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@linear-8bpp-rotate-90:
>     - shard-bmg:          [SKIP][251] ([Intel XE#2136]) -> [SKIP][252] ([Intel XE#2327]) +2 other tests skip
>    [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-90.html
>    [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
> 
>   * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
>     - shard-bmg:          [SKIP][253] ([Intel XE#2136]) -> [SKIP][254] ([Intel XE#2136] / [Intel XE#2231]) +7 other tests skip
>    [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
>    [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
> 
>   * igt@kms_big_fb@y-tiled-addfb-size-overflow:
>     - shard-dg2-set2:     [SKIP][255] ([Intel XE#2136]) -> [SKIP][256] ([Intel XE#610]) +1 other test skip
>    [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
>    [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
>     - shard-bmg:          [SKIP][257] ([Intel XE#2136]) -> [SKIP][258] ([Intel XE#610])
>    [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
>    [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>     - shard-bmg:          [SKIP][259] ([Intel XE#1124]) -> [SKIP][260] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
>    [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
>    [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
>     - shard-bmg:          [SKIP][261] ([Intel XE#1124]) -> [SKIP][262] ([Intel XE#2136]) +10 other tests skip
>    [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
>    [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>     - shard-dg2-set2:     [SKIP][263] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][264] ([Intel XE#1124]) +16 other tests skip
>    [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
>    [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
> 
>   * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
>     - shard-dg2-set2:     [SKIP][265] ([Intel XE#2136]) -> [SKIP][266] ([Intel XE#1124]) +32 other tests skip
>    [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
>    [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb:
>     - shard-dg2-set2:     [SKIP][267] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][268] ([Intel XE#619]) +1 other test skip
>    [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html
>    [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>     - shard-bmg:          [SKIP][269] ([Intel XE#607]) -> [SKIP][270] ([Intel XE#2136]) +1 other test skip
>    [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
>    [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>     - shard-bmg:          [SKIP][271] ([Intel XE#2136]) -> [SKIP][272] ([Intel XE#1124]) +11 other tests skip
>    [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>    [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 
>   * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
>     - shard-dg2-set2:     [SKIP][273] ([Intel XE#2423] / [i915#2575]) -> [SKIP][274] ([Intel XE#367]) +16 other tests skip
>    [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
>    [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
> 
>   * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
>     - shard-bmg:          [SKIP][275] ([Intel XE#2423]) -> [SKIP][276] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
>    [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
>    [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
> 
>   * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
>     - shard-bmg:          [SKIP][277] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][278] ([Intel XE#2423]) +1 other test skip
>    [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
>    [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
> 
>   * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
>     - shard-dg2-set2:     [SKIP][279] ([Intel XE#2423] / [i915#2575]) -> [SKIP][280] ([Intel XE#2191]) +5 other tests skip
>    [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
>    [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
> 
>   * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
>     - shard-bmg:          [SKIP][281] ([Intel XE#2423]) -> [SKIP][282] ([Intel XE#367]) +2 other tests skip
>    [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
>    [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
> 
>   * igt@kms_bw@linear-tiling-4-displays-3840x2160p:
>     - shard-bmg:          [SKIP][283] ([Intel XE#367]) -> [SKIP][284] ([Intel XE#2423]) +3 other tests skip
>    [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
>    [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
> 
>   * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
>     - shard-dg2-set2:     [SKIP][285] ([Intel XE#2136]) -> [DMESG-WARN][286] ([Intel XE#1727])
>    [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
>    [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
> 
>   * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
>     - shard-dg2-set2:     [SKIP][287] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][288] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip
>    [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
>    [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
> 
>   * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
>     - shard-dg2-set2:     [SKIP][289] ([Intel XE#2136]) -> [SKIP][290] ([Intel XE#455] / [Intel XE#787]) +47 other tests skip
>    [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
>    [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
> 
>   * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
>     - shard-bmg:          [SKIP][291] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][292] ([Intel XE#2136])
>    [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
>    [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>     - shard-dg2-set2:     [SKIP][293] ([Intel XE#2136]) -> [SKIP][294] ([Intel XE#3442]) +1 other test skip
>    [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
>    [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
>     - shard-bmg:          [SKIP][295] ([Intel XE#2136]) -> [SKIP][296] ([Intel XE#3432]) +2 other tests skip
>    [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
>    [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
> 
>   * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
>     - shard-bmg:          [SKIP][297] ([Intel XE#3432]) -> [SKIP][298] ([Intel XE#2136]) +1 other test skip
>    [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
>    [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
>     - shard-bmg:          [SKIP][299] ([Intel XE#2887]) -> [SKIP][300] ([Intel XE#2136]) +17 other tests skip
>    [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
>    [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
>     - shard-dg2-set2:     [SKIP][301] ([Intel XE#2136]) -> [SKIP][302] ([Intel XE#2907]) +6 other tests skip
>    [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
>    [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
>     - shard-bmg:          [SKIP][303] ([Intel XE#2887]) -> [SKIP][304] ([Intel XE#2136] / [Intel XE#2231])
>    [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
>    [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
>     - shard-bmg:          [SKIP][305] ([Intel XE#2136]) -> [SKIP][306] ([Intel XE#2887]) +15 other tests skip
>    [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
>    [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
>     - shard-bmg:          [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#2652] / [Intel XE#787]) +1 other test skip
>    [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
>    [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
> 
>   * igt@kms_cdclk@mode-transition-all-outputs:
>     - shard-dg2-set2:     [SKIP][309] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][310] ([Intel XE#314])
>    [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
>    [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
> 
>   * igt@kms_chamelium_color@ctm-0-25:
>     - shard-bmg:          [SKIP][311] ([Intel XE#2423]) -> [SKIP][312] ([Intel XE#2325]) +3 other tests skip
>    [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_chamelium_color@ctm-0-25.html
>    [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html
> 
>   * igt@kms_chamelium_color@ctm-blue-to-red:
>     - shard-bmg:          [SKIP][313] ([Intel XE#2325]) -> [SKIP][314] ([Intel XE#2423]) +1 other test skip
>    [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html
>    [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_chamelium_color@ctm-blue-to-red.html
> 
>   * igt@kms_chamelium_color@ctm-green-to-red:
>     - shard-bmg:          [SKIP][315] ([Intel XE#2325]) -> [SKIP][316] ([Intel XE#3007])
>    [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_chamelium_color@ctm-green-to-red.html
>    [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_chamelium_color@ctm-green-to-red.html
> 
>   * igt@kms_chamelium_color@degamma:
>     - shard-dg2-set2:     [SKIP][317] ([Intel XE#2423] / [i915#2575]) -> [SKIP][318] ([Intel XE#306]) +5 other tests skip
>    [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_chamelium_color@degamma.html
>    [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_chamelium_color@degamma.html
> 
>   * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
>     - shard-bmg:          [SKIP][319] ([Intel XE#2423]) -> [SKIP][320] ([Intel XE#2252]) +10 other tests skip
>    [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
>    [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
> 
>   * igt@kms_chamelium_frames@dp-frame-dump:
>     - shard-bmg:          [SKIP][321] ([Intel XE#2252]) -> [SKIP][322] ([Intel XE#3007]) +1 other test skip
>    [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_chamelium_frames@dp-frame-dump.html
>    [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_chamelium_frames@dp-frame-dump.html
> 
>   * igt@kms_chamelium_hpd@dp-hpd-storm:
>     - shard-bmg:          [SKIP][323] ([Intel XE#2252]) -> [SKIP][324] ([Intel XE#2423]) +9 other tests skip
>    [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-storm.html
>    [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm.html
> 
>   * igt@kms_chamelium_hpd@vga-hpd:
>     - shard-dg2-set2:     [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [SKIP][326] ([Intel XE#373]) +43 other tests skip
>    [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd.html
>    [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd.html
> 
>   * igt@kms_content_protection@atomic-dpms:
>     - shard-bmg:          [SKIP][327] ([Intel XE#2423]) -> [FAIL][328] ([Intel XE#1178])
>    [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html
>    [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
> 
>   * igt@kms_content_protection@dp-mst-lic-type-0:
>     - shard-bmg:          [SKIP][329] ([Intel XE#2390]) -> [SKIP][330] ([Intel XE#2423])
>    [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-0.html
>    [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0.html
> 
>   * igt@kms_content_protection@dp-mst-type-0:
>     - shard-dg2-set2:     [SKIP][331] ([Intel XE#2423] / [i915#2575]) -> [SKIP][332] ([Intel XE#307]) +3 other tests skip
>    [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html
>    [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
>     - shard-bmg:          [SKIP][333] ([Intel XE#2423]) -> [SKIP][334] ([Intel XE#2390])
>    [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html
>    [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0.html
> 
>   * igt@kms_content_protection@lic-type-0:
>     - shard-dg2-set2:     [SKIP][335] ([Intel XE#2423] / [i915#2575]) -> [FAIL][336] ([Intel XE#1178]) +3 other tests fail
>    [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_content_protection@lic-type-0.html
>    [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_content_protection@lic-type-0.html
> 
>   * igt@kms_content_protection@srm:
>     - shard-bmg:          [FAIL][337] ([Intel XE#1178]) -> [SKIP][338] ([Intel XE#2423])
>    [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_content_protection@srm.html
>    [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_content_protection@srm.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-512x170:
>     - shard-dg2-set2:     [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [SKIP][340] ([Intel XE#308]) +6 other tests skip
>    [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x170.html
>    [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-max-size:
>     - shard-bmg:          [SKIP][341] ([Intel XE#2320]) -> [SKIP][342] ([Intel XE#2423]) +4 other tests skip
>    [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
>    [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
> 
>   * igt@kms_cursor_crc@cursor-random-64x21:
>     - shard-bmg:          [SKIP][343] ([Intel XE#2320]) -> [SKIP][344] ([Intel XE#3007])
>    [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_cursor_crc@cursor-random-64x21.html
>    [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_cursor_crc@cursor-random-64x21.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-256x85:
>     - shard-bmg:          [SKIP][345] ([Intel XE#2423]) -> [SKIP][346] ([Intel XE#2320]) +2 other tests skip
>    [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
>    [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-512x170:
>     - shard-bmg:          [SKIP][347] ([Intel XE#2423]) -> [SKIP][348] ([Intel XE#2321])
>    [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
>    [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-512x512:
>     - shard-bmg:          [SKIP][349] ([Intel XE#2321]) -> [SKIP][350] ([Intel XE#2423]) +1 other test skip
>    [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
>    [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-suspend:
>     - shard-dg2-set2:     [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][352] ([Intel XE#1727] / [Intel XE#3468])
>    [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html
>    [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html
> 
>   * igt@kms_cursor_edge_walk@256x256-left-edge:
>     - shard-bmg:          [SKIP][353] ([Intel XE#2423]) -> [DMESG-FAIL][354] ([Intel XE#3468]) +1 other test dmesg-fail
>    [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_edge_walk@256x256-left-edge.html
>    [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_cursor_edge_walk@256x256-left-edge.html
> 
>   * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
>     - shard-bmg:          [DMESG-WARN][355] ([Intel XE#3468]) -> [SKIP][356] ([Intel XE#2291])
>    [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
>    [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>     - shard-dg2-set2:     [SKIP][357] ([Intel XE#2423] / [i915#2575]) -> [SKIP][358] ([Intel XE#323]) +1 other test skip
>    [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
>    [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
>     - shard-bmg:          [SKIP][359] ([Intel XE#2423]) -> [SKIP][360] ([Intel XE#2286])
>    [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
>    [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>     - shard-bmg:          [SKIP][361] ([Intel XE#2286]) -> [SKIP][362] ([Intel XE#2423]) +1 other test skip
>    [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
>    [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
>     - shard-bmg:          [SKIP][363] ([Intel XE#2286]) -> [SKIP][364] ([Intel XE#3007])
>    [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
>    [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size:
>     - shard-bmg:          [DMESG-WARN][365] ([Intel XE#3468]) -> [SKIP][366] ([Intel XE#2423]) +4 other tests skip
>    [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html
>    [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
>     - shard-bmg:          [INCOMPLETE][367] ([Intel XE#1727] / [Intel XE#3226]) -> [SKIP][368] ([Intel XE#2423])
>    [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
>    [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
>     - shard-bmg:          [SKIP][369] ([Intel XE#2423]) -> [SKIP][370] ([Intel XE#2291])
>    [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
>    [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
>     - shard-bmg:          [DMESG-WARN][371] ([Intel XE#877]) -> [SKIP][372] ([Intel XE#2291])
>    [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
>    [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
> 
>   * igt@kms_cursor_legacy@torture-bo:
>     - shard-dg2-set2:     [SKIP][373] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][374] ([Intel XE#2932] / [Intel XE#3184])
>    [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_cursor_legacy@torture-bo.html
>    [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_cursor_legacy@torture-bo.html
> 
>   * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
>     - shard-bmg:          [FAIL][375] ([Intel XE#2141]) -> [SKIP][376] ([Intel XE#2136])
>    [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
>    [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
> 
>   * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>     - shard-bmg:          [SKIP][377] ([Intel XE#1508]) -> [SKIP][378] ([Intel XE#2136]) +1 other test skip
>    [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
>    [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
> 
>   * igt@kms_dsc@dsc-basic:
>     - shard-dg2-set2:     [SKIP][379] ([Intel XE#2351]) -> [SKIP][380] ([Intel XE#455])
>    [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_dsc@dsc-basic.html
>    [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_dsc@dsc-basic.html
> 
>   * igt@kms_dsc@dsc-with-output-formats-with-bpc:
>     - shard-bmg:          [SKIP][381] ([Intel XE#2136]) -> [SKIP][382] ([Intel XE#2244]) +3 other tests skip
>    [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
>    [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-bmg:          [SKIP][383] ([Intel XE#2136]) -> [FAIL][384] ([Intel XE#1695])
>    [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
>    [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_fbcon_fbt@psr:
>     - shard-dg2-set2:     [SKIP][385] ([Intel XE#2136]) -> [SKIP][386] ([Intel XE#776]) +1 other test skip
>    [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
>    [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_fbcon_fbt@psr.html
>     - shard-bmg:          [SKIP][387] ([Intel XE#776]) -> [SKIP][388] ([Intel XE#2136])
>    [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_fbcon_fbt@psr.html
>    [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_fbcon_fbt@psr.html
> 
>   * igt@kms_fbcon_fbt@psr-suspend:
>     - shard-bmg:          [SKIP][389] ([Intel XE#2136]) -> [SKIP][390] ([Intel XE#776])
>    [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html
>    [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html
> 
>   * igt@kms_feature_discovery@chamelium:
>     - shard-dg2-set2:     [SKIP][391] ([Intel XE#2423] / [i915#2575]) -> [SKIP][392] ([Intel XE#701])
>    [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_feature_discovery@chamelium.html
>    [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
> 
>   * igt@kms_feature_discovery@display-3x:
>     - shard-bmg:          [SKIP][393] ([Intel XE#2373]) -> [SKIP][394] ([Intel XE#3007])
>    [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_feature_discovery@display-3x.html
>    [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_feature_discovery@display-3x.html
> 
>   * igt@kms_feature_discovery@display-4x:
>     - shard-dg2-set2:     [SKIP][395] ([Intel XE#2423] / [i915#2575]) -> [SKIP][396] ([Intel XE#1138])
>    [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_feature_discovery@display-4x.html
>    [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_feature_discovery@display-4x.html
> 
>   * igt@kms_feature_discovery@dp-mst:
>     - shard-dg2-set2:     [SKIP][397] ([Intel XE#2423] / [i915#2575]) -> [SKIP][398] ([Intel XE#1137])
>    [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
>    [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
> 
>   * igt@kms_feature_discovery@psr1:
>     - shard-dg2-set2:     [SKIP][399] ([Intel XE#2423] / [i915#2575]) -> [SKIP][400] ([Intel XE#1135])
>    [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_feature_discovery@psr1.html
>    [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_feature_discovery@psr1.html
> 
>   * igt@kms_feature_discovery@psr2:
>     - shard-bmg:          [SKIP][401] ([Intel XE#2374]) -> [SKIP][402] ([Intel XE#3007])
>    [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_feature_discovery@psr2.html
>    [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_feature_discovery@psr2.html
> 
>   * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
>     - shard-bmg:          [DMESG-WARN][403] ([Intel XE#3468]) -> [SKIP][404] ([Intel XE#3007])
>    [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
>    [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
>     - shard-bmg:          [SKIP][405] ([Intel XE#2316]) -> [SKIP][406] ([Intel XE#2423])
>    [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
>    [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
>     - shard-bmg:          [FAIL][407] ([Intel XE#2882]) -> [SKIP][408] ([Intel XE#2316])
>    [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
>    [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-suspend:
>     - shard-dg2-set2:     [SKIP][409] ([Intel XE#2423] / [i915#2575]) -> [DMESG-FAIL][410] ([Intel XE#1727] / [Intel XE#3468])
>    [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend.html
>    [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend.html
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
>     - shard-bmg:          [SKIP][411] ([Intel XE#2423]) -> [SKIP][412] ([Intel XE#2316]) +3 other tests skip
>    [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
>    [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
> 
>   * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
>     - shard-dg2-set2:     [SKIP][413] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][414] ([Intel XE#1727]) +1 other test dmesg-warn
>    [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
>    [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank:
>     - shard-dg2-set2:     [SKIP][415] ([Intel XE#2423] / [i915#2575]) -> [FAIL][416] ([Intel XE#301]) +1 other test fail
>    [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html
>    [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank.html
> 
>   * igt@kms_flip@flip-vs-panning:
>     - shard-bmg:          [SKIP][417] ([Intel XE#2423]) -> [DMESG-WARN][418] ([Intel XE#3468]) +1 other test dmesg-warn
>    [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip@flip-vs-panning.html
>    [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_flip@flip-vs-panning.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
>     - shard-bmg:          [SKIP][419] ([Intel XE#2136]) -> [SKIP][420] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
>    [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
>    [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>     - shard-dg2-set2:     [SKIP][421] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][422] ([Intel XE#455]) +8 other tests skip
>    [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
>    [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
>     - shard-bmg:          [SKIP][423] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][424] ([Intel XE#2136]) +6 other tests skip
>    [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
>    [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
>     - shard-dg2-set2:     [SKIP][425] ([Intel XE#2136]) -> [SKIP][426] ([Intel XE#455]) +18 other tests skip
>    [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
>    [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
> 
>   * igt@kms_flip_tiling@flip-change-tiling:
>     - shard-bmg:          [SKIP][427] ([Intel XE#2136]) -> [INCOMPLETE][428] ([Intel XE#1727] / [Intel XE#3468])
>    [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling.html
>    [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling.html
> 
>   * igt@kms_force_connector_basic@prune-stale-modes:
>     - shard-dg2-set2:     [SKIP][429] ([Intel XE#2423] / [i915#2575]) -> [SKIP][430] ([i915#5274])
>    [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_force_connector_basic@prune-stale-modes.html
>    [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
>     - shard-bmg:          [SKIP][431] ([Intel XE#2136]) -> [SKIP][432] ([Intel XE#2311]) +22 other tests skip
>    [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
>    [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
>     - shard-bmg:          [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#2312]) +8 other tests skip
>    [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
>    [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
>     - shard-dg2-set2:     [SKIP][435] ([Intel XE#2136]) -> [SKIP][436] ([Intel XE#651]) +88 other tests skip
>    [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
>    [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
>     - shard-bmg:          [SKIP][437] ([Intel XE#2312]) -> [SKIP][438] ([Intel XE#2311]) +5 other tests skip
>    [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
>    [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-suspend:
>     - shard-dg2-set2:     [SKIP][439] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][440] ([Intel XE#651]) +42 other tests skip
>    [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
>    [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
>     - shard-bmg:          [FAIL][441] ([Intel XE#2333]) -> [DMESG-FAIL][442] ([Intel XE#3468]) +1 other test dmesg-fail
>    [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
>    [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
>     - shard-bmg:          [FAIL][443] ([Intel XE#2333]) -> [SKIP][444] ([Intel XE#2136] / [Intel XE#2231])
>    [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
>    [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
>     - shard-bmg:          [FAIL][445] ([Intel XE#2333]) -> [SKIP][446] ([Intel XE#2136]) +10 other tests skip
>    [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
>    [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
>     - shard-bmg:          [SKIP][447] ([Intel XE#2136]) -> [FAIL][448] ([Intel XE#2333]) +13 other tests fail
>    [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
>    [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
>     - shard-bmg:          [FAIL][449] ([Intel XE#2333]) -> [SKIP][450] ([Intel XE#2312]) +2 other tests skip
>    [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
>    [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
>     - shard-bmg:          [SKIP][451] ([Intel XE#2312]) -> [DMESG-FAIL][452] ([Intel XE#3468])
>    [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
>    [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-rte:
>     - shard-dg2-set2:     [SKIP][453] ([Intel XE#2136]) -> [ABORT][454] ([Intel XE#3468])
>    [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
>    [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
>     - shard-bmg:          [SKIP][455] ([Intel XE#2136]) -> [DMESG-FAIL][456] ([Intel XE#3468]) +3 other tests dmesg-fail
>    [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
>    [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
>     - shard-bmg:          [SKIP][457] ([Intel XE#2312]) -> [FAIL][458] ([Intel XE#2333])
>    [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
>    [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-suspend:
>     - shard-dg2-set2:     [SKIP][459] ([Intel XE#2136]) -> [INCOMPLETE][460] ([Intel XE#1727] / [Intel XE#3468])
>    [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-suspend.html
>    [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-tiling-linear:
>     - shard-bmg:          [DMESG-FAIL][461] ([Intel XE#3468]) -> [FAIL][462] ([Intel XE#2333])
>    [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
>    [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-tiling-y:
>     - shard-bmg:          [SKIP][463] ([Intel XE#2352]) -> [SKIP][464] ([Intel XE#2136])
>    [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
>    [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
>     - shard-bmg:          [SKIP][465] ([Intel XE#2311]) -> [SKIP][466] ([Intel XE#2312]) +7 other tests skip
>    [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
>    [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
>     - shard-bmg:          [SKIP][467] ([Intel XE#2312]) -> [SKIP][468] ([Intel XE#2136]) +3 other tests skip
>    [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
>    [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
>     - shard-bmg:          [SKIP][469] ([Intel XE#2311]) -> [SKIP][470] ([Intel XE#2136]) +24 other tests skip
>    [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
>    [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
>     - shard-dg2-set2:     [SKIP][471] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][472] ([Intel XE#658]) +2 other tests skip
>    [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
>    [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
>     - shard-dg2-set2:     [SKIP][473] ([Intel XE#2136]) -> [SKIP][474] ([Intel XE#653]) +92 other tests skip
>    [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
>    [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
>     - shard-bmg:          [SKIP][475] ([Intel XE#2313]) -> [SKIP][476] ([Intel XE#2136]) +22 other tests skip
>    [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
>    [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
>     - shard-bmg:          [SKIP][477] ([Intel XE#2313]) -> [SKIP][478] ([Intel XE#2312]) +3 other tests skip
>    [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
>    [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
>     - shard-bmg:          [SKIP][479] ([Intel XE#2313]) -> [SKIP][480] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip
>    [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
>    [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
>     - shard-bmg:          [SKIP][481] ([Intel XE#2136]) -> [SKIP][482] ([Intel XE#2352])
>    [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
>    [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@plane-fbc-rte:
>     - shard-dg2-set2:     [SKIP][483] ([Intel XE#2136]) -> [SKIP][484] ([Intel XE#1158])
>    [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
>    [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
>     - shard-bmg:          [SKIP][485] ([Intel XE#2350]) -> [SKIP][486] ([Intel XE#2136])
>    [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
>    [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
>     - shard-bmg:          [SKIP][487] ([Intel XE#2136]) -> [SKIP][488] ([Intel XE#2313]) +21 other tests skip
>    [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
>    [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
>     - shard-dg2-set2:     [SKIP][489] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][490] ([Intel XE#653]) +35 other tests skip
>    [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
>    [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
>     - shard-bmg:          [SKIP][491] ([Intel XE#2312]) -> [SKIP][492] ([Intel XE#2313]) +5 other tests skip
>    [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
>    [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
> 
>   * igt@kms_getfb@getfb-reject-ccs:
>     - shard-bmg:          [SKIP][493] ([Intel XE#2502]) -> [SKIP][494] ([Intel XE#2423])
>    [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_getfb@getfb-reject-ccs.html
>    [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html
>     - shard-dg2-set2:     [SKIP][495] ([Intel XE#2423] / [i915#2575]) -> [SKIP][496] ([Intel XE#605])
>    [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html
>    [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html
> 
>   * igt@kms_hdr@brightness-with-hdr:
>     - shard-bmg:          [SKIP][497] ([Intel XE#2423]) -> [SKIP][498] ([Intel XE#3544])
>    [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
>    [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
> 
>   * igt@kms_joiner@basic-big-joiner:
>     - shard-bmg:          [SKIP][499] ([Intel XE#346]) -> [SKIP][500] ([Intel XE#2136])
>    [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
>    [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html
> 
>   * igt@kms_joiner@invalid-modeset-big-joiner:
>     - shard-dg2-set2:     [SKIP][501] ([Intel XE#2136]) -> [SKIP][502] ([Intel XE#346]) +1 other test skip
>    [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html
>    [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html
> 
>   * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
>     - shard-dg2-set2:     [SKIP][503] ([Intel XE#2136]) -> [SKIP][504] ([Intel XE#2925])
>    [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
>    [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
> 
>   * igt@kms_joiner@invalid-modeset-ultra-joiner:
>     - shard-dg2-set2:     [SKIP][505] ([Intel XE#2136]) -> [SKIP][506] ([Intel XE#2927]) +1 other test skip
>    [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
>    [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html
> 
>   * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>     - shard-bmg:          [SKIP][507] ([Intel XE#2501]) -> [SKIP][508] ([Intel XE#2423])
>    [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>    [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>     - shard-dg2-set2:     [SKIP][509] ([Intel XE#2423] / [i915#2575]) -> [SKIP][510] ([Intel XE#356])
>    [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>    [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> 
>   * igt@kms_panel_fitting@legacy:
>     - shard-bmg:          [SKIP][511] ([Intel XE#2423]) -> [SKIP][512] ([Intel XE#2486])
>    [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_panel_fitting@legacy.html
>    [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_panel_fitting@legacy.html
> 
>   * igt@kms_plane@planar-pixel-format-settings:
>     - shard-bmg:          [SKIP][513] ([Intel XE#2423]) -> [SKIP][514] ([Intel XE#3007]) +3 other tests skip
>    [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_plane@planar-pixel-format-settings.html
>    [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_plane@planar-pixel-format-settings.html
> 
>   * igt@kms_plane_cursor@primary:
>     - shard-dg2-set2:     [SKIP][515] ([Intel XE#2423] / [i915#2575]) -> [FAIL][516] ([Intel XE#616])
>    [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_plane_cursor@primary.html
>    [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_plane_cursor@primary.html
> 
>   * igt@kms_plane_scaling@intel-max-src-size:
>     - shard-dg2-set2:     [SKIP][517] ([Intel XE#2423] / [i915#2575]) -> [FAIL][518] ([Intel XE#361])
>    [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html
>    [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
>     - shard-bmg:          [SKIP][519] ([Intel XE#2763]) -> [SKIP][520] ([Intel XE#2423]) +2 other tests skip
>    [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
>    [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
>     - shard-dg2-set2:     [SKIP][521] ([Intel XE#2423] / [i915#2575]) -> [SKIP][522] ([Intel XE#2763] / [Intel XE#455]) +8 other tests skip
>    [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
>    [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
> 
>   * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
>     - shard-bmg:          [SKIP][523] ([Intel XE#2423]) -> [SKIP][524] ([Intel XE#2763]) +3 other tests skip
>    [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
>    [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
> 
>   * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
>     - shard-bmg:          [SKIP][525] ([Intel XE#2763]) -> [SKIP][526] ([Intel XE#3007])
>    [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
>    [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
> 
>   * igt@kms_pm_backlight@bad-brightness:
>     - shard-bmg:          [SKIP][527] ([Intel XE#2136]) -> [SKIP][528] ([Intel XE#870])
>    [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html
>    [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html
> 
>   * igt@kms_pm_backlight@brightness-with-dpms:
>     - shard-bmg:          [SKIP][529] ([Intel XE#2938]) -> [SKIP][530] ([Intel XE#2136])
>    [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html
>    [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html
>     - shard-dg2-set2:     [SKIP][531] ([Intel XE#2136]) -> [SKIP][532] ([Intel XE#2938])
>    [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html
>    [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html
> 
>   * igt@kms_pm_backlight@fade:
>     - shard-bmg:          [SKIP][533] ([Intel XE#870]) -> [SKIP][534] ([Intel XE#2136])
>    [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_pm_backlight@fade.html
>    [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_backlight@fade.html
> 
>   * igt@kms_pm_backlight@fade-with-suspend:
>     - shard-dg2-set2:     [SKIP][535] ([Intel XE#2136]) -> [SKIP][536] ([Intel XE#870]) +2 other tests skip
>    [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
>    [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
> 
>   * igt@kms_pm_dc@dc3co-vpb-simulation:
>     - shard-dg2-set2:     [SKIP][537] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][538] ([Intel XE#1122])
>    [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
>    [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
>     - shard-bmg:          [SKIP][539] ([Intel XE#2136]) -> [SKIP][540] ([Intel XE#2391])
>    [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
>    [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@kms_pm_dc@dc5-retention-flops:
>     - shard-dg2-set2:     [SKIP][541] ([Intel XE#2136]) -> [SKIP][542] ([Intel XE#3309])
>    [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html
>    [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html
> 
>   * igt@kms_pm_dc@dc6-dpms:
>     - shard-dg2-set2:     [SKIP][543] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][544] ([Intel XE#908])
>    [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html
>    [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html
>     - shard-bmg:          [SKIP][545] ([Intel XE#2136]) -> [FAIL][546] ([Intel XE#1430])
>    [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html
>    [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@kms_pm_dc@dc6-dpms.html
> 
>   * igt@kms_pm_dc@dc6-psr:
>     - shard-bmg:          [SKIP][547] ([Intel XE#2392]) -> [SKIP][548] ([Intel XE#2136]) +1 other test skip
>    [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_pm_dc@dc6-psr.html
>    [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html
> 
>   * igt@kms_pm_dc@deep-pkgc:
>     - shard-dg2-set2:     [SKIP][549] ([Intel XE#2136]) -> [SKIP][550] ([Intel XE#908])
>    [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
>    [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
>     - shard-bmg:          [SKIP][551] ([Intel XE#2505]) -> [SKIP][552] ([Intel XE#2136])
>    [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html
>    [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_dc@deep-pkgc.html
> 
>   * igt@kms_pm_lpsp@kms-lpsp:
>     - shard-bmg:          [SKIP][553] ([Intel XE#2499]) -> [SKIP][554] ([Intel XE#2136] / [Intel XE#2231])
>    [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html
>    [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html
> 
>   * igt@kms_pm_rpm@dpms-lpsp:
>     - shard-bmg:          [SKIP][555] ([Intel XE#2446]) -> [SKIP][556] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
>    [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html
>    [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_pm_rpm@dpms-lpsp.html
> 
>   * igt@kms_pm_rpm@drm-resources-equal:
>     - shard-dg2-set2:     [SKIP][557] ([Intel XE#2446]) -> [DMESG-FAIL][558] ([Intel XE#1727] / [Intel XE#3468])
>    [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_pm_rpm@drm-resources-equal.html
>    [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_pm_rpm@drm-resources-equal.html
> 
>   * igt@kms_pm_rpm@modeset-non-lpsp:
>     - shard-dg2-set2:     [SKIP][559] ([Intel XE#2446]) -> [DMESG-WARN][560] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
>    [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html
>    [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
>     - shard-dg2-set2:     [SKIP][561] ([Intel XE#2446]) -> [DMESG-WARN][562] ([Intel XE#3468])
>    [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
>    [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
> 
>   * igt@kms_pm_rpm@system-suspend-modeset:
>     - shard-dg2-set2:     [SKIP][563] ([Intel XE#2446]) -> [ABORT][564] ([Intel XE#3468])
>    [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html
>    [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html
> 
>   * igt@kms_pm_rpm@universal-planes-dpms:
>     - shard-bmg:          [INCOMPLETE][565] ([Intel XE#2864]) -> [SKIP][566] ([Intel XE#2446])
>    [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_pm_rpm@universal-planes-dpms.html
>    [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_pm_rpm@universal-planes-dpms.html
> 
>   * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
>     - shard-bmg:          [SKIP][567] ([Intel XE#2136]) -> [SKIP][568] ([Intel XE#1489]) +5 other tests skip
>    [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
>    [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
> 
>   * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
>     - shard-dg2-set2:     [SKIP][569] ([Intel XE#2136]) -> [SKIP][570] ([Intel XE#1489]) +33 other tests skip
>    [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
>    [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
> 
>   * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
>     - shard-bmg:          [SKIP][571] ([Intel XE#1489]) -> [SKIP][572] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
>    [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
>    [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
>     - shard-bmg:          [SKIP][573] ([Intel XE#1489]) -> [SKIP][574] ([Intel XE#2136]) +6 other tests skip
>    [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
>    [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
>     - shard-dg2-set2:     [SKIP][575] ([Intel XE#1489]) -> [SKIP][576] ([Intel XE#2136])
>    [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
>    [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
> 
>   * igt@kms_psr2_su@page_flip-nv12:
>     - shard-dg2-set2:     [SKIP][577] ([Intel XE#2136]) -> [SKIP][578] ([Intel XE#1122]) +2 other tests skip
>    [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html
>    [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html
> 
>   * igt@kms_psr@fbc-pr-cursor-blt:
>     - shard-bmg:          [SKIP][579] ([Intel XE#2136]) -> [SKIP][580] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
>    [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_psr@fbc-pr-cursor-blt.html
>    [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_psr@fbc-pr-cursor-blt.html
> 
>   * igt@kms_psr@fbc-pr-no-drrs:
>     - shard-dg2-set2:     [SKIP][581] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][582] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip
>    [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_psr@fbc-pr-no-drrs.html
>    [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_psr@fbc-pr-no-drrs.html
> 
>   * igt@kms_psr@fbc-psr2-cursor-blt:
>     - shard-bmg:          [SKIP][583] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][584] ([Intel XE#2136] / [Intel XE#2231])
>    [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_psr@fbc-psr2-cursor-blt.html
>    [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-blt.html
> 
>   * igt@kms_psr@fbc-psr2-sprite-plane-move:
>     - shard-dg2-set2:     [SKIP][585] ([Intel XE#2136]) -> [SKIP][586] ([Intel XE#2850] / [Intel XE#929]) +44 other tests skip
>    [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
>    [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
> 
>   * igt@kms_psr@psr-sprite-plane-onoff:
>     - shard-dg2-set2:     [SKIP][587] ([Intel XE#2351]) -> [SKIP][588] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
>    [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_psr@psr-sprite-plane-onoff.html
>    [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html
> 
>   * igt@kms_psr@psr2-no-drrs:
>     - shard-bmg:          [SKIP][589] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][590] ([Intel XE#2136]) +13 other tests skip
>    [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_psr@psr2-no-drrs.html
>    [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_psr@psr2-no-drrs.html
> 
>   * igt@kms_psr@psr2-primary-render:
>     - shard-bmg:          [SKIP][591] ([Intel XE#2136]) -> [SKIP][592] ([Intel XE#2234])
>    [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_psr@psr2-primary-render.html
>    [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_psr@psr2-primary-render.html
> 
>   * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>     - shard-dg2-set2:     [SKIP][593] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][594] ([Intel XE#2939])
>    [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
>    [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
> 
>   * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>     - shard-dg2-set2:     [SKIP][595] ([Intel XE#2136]) -> [SKIP][596] ([Intel XE#2939])
>    [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
>    [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
> 
>   * igt@kms_rotation_crc@bad-pixel-format:
>     - shard-bmg:          [SKIP][597] ([Intel XE#2423]) -> [SKIP][598] ([Intel XE#3414])
>    [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html
>    [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
>     - shard-dg2-set2:     [SKIP][599] ([Intel XE#2423] / [i915#2575]) -> [SKIP][600] ([Intel XE#3414]) +8 other tests skip
>    [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
>    [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
> 
>   * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>     - shard-dg2-set2:     [SKIP][601] ([Intel XE#2423] / [i915#2575]) -> [SKIP][602] ([Intel XE#1127]) +2 other tests skip
>    [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
>    [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
> 
>   * igt@kms_scaling_modes@scaling-mode-full:
>     - shard-bmg:          [SKIP][603] ([Intel XE#2413]) -> [SKIP][604] ([Intel XE#2423])
>    [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full.html
>    [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full.html
> 
>   * igt@kms_scaling_modes@scaling-mode-none:
>     - shard-bmg:          [SKIP][605] ([Intel XE#2423]) -> [SKIP][606] ([Intel XE#2413])
>    [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-none.html
>    [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-none.html
> 
>   * igt@kms_setmode@basic-clone-single-crtc:
>     - shard-bmg:          [SKIP][607] ([Intel XE#2423]) -> [SKIP][608] ([Intel XE#1435])
>    [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
>    [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-dg2-set2:     [SKIP][609] ([Intel XE#2423] / [i915#2575]) -> [SKIP][610] ([Intel XE#362]) +1 other test skip
>    [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
>    [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>     - shard-bmg:          [SKIP][611] ([Intel XE#2426]) -> [SKIP][612] ([Intel XE#2423])
>    [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
>    [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
> 
>   * igt@kms_vblank@query-forked:
>     - shard-bmg:          [DMESG-FAIL][613] ([Intel XE#3468]) -> [SKIP][614] ([Intel XE#2423]) +1 other test skip
>    [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_vblank@query-forked.html
>    [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_vblank@query-forked.html
> 
>   * igt@kms_vblank@ts-continuation-dpms-suspend:
>     - shard-dg2-set2:     [SKIP][615] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][616] ([Intel XE#3468]) +1 other test dmesg-warn
>    [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_vblank@ts-continuation-dpms-suspend.html
>    [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend.html
> 
>   * igt@kms_vrr@flip-basic:
>     - shard-bmg:          [SKIP][617] ([Intel XE#2423]) -> [SKIP][618] ([Intel XE#1499]) +1 other test skip
>    [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_vrr@flip-basic.html
>    [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@kms_vrr@flip-basic.html
> 
>   * igt@kms_vrr@flip-suspend:
>     - shard-bmg:          [SKIP][619] ([Intel XE#1499]) -> [SKIP][620] ([Intel XE#2423]) +2 other tests skip
>    [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_vrr@flip-suspend.html
>    [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_vrr@flip-suspend.html
> 
>   * igt@kms_vrr@flipline:
>     - shard-dg2-set2:     [SKIP][621] ([Intel XE#2423] / [i915#2575]) -> [SKIP][622] ([Intel XE#455]) +33 other tests skip
>    [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@kms_vrr@flipline.html
>    [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_vrr@flipline.html
> 
>   * igt@kms_vrr@lobf:
>     - shard-dg2-set2:     [SKIP][623] ([Intel XE#2423] / [i915#2575]) -> [SKIP][624] ([Intel XE#2168]) +1 other test skip
>    [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@kms_vrr@lobf.html
>    [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@kms_vrr@lobf.html
> 
>   * igt@kms_writeback@writeback-fb-id-xrgb2101010:
>     - shard-dg2-set2:     [SKIP][625] ([Intel XE#2423] / [i915#2575]) -> [SKIP][626] ([Intel XE#756]) +3 other tests skip
>    [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
>    [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
>     - shard-bmg:          [SKIP][627] ([Intel XE#756]) -> [SKIP][628] ([Intel XE#2423])
>    [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
>    [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
> 
>   * igt@kms_writeback@writeback-invalid-parameters:
>     - shard-bmg:          [SKIP][629] ([Intel XE#2423]) -> [SKIP][630] ([Intel XE#756]) +1 other test skip
>    [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_writeback@writeback-invalid-parameters.html
>    [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html
> 
>   * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
>     - shard-dg2-set2:     [SKIP][631] ([Intel XE#2423] / [i915#2575]) -> [SKIP][632] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
>    [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
>    [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
> 
>   * igt@xe_compute_preempt@compute-preempt:
>     - shard-dg2-set2:     [SKIP][633] ([Intel XE#1130]) -> [SKIP][634] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
>    [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html
>    [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
> 
>   * igt@xe_copy_basic@mem-copy-linear-0x3fff:
>     - shard-dg2-set2:     [SKIP][635] ([Intel XE#1130]) -> [SKIP][636] ([Intel XE#1123]) +2 other tests skip
>    [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
>    [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
> 
>   * igt@xe_copy_basic@mem-set-linear-0xfffe:
>     - shard-dg2-set2:     [SKIP][637] ([Intel XE#1130]) -> [SKIP][638] ([Intel XE#1126]) +3 other tests skip
>    [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html
>    [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html
> 
>   * igt@xe_eudebug@basic-exec-queues-enable:
>     - shard-bmg:          [SKIP][639] ([Intel XE#1130]) -> [SKIP][640] ([Intel XE#2905]) +10 other tests skip
>    [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_eudebug@basic-exec-queues-enable.html
>    [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_eudebug@basic-exec-queues-enable.html
> 
>   * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
>     - shard-bmg:          [SKIP][641] ([Intel XE#2905]) -> [SKIP][642] ([Intel XE#1130]) +13 other tests skip
>    [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
>    [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
> 
>   * igt@xe_eudebug_online@basic-breakpoint:
>     - shard-dg2-set2:     [SKIP][643] ([Intel XE#1130]) -> [SKIP][644] ([Intel XE#2905]) +46 other tests skip
>    [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_eudebug_online@basic-breakpoint.html
>    [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_eudebug_online@basic-breakpoint.html
> 
>   * igt@xe_evict@evict-beng-large:
>     - shard-bmg:          [DMESG-WARN][645] ([Intel XE#3468]) -> [SKIP][646] ([Intel XE#1130])
>    [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@xe_evict@evict-beng-large.html
>    [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_evict@evict-beng-large.html
> 
>   * igt@xe_evict@evict-beng-large-multi-vm-cm:
>     - shard-dg2-set2:     [SKIP][647] ([Intel XE#1130]) -> [FAIL][648] ([Intel XE#1600])
>    [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html
>    [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html
> 
>   * igt@xe_evict@evict-beng-mixed-many-threads-large:
>     - shard-dg2-set2:     [SKIP][649] ([Intel XE#1130]) -> [INCOMPLETE][650] ([Intel XE#1473]) +1 other test incomplete
>    [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html
>    [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html
> 
>   * igt@xe_evict@evict-beng-mixed-many-threads-small:
>     - shard-bmg:          [INCOMPLETE][651] ([Intel XE#1473]) -> [SKIP][652] ([Intel XE#1130])
>    [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
>    [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
> 
>   * igt@xe_evict@evict-large-multi-vm-cm:
>     - shard-bmg:          [FAIL][653] ([Intel XE#2364]) -> [SKIP][654] ([Intel XE#1130])
>    [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@xe_evict@evict-large-multi-vm-cm.html
>    [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html
> 
>   * igt@xe_evict@evict-mixed-many-threads-small:
>     - shard-bmg:          [INCOMPLETE][655] ([Intel XE#1473] / [Intel XE#3468]) -> [TIMEOUT][656] ([Intel XE#1473])
>    [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
>    [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
>     - shard-dg2-set2:     [SKIP][657] ([Intel XE#1130]) -> [TIMEOUT][658] ([Intel XE#1473])
>    [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
>    [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
> 
>   * igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate:
>     - shard-bmg:          [SKIP][659] ([Intel XE#1130]) -> [DMESG-WARN][660] ([Intel XE#1727]) +1 other test dmesg-warn
>    [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate.html
>    [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate.html
> 
>   * igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind:
>     - shard-bmg:          [SKIP][661] ([Intel XE#1130]) -> [DMESG-WARN][662] ([Intel XE#3468]) +1 other test dmesg-warn
>    [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind.html
>    [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind.html
> 
>   * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
>     - shard-bmg:          [SKIP][663] ([Intel XE#1130]) -> [SKIP][664] ([Intel XE#2322]) +12 other tests skip
>    [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
>    [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
> 
>   * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
>     - shard-bmg:          [SKIP][665] ([Intel XE#2322]) -> [SKIP][666] ([Intel XE#1130]) +12 other tests skip
>    [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
>    [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
> 
>   * igt@xe_exec_basic@once-rebind:
>     - shard-dg2-set2:     [SKIP][667] ([Intel XE#1130]) -> [DMESG-WARN][668] ([Intel XE#1727]) +6 other tests dmesg-warn
>    [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_exec_basic@once-rebind.html
>    [668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_exec_basic@once-rebind.html
> 
>   * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm:
>     - shard-dg2-set2:     [SKIP][669] ([Intel XE#288]) -> [SKIP][670] ([Intel XE#1130])
>    [669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html
>    [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html
> 
>   * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
>     - shard-dg2-set2:     [SKIP][671] ([Intel XE#1130]) -> [SKIP][672] ([Intel XE#288]) +108 other tests skip
>    [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
>    [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
> 
>   * igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
>     - shard-dg2-set2:     [SKIP][673] ([Intel XE#1130]) -> [SKIP][674] ([Intel XE#2360]) +2 other tests skip
>    [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
>    [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
> 
>   * igt@xe_exec_threads@threads-hang-shared-vm-rebind:
>     - shard-dg2-set2:     [SKIP][675] ([Intel XE#1130]) -> [DMESG-WARN][676] ([Intel XE#1727] / [Intel XE#358]) +1 other test dmesg-warn
>    [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html
>    [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html
> 
>   * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
>     - shard-bmg:          [DMESG-WARN][677] ([Intel XE#3467] / [Intel XE#3468]) -> [SKIP][678] ([Intel XE#1130])
>    [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
>    [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
> 
>   * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
>     - shard-dg2-set2:     [SKIP][679] ([Intel XE#1130]) -> [DMESG-WARN][680] ([Intel XE#3343]) +2 other tests dmesg-warn
>    [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
>    [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
> 
>   * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
>     - shard-bmg:          [DMESG-WARN][681] ([Intel XE#3467]) -> [SKIP][682] ([Intel XE#1130])
>    [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
>    [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
> 
>   * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
>     - shard-bmg:          [SKIP][683] ([Intel XE#1130]) -> [DMESG-WARN][684] ([Intel XE#3467])
>    [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
>    [684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
> 
>   * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
>     - shard-bmg:          [SKIP][685] ([Intel XE#1130]) -> [DMESG-WARN][686] ([Intel XE#3343] / [Intel XE#3468])
>    [685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
>    [686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
> 
>   * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
>     - shard-bmg:          [SKIP][687] ([Intel XE#1130]) -> [FAIL][688] ([Intel XE#3499])
>    [687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
>    [688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
> 
>   * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
>     - shard-bmg:          [FAIL][689] ([Intel XE#3499]) -> [DMESG-FAIL][690] ([Intel XE#3467])
>    [689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
>    [690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
> 
>   * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
>     - shard-bmg:          [DMESG-FAIL][691] ([Intel XE#3467] / [Intel XE#3468]) -> [SKIP][692] ([Intel XE#1130])
>    [691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
>    [692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
> 
>   * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
>     - shard-dg2-set2:     [SKIP][693] ([Intel XE#1130]) -> [DMESG-WARN][694] ([Intel XE#3467]) +12 other tests dmesg-warn
>    [693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
>    [694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
> 
>   * igt@xe_gt_freq@freq_suspend:
>     - shard-bmg:          [SKIP][695] ([Intel XE#1130]) -> [DMESG-FAIL][696] ([Intel XE#1727] / [Intel XE#3468])
>    [695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_gt_freq@freq_suspend.html
>    [696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@xe_gt_freq@freq_suspend.html
> 
>   * igt@xe_huc_copy@huc_copy:
>     - shard-dg2-set2:     [SKIP][697] ([Intel XE#1130]) -> [SKIP][698] ([Intel XE#255])
>    [697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_huc_copy@huc_copy.html
>    [698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_huc_copy@huc_copy.html
> 
>   * igt@xe_media_fill@media-fill:
>     - shard-dg2-set2:     [SKIP][699] ([Intel XE#1130]) -> [SKIP][700] ([Intel XE#560])
>    [699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_media_fill@media-fill.html
>    [700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_media_fill@media-fill.html
>     - shard-bmg:          [SKIP][701] ([Intel XE#1130]) -> [SKIP][702] ([Intel XE#2459] / [Intel XE#2596])
>    [701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_media_fill@media-fill.html
>    [702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-4/igt@xe_media_fill@media-fill.html
> 
>   * igt@xe_mmap@small-bar:
>     - shard-dg2-set2:     [SKIP][703] ([Intel XE#1130]) -> [SKIP][704] ([Intel XE#512])
>    [703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_mmap@small-bar.html
>    [704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_mmap@small-bar.html
> 
>   * igt@xe_module_load@reload:
>     - shard-dg2-set2:     [FAIL][705] ([Intel XE#3546]) -> [DMESG-FAIL][706] ([Intel XE#3467])
>    [705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_module_load@reload.html
>    [706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_module_load@reload.html
> 
>   * igt@xe_module_load@reload-no-display:
>     - shard-bmg:          [FAIL][707] ([Intel XE#3625]) -> [DMESG-WARN][708] ([Intel XE#3467])
>    [707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_module_load@reload-no-display.html
>    [708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_module_load@reload-no-display.html
>     - shard-dg2-set2:     [FAIL][709] ([Intel XE#3546]) -> [DMESG-WARN][710] ([Intel XE#3467])
>    [709]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_module_load@reload-no-display.html
>    [710]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_module_load@reload-no-display.html
> 
>   * igt@xe_oa@oa-unit-exclusive-stream-exec-q:
>     - shard-dg2-set2:     [SKIP][711] ([Intel XE#3573]) -> [SKIP][712] ([Intel XE#1130])
>    [711]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-exec-q.html
>    [712]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-exec-q.html
> 
>   * igt@xe_oa@syncs-ufence-wait:
>     - shard-dg2-set2:     [SKIP][713] ([Intel XE#1130]) -> [SKIP][714] ([Intel XE#3573]) +27 other tests skip
>    [713]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_oa@syncs-ufence-wait.html
>    [714]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_oa@syncs-ufence-wait.html
> 
>   * igt@xe_oa@unprivileged-single-ctx-counters:
>     - shard-bmg:          [SKIP][715] ([Intel XE#2248]) -> [SKIP][716] ([Intel XE#1130])
>    [715]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@xe_oa@unprivileged-single-ctx-counters.html
>    [716]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_oa@unprivileged-single-ctx-counters.html
> 
>   * igt@xe_pat@display-vs-wb-transient:
>     - shard-dg2-set2:     [SKIP][717] ([Intel XE#1130]) -> [SKIP][718] ([Intel XE#1337])
>    [717]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html
>    [718]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html
> 
>   * igt@xe_pat@pat-index-xe2:
>     - shard-dg2-set2:     [SKIP][719] ([Intel XE#1130]) -> [SKIP][720] ([Intel XE#977])
>    [719]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
>    [720]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_pat@pat-index-xe2.html
> 
>   * igt@xe_pat@pat-index-xelpg:
>     - shard-dg2-set2:     [SKIP][721] ([Intel XE#1130]) -> [SKIP][722] ([Intel XE#979])
>    [721]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
>    [722]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html
> 
>   * igt@xe_peer2peer@read:
>     - shard-dg2-set2:     [SKIP][723] ([Intel XE#1061]) -> [FAIL][724] ([Intel XE#1173])
>    [723]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_peer2peer@read.html
>    [724]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_peer2peer@read.html
> 
>   * igt@xe_pm@d3cold-mmap-vram:
>     - shard-dg2-set2:     [SKIP][725] ([Intel XE#1130]) -> [SKIP][726] ([Intel XE#2284] / [Intel XE#366]) +6 other tests skip
>    [725]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html
>    [726]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html
> 
>   * igt@xe_pm@d3cold-mocs:
>     - shard-bmg:          [SKIP][727] ([Intel XE#2284]) -> [SKIP][728] ([Intel XE#1130])
>    [727]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_pm@d3cold-mocs.html
>    [728]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-2/igt@xe_pm@d3cold-mocs.html
> 
>   * igt@xe_pm@d3hot-mmap-system:
>     - shard-dg2-set2:     [SKIP][729] ([Intel XE#1130]) -> [DMESG-WARN][730] ([Intel XE#3468]) +1 other test dmesg-warn
>    [729]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pm@d3hot-mmap-system.html
>    [730]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_pm@d3hot-mmap-system.html
> 
>   * igt@xe_pm@s2idle-basic:
>     - shard-dg2-set2:     [SKIP][731] ([Intel XE#1130]) -> [DMESG-WARN][732] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-warn
>    [731]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_pm@s2idle-basic.html
>    [732]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_pm@s2idle-basic.html
> 
>   * igt@xe_pm@s3-d3hot-basic-exec:
>     - shard-dg2-set2:     [SKIP][733] ([Intel XE#1130]) -> [DMESG-WARN][734] ([Intel XE#3468] / [Intel XE#569])
>    [733]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_pm@s3-d3hot-basic-exec.html
>    [734]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html
> 
>   * igt@xe_pm@s3-multiple-execs:
>     - shard-bmg:          [DMESG-WARN][735] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][736] ([Intel XE#1130])
>    [735]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html
>    [736]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html
> 
>   * igt@xe_pm@s3-vm-bind-unbind-all:
>     - shard-dg2-set2:     [SKIP][737] ([Intel XE#1130]) -> [DMESG-WARN][738] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
>    [737]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html
>    [738]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html
> 
>   * igt@xe_pm@s4-mocs:
>     - shard-dg2-set2:     [SKIP][739] ([Intel XE#1130]) -> [DMESG-WARN][740] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
>    [739]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pm@s4-mocs.html
>    [740]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_pm@s4-mocs.html
> 
>   * igt@xe_pm@vram-d3cold-threshold:
>     - shard-dg2-set2:     [SKIP][741] ([Intel XE#1130]) -> [SKIP][742] ([Intel XE#579])
>    [741]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html
>    [742]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html
>     - shard-bmg:          [SKIP][743] ([Intel XE#579]) -> [SKIP][744] ([Intel XE#1130])
>    [743]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@xe_pm@vram-d3cold-threshold.html
>    [744]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html
> 
>   * igt@xe_query@multigpu-query-engines:
>     - shard-dg2-set2:     [SKIP][745] ([Intel XE#1130]) -> [SKIP][746] ([Intel XE#944]) +13 other tests skip
>    [745]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-436/igt@xe_query@multigpu-query-engines.html
>    [746]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
> 
>   * igt@xe_query@multigpu-query-hwconfig:
>     - shard-bmg:          [SKIP][747] ([Intel XE#944]) -> [SKIP][748] ([Intel XE#1130]) +1 other test skip
>    [747]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_query@multigpu-query-hwconfig.html
>    [748]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-1/igt@xe_query@multigpu-query-hwconfig.html
> 
>   * igt@xe_query@multigpu-query-mem-usage:
>     - shard-bmg:          [SKIP][749] ([Intel XE#1130]) -> [SKIP][750] ([Intel XE#944]) +3 other tests skip
>    [749]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_query@multigpu-query-mem-usage.html
>    [750]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html
> 
>   * igt@xe_sriov_flr@flr-vf1-clear:
>     - shard-dg2-set2:     [SKIP][751] ([Intel XE#1130]) -> [SKIP][752] ([Intel XE#3342])
>    [751]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html
>    [752]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
> 
>   * igt@xe_wedged@wedged-at-any-timeout:
>     - shard-bmg:          [ABORT][753] -> [ABORT][754] ([Intel XE#3421])
>    [753]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.html
>    [754]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-5/igt@xe_wedged@wedged-at-any-timeout.html
> 
>   * igt@xe_wedged@wedged-mode-toggle:
>     - shard-bmg:          [SKIP][755] ([Intel XE#1130]) -> [ABORT][756] ([Intel XE#3084])
>    [755]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_wedged@wedged-mode-toggle.html
>    [756]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/shard-bmg-6/igt@xe_wedged@wedged-mode-toggle.html
> 
>   
>   [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
>   [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
>   [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
>   [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
>   [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
>   [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
>   [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
>   [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
>   [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
>   [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
>   [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
>   [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
>   [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
>   [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
>   [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
>   [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
>   [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
>   [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
>   [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
>   [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
>   [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
>   [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
>   [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
>   [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
>   [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
>   [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
>   [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
>   [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
>   [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
>   [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
>   [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
>   [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
>   [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
>   [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
>   [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
>   [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
>   [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
>   [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
>   [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
>   [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
>   [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
>   [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
>   [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
>   [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
>   [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
>   [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
>   [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
>   [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
>   [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
>   [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
>   [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
>   [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
>   [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
>   [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
>   [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
>   [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
>   [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
>   [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
>   [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
>   [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
>   [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
>   [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
>   [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
>   [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
>   [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
>   [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
>   [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
>   [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
>   [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
>   [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
>   [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
>   [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
>   [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
>   [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
>   [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
>   [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
>   [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
>   [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
>   [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
>   [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
>   [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
>   [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
>   [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
>   [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
>   [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
>   [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
>   [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
>   [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
>   [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
>   [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
>   [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
>   [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
>   [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
>   [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
>   [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
>   [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
>   [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
>   [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
>   [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
>   [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
>   [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
>   [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
>   [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
>   [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
>   [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
>   [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
>   [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
>   [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
>   [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
>   [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
>   [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
>   [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
>   [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
>   [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
>   [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
>   [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
>   [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
>   [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
>   [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
>   [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
>   [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
>   [Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212
>   [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
>   [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
>   [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
>   [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
>   [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
>   [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
>   [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
>   [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
>   [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
>   [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
>   [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
>   [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
>   [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
>   [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
>   [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
>   [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
>   [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
>   [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
>   [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
>   [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
>   [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
>   [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
>   [Intel XE#3557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3557
>   [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
>   [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
>   [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
>   [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
>   [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
>   [Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625
>   [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
>   [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
>   [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
>   [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
>   [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
>   [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
>   [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
>   [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
>   [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
>   [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
>   [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
>   [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
>   [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
>   [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
>   [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
>   [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
>   [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
>   [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
>   [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
>   [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
>   [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
>   [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
>   [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
>   [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
>   [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
>   [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
>   [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
>   [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
>   [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
>   [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
>   [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
>   [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
>   [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
>   [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
> 
> 
> Build changes
> -------------
> 
>   * IGT: IGT_8129 -> IGTPW_12214
> 
>   IGTPW_12214: 12214
>   IGT_8129: 363499a879fee5b9b7eda8acf7c772bce3423493 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   xe-2289-f3f406165a3d5f0fcb60be2060b7920ac385dc22: f3f406165a3d5f0fcb60be2060b7920ac385dc22
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12214/index.html
> 





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

* ✓ i915.CI.Full: success for tests/gem_mmap_offset: Fix OOM hits (rev2)
  2024-11-28 11:16 [PATCH i-g-t v2 0/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
                   ` (5 preceding siblings ...)
  2024-11-28 17:16 ` ✗ i915.CI.Full: " Patchwork
@ 2024-12-02 13:07 ` Patchwork
  6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-12-02 13:07 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: tests/gem_mmap_offset: Fix OOM hits (rev2)
URL   : https://patchwork.freedesktop.org/series/141643/
State : success

== Summary ==

CI Bug Log - changes from IGT_8129_full -> IGTPW_12214_full
====================================================

Summary
-------

  **WARNING**

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

Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Warnings ####

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-tglu:         [INCOMPLETE][1] ([i915#7443]) -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html

  
New tests
---------

  New tests have been introduced between IGT_8129_full and IGTPW_12214_full:

### New IGT tests (3) ###

  * igt@gem_mmap_offset@clear-via-pagefault:
    - Statuses : 4 pass(s)
    - Exec time: [22.61, 51.21] s

  * igt@gem_mmap_offset@clear-via-pagefault@lmem0:
    - Statuses : 2 pass(s)
    - Exec time: [23.89, 25.75] s

  * igt@gem_mmap_offset@clear-via-pagefault@smem0:
    - Statuses : 4 pass(s)
    - Exec time: [22.29, 25.45] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-dg1:          NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
    - shard-dg2:          NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
    - shard-rkl:          NOTRUN -> [SKIP][5] ([i915#8411])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@device_reset@unbind-reset-rebind:
    - shard-dg1:          NOTRUN -> [ABORT][6] ([i915#11814] / [i915#11815])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html
    - shard-tglu:         NOTRUN -> [ABORT][7] ([i915#12817] / [i915#5507])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html

  * igt@drm_fdinfo@virtual-busy-all:
    - shard-dg2:          NOTRUN -> [SKIP][8] ([i915#8414]) +2 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@drm_fdinfo@virtual-busy-all.html
    - shard-dg1:          NOTRUN -> [SKIP][9] ([i915#8414]) +2 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@drm_fdinfo@virtual-busy-all.html
    - shard-mtlp:         NOTRUN -> [SKIP][10] ([i915#8414])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-all.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-dg1:          NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy.html

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

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

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

  * igt@gem_ctx_exec@basic-norecovery:
    - shard-mtlp:         [PASS][15] -> [ABORT][16] ([i915#13193])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@gem_ctx_exec@basic-norecovery.html

  * igt@gem_ctx_persistence@file:
    - shard-snb:          NOTRUN -> [SKIP][17] ([i915#1099])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb1/igt@gem_ctx_persistence@file.html

  * igt@gem_ctx_persistence@heartbeat-stop:
    - shard-dg1:          NOTRUN -> [SKIP][18] ([i915#8555])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
    - shard-mtlp:         NOTRUN -> [SKIP][19] ([i915#8555])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-stop.html
    - shard-dg2:          NOTRUN -> [SKIP][20] ([i915#8555])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-stop.html

  * igt@gem_ctx_persistence@hostile:
    - shard-tglu-1:       NOTRUN -> [FAIL][21] ([i915#11980] / [i915#12580])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_ctx_persistence@hostile.html

  * igt@gem_ctx_sseu@engines:
    - shard-rkl:          NOTRUN -> [SKIP][22] ([i915#280])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_ctx_sseu@engines.html
    - shard-dg1:          NOTRUN -> [SKIP][23] ([i915#280])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_ctx_sseu@engines.html
    - shard-tglu:         NOTRUN -> [SKIP][24] ([i915#280])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_ctx_sseu@engines.html
    - shard-dg2:          NOTRUN -> [SKIP][25] ([i915#280])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_ctx_sseu@engines.html

  * igt@gem_exec_balancer@bonded-dual:
    - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#4771])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html
    - shard-dg1:          NOTRUN -> [SKIP][27] ([i915#4771])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_exec_balancer@bonded-dual.html

  * igt@gem_exec_balancer@bonded-semaphore:
    - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#4812])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_exec_balancer@bonded-semaphore.html

  * igt@gem_exec_balancer@hog:
    - shard-dg1:          NOTRUN -> [SKIP][29] ([i915#4812]) +4 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_exec_balancer@hog.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#4036])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html
    - shard-dg1:          NOTRUN -> [SKIP][31] ([i915#4036])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_capture@capture-invisible:
    - shard-dg1:          NOTRUN -> [SKIP][32] ([i915#6334]) +2 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_exec_capture@capture-invisible.html

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

  * igt@gem_exec_flush@basic-wb-ro-before-default:
    - shard-dg1:          NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html

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

  * igt@gem_exec_reloc@basic-scanout:
    - shard-rkl:          NOTRUN -> [SKIP][36] ([i915#3281]) +6 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_exec_reloc@basic-scanout.html

  * igt@gem_exec_reloc@basic-wc-cpu-noreloc:
    - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#3281]) +14 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-write-read-active:
    - shard-dg2:          NOTRUN -> [SKIP][38] ([i915#3281]) +7 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_exec_reloc@basic-write-read-active.html

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

  * igt@gem_exec_suspend@basic-s0@lmem0:
    - shard-dg2:          [PASS][40] -> [INCOMPLETE][41] ([i915#11441]) +1 other test incomplete
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@gem_exec_suspend@basic-s0@lmem0.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - shard-dg2:          NOTRUN -> [ABORT][42] ([i915#7975] / [i915#8213]) +1 other test abort
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_fenced_exec_thrash@no-spare-fences:
    - shard-dg1:          NOTRUN -> [SKIP][43] ([i915#4860])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html

  * igt@gem_huc_copy@huc-copy:
    - shard-rkl:          NOTRUN -> [SKIP][44] ([i915#2190])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
    - shard-tglu-1:       NOTRUN -> [SKIP][45] ([i915#2190])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_huc_copy@huc-copy.html

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

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

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

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][50] ([i915#4565]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][51] ([i915#12193]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          NOTRUN -> [TIMEOUT][52] ([i915#5493]) +1 other test timeout
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html

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

  * igt@gem_madvise@dontneed-before-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#3282]) +5 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@gem_madvise@dontneed-before-pwrite.html

  * igt@gem_mmap@bad-offset:
    - shard-dg1:          NOTRUN -> [SKIP][55] ([i915#4083]) +5 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_mmap@bad-offset.html

  * igt@gem_mmap_gtt@basic-copy:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#4077]) +6 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_mmap_gtt@basic-copy.html

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

  * igt@gem_mmap_wc@close:
    - shard-dg2:          NOTRUN -> [SKIP][58] ([i915#4083]) +6 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_mmap_wc@close.html

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

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - shard-rkl:          NOTRUN -> [SKIP][60] ([i915#3282]) +4 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
    - shard-mtlp:         NOTRUN -> [SKIP][61] ([i915#3282]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gem_pread@exhaustion:
    - shard-tglu-1:       NOTRUN -> [WARN][62] ([i915#2658])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_pread@exhaustion.html
    - shard-dg1:          NOTRUN -> [SKIP][63] ([i915#3282]) +8 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_pread@exhaustion.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk:          NOTRUN -> [WARN][64] ([i915#2658])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk8/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@create-regular-buffer:
    - shard-rkl:          NOTRUN -> [TIMEOUT][65] ([i915#12917] / [i915#12964])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@gem_pxp@create-regular-buffer.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#4270]) +2 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
    - shard-rkl:          NOTRUN -> [TIMEOUT][67] ([i915#12964])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

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

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-tglu:         [PASS][69] -> [SKIP][70] ([i915#4270])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
    - shard-dg1:          NOTRUN -> [SKIP][71] ([i915#4270]) +5 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
    - shard-tglu:         NOTRUN -> [SKIP][72] ([i915#4270])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][73] ([i915#8428])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html

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

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

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

  * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
    - shard-mtlp:         NOTRUN -> [SKIP][77] ([i915#4077]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html

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

  * igt@gem_tiled_swapping@non-threaded:
    - shard-tglu-1:       NOTRUN -> [FAIL][79] ([i915#13137])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_tiled_swapping@non-threaded.html
    - shard-snb:          [PASS][80] -> [FAIL][81] ([i915#13137])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb1/igt@gem_tiled_swapping@non-threaded.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb4/igt@gem_tiled_swapping@non-threaded.html

  * igt@gem_unfence_active_buffers:
    - shard-dg2:          NOTRUN -> [SKIP][82] ([i915#4879])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@gem_unfence_active_buffers.html

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

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#3297])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_userptr_blits@unsync-overlap.html
    - shard-rkl:          NOTRUN -> [SKIP][86] ([i915#3297])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-dg1:          NOTRUN -> [SKIP][87] ([i915#3297]) +3 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gen7_exec_parse@bitmasks:
    - shard-dg2:          NOTRUN -> [SKIP][88] +13 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@gen7_exec_parse@bitmasks.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-rkl:          NOTRUN -> [SKIP][89] ([i915#2527]) +1 other test skip
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html

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

  * igt@gen9_exec_parse@bb-large:
    - shard-dg1:          NOTRUN -> [SKIP][91] ([i915#2527]) +5 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gen9_exec_parse@bb-large.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-dg2:          NOTRUN -> [SKIP][92] ([i915#2856]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-tglu-1:       NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html

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

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-mtlp:         [PASS][95] -> [ABORT][96] ([i915#10131] / [i915#9820])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-tglu-1:       NOTRUN -> [SKIP][97] ([i915#8399])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html

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

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
    - shard-dg1:          [PASS][99] -> [FAIL][100] ([i915#12548] / [i915#3591])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html

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

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg1:          NOTRUN -> [SKIP][102] ([i915#11681] / [i915#6621]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rps@min-max-config-idle.html

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

  * igt@i915_pm_sseu@full-enable:
    - shard-dg2:          NOTRUN -> [SKIP][104] ([i915#4387])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@i915_pm_sseu@full-enable.html

  * igt@i915_power@sanity:
    - shard-mtlp:         [PASS][105] -> [SKIP][106] ([i915#7984])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@i915_power@sanity.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@i915_power@sanity.html

  * igt@i915_query@hwconfig_table:
    - shard-tglu-1:       NOTRUN -> [SKIP][107] ([i915#6245])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@i915_query@hwconfig_table.html
    - shard-dg1:          NOTRUN -> [SKIP][108] ([i915#6245])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@i915_query@hwconfig_table.html

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

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg1:          NOTRUN -> [SKIP][110] ([i915#4215])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@bo-too-small-due-to-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][111] ([i915#4212])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html

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

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-dg2:          NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-rkl:          NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-dg1:          NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-tglu:         NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-glk:          NOTRUN -> [SKIP][117] ([i915#1769])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

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

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-mtlp:         [PASS][119] -> [FAIL][120] ([i915#12469] / [i915#5138])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-tglu-1:       NOTRUN -> [SKIP][121] ([i915#5286]) +2 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +6 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][123] ([i915#5286]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

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

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][125] ([i915#3638]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html

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

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

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][128] ([i915#5190]) +1 other test skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
    - shard-mtlp:         NOTRUN -> [SKIP][129] ([i915#6187]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-mtlp:         NOTRUN -> [SKIP][130] +6 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

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

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
    - shard-glk:          NOTRUN -> [SKIP][132] +333 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][133] ([i915#12313]) +2 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][134] ([i915#12313])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][135] ([i915#12313])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][136] ([i915#12313])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

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

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][138] ([i915#10307] / [i915#6095]) +174 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][139] ([i915#12805])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][141] ([i915#6095]) +19 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][143] ([i915#6095]) +54 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html

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

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][145] ([i915#12796]) +3 other tests incomplete
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#6095]) +11 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][147] ([i915#12313]) +3 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][148] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition:
    - shard-tglu-1:       NOTRUN -> [SKIP][149] ([i915#3742])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_cdclk@mode-transition.html

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

  * igt@kms_cdclk@plane-scaling:
    - shard-dg1:          NOTRUN -> [SKIP][151] ([i915#3742]) +1 other test skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_cdclk@plane-scaling.html

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

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-dg1:          NOTRUN -> [SKIP][153] ([i915#7828]) +9 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-dg1:          NOTRUN -> [SKIP][154] +65 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_chamelium_color@ctm-0-50.html

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

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - shard-rkl:          NOTRUN -> [SKIP][156] ([i915#7828]) +3 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html

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

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

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

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

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][161] ([i915#3116] / [i915#3299])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@lic-type-0:
    - shard-dg1:          NOTRUN -> [SKIP][162] ([i915#9424])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@mei-interface:
    - shard-tglu-1:       NOTRUN -> [SKIP][163] ([i915#6944] / [i915#9424])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [TIMEOUT][164] ([i915#7173])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-4.html

  * igt@kms_content_protection@uevent:
    - shard-dg1:          NOTRUN -> [SKIP][165] ([i915#7116] / [i915#9424])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814]) +1 other test skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-rkl:          NOTRUN -> [SKIP][168] ([i915#13049]) +1 other test skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-dg1:          NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-mtlp:         NOTRUN -> [SKIP][170] ([i915#13049])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][171] ([i915#13049]) +3 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-tglu-1:       NOTRUN -> [SKIP][172] ([i915#4103])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-mtlp:         NOTRUN -> [SKIP][173] ([i915#4213])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

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

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-mtlp:         NOTRUN -> [SKIP][175] ([i915#9809]) +1 other test skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-rkl:          NOTRUN -> [SKIP][176] +6 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
    - shard-snb:          [PASS][177] -> [FAIL][178] ([i915#2346])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg1:          NOTRUN -> [SKIP][179] ([i915#4103] / [i915#4213]) +1 other test skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
    - shard-tglu:         NOTRUN -> [SKIP][180] ([i915#4103])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

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

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-dg2:          NOTRUN -> [SKIP][182] ([i915#9833])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

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

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-tglu:         NOTRUN -> [SKIP][184] ([i915#1769] / [i915#3555] / [i915#3804])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

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

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#12402])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_dp_linktrain_fallback@dp-fallback.html

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

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2:          NOTRUN -> [SKIP][188] ([i915#3840] / [i915#9688])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-dg1:          NOTRUN -> [SKIP][189] ([i915#3840]) +1 other test skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html

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

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-dg1:          NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html

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

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

  * igt@kms_feature_discovery@display-3x:
    - shard-tglu-1:       NOTRUN -> [SKIP][194] ([i915#1839]) +1 other test skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@psr1:
    - shard-tglu:         NOTRUN -> [SKIP][195] ([i915#658])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-9/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-tglu-1:       NOTRUN -> [SKIP][196] ([i915#658])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_feature_discovery@psr2.html
    - shard-dg2:          NOTRUN -> [SKIP][197] ([i915#658])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][198] ([i915#3637])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-tglu-1:       NOTRUN -> [SKIP][199] ([i915#3637]) +2 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          NOTRUN -> [SKIP][200] ([i915#9934]) +7 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
    - shard-rkl:          NOTRUN -> [SKIP][201] ([i915#9934]) +2 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
    - shard-dg1:          NOTRUN -> [SKIP][202] ([i915#9934]) +7 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-tglu:         NOTRUN -> [SKIP][203] ([i915#3637]) +7 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@absolute-wf_vblank-interruptible:
    - shard-rkl:          [PASS][204] -> [DMESG-WARN][205] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_flip@absolute-wf_vblank-interruptible.html
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_flip@absolute-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][206] ([i915#4839])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk9/igt@kms_flip@flip-vs-suspend.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8810] / [i915#8813])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html

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

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

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

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

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +3 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555]) +3 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#2672]) +5 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html

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

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

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][221] ([i915#2672]) +1 other test skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
    - shard-rkl:          [PASS][223] -> [DMESG-WARN][224] ([i915#12964]) +58 other tests dmesg-warn
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-dg2:          [PASS][225] -> [FAIL][226] ([i915#6880]) +1 other test fail
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][227] ([i915#1825]) +6 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-snb:          [PASS][228] -> [SKIP][229] +4 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#5354]) +27 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
    - shard-rkl:          NOTRUN -> [SKIP][231] ([i915#1825]) +10 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-tglu-1:       NOTRUN -> [SKIP][232] +56 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
    - shard-dg2:          NOTRUN -> [FAIL][233] ([i915#6880])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-rkl:          [PASS][234] -> [DMESG-FAIL][235] ([i915#12964])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][236] ([i915#10056])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][237] ([i915#3458]) +10 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][238] +76 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][239] ([i915#8708]) +3 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html

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

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

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg1:          NOTRUN -> [SKIP][242] ([i915#5439])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][243] ([i915#8708]) +19 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
    - shard-dg1:          NOTRUN -> [SKIP][244] ([i915#3458]) +18 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-dg2:          [PASS][245] -> [SKIP][246] ([i915#3555] / [i915#8228])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-dg2:          NOTRUN -> [SKIP][247] ([i915#12713])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg1:          NOTRUN -> [SKIP][248] ([i915#1187] / [i915#12713])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-tglu-1:       NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228]) +1 other test skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
    - shard-rkl:          NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
    - shard-tglu:         NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@static-toggle:
    - shard-dg1:          NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) +1 other test skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_hdr@static-toggle.html

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

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

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][256] ([i915#12339])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_joiner@basic-ultra-joiner.html

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

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][258] ([i915#12756]) +1 other test incomplete
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

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

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-dg2:          NOTRUN -> [SKIP][261] ([i915#12247] / [i915#9423]) +1 other test skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
    - shard-rkl:          NOTRUN -> [SKIP][262] ([i915#12247]) +2 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
    - shard-tglu:         NOTRUN -> [SKIP][263] ([i915#12247]) +14 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
    - shard-dg2:          NOTRUN -> [SKIP][264] ([i915#12247]) +7 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
    - shard-tglu-1:       NOTRUN -> [SKIP][265] ([i915#12247]) +3 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
    - shard-mtlp:         NOTRUN -> [SKIP][266] ([i915#12247]) +4 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
    - shard-dg1:          NOTRUN -> [SKIP][267] ([i915#12247]) +18 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
    - shard-dg1:          NOTRUN -> [SKIP][268] ([i915#12247] / [i915#6953])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#12343])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][270] ([i915#5354]) +1 other test skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][271] ([i915#5354]) +1 other test skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][272] ([i915#9812]) +1 other test skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2:          NOTRUN -> [SKIP][273] ([i915#9685])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_pm_dc@dc3co-vpb-simulation.html

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

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-mtlp:         NOTRUN -> [SKIP][275] ([i915#8430])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2:          [PASS][276] -> [SKIP][277] ([i915#9519]) +1 other test skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][278] ([i915#9519])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
    - shard-rkl:          NOTRUN -> [SKIP][279] ([i915#9519])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
    - shard-dg1:          NOTRUN -> [SKIP][280] ([i915#9519])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          [PASS][281] -> [SKIP][282] ([i915#9519]) +1 other test skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglu:         NOTRUN -> [SKIP][283] ([i915#9519])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-rkl:          [PASS][284] -> [SKIP][285] ([i915#12916])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_prime@basic-modeset-hybrid:
    - shard-dg1:          NOTRUN -> [SKIP][286] ([i915#6524]) +1 other test skip
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_prime@basic-modeset-hybrid.html
    - shard-tglu:         NOTRUN -> [SKIP][287] ([i915#6524])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_prime@basic-modeset-hybrid.html

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

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
    - shard-tglu:         NOTRUN -> [SKIP][289] ([i915#11520]) +7 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-tglu-1:       NOTRUN -> [SKIP][290] ([i915#11520]) +3 other tests skip
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-mtlp:         NOTRUN -> [SKIP][291] ([i915#12316]) +1 other test skip
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][292] ([i915#9808])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-dg2:          NOTRUN -> [SKIP][293] ([i915#11520]) +7 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-dg1:          NOTRUN -> [SKIP][294] ([i915#11520]) +10 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-rkl:          NOTRUN -> [SKIP][295] ([i915#11520]) +1 other test skip
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][296] ([i915#11520]) +10 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk8/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][297] ([i915#9683])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg1:          NOTRUN -> [SKIP][298] ([i915#9683]) +1 other test skip
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-tglu-1:       NOTRUN -> [SKIP][299] ([i915#9732]) +10 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr-sprite-blt:
    - shard-dg2:          NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +18 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_psr@fbc-psr-sprite-blt.html

  * igt@kms_psr@fbc-psr-sprite-plane-move:
    - shard-mtlp:         NOTRUN -> [SKIP][301] ([i915#9688]) +2 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_psr@fbc-psr-sprite-plane-move.html

  * igt@kms_psr@psr2-cursor-render:
    - shard-tglu:         NOTRUN -> [SKIP][302] ([i915#9732]) +15 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_psr@psr2-cursor-render.html

  * igt@kms_psr@psr2-sprite-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +26 other tests skip
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html

  * igt@kms_psr@psr2-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][304] ([i915#1072] / [i915#9732]) +9 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_psr@psr2-suspend.html

  * igt@kms_pwrite_crc:
    - shard-rkl:          NOTRUN -> [DMESG-WARN][305] ([i915#12964]) +6 other tests dmesg-warn
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_pwrite_crc.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-snb:          NOTRUN -> [SKIP][306] +78 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@kms_rotation_crc@bad-pixel-format.html
    - shard-mtlp:         NOTRUN -> [SKIP][307] ([i915#12755])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          NOTRUN -> [SKIP][308] ([i915#12755]) +1 other test skip
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-tglu:         NOTRUN -> [SKIP][309] ([i915#5289])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-tglu-1:       NOTRUN -> [SKIP][310] ([i915#3555]) +4 other tests skip
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-tglu:         NOTRUN -> [SKIP][311] ([i915#3555]) +7 other tests skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_selftest@drm_framebuffer:
    - shard-dg1:          NOTRUN -> [ABORT][312] ([i915#12231]) +1 other test abort
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_selftest@drm_framebuffer.html
    - shard-glk:          NOTRUN -> [ABORT][313] ([i915#12231]) +1 other test abort
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk1/igt@kms_selftest@drm_framebuffer.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-dg2:          NOTRUN -> [SKIP][314] ([i915#3555]) +2 other tests skip
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
    - shard-rkl:          NOTRUN -> [SKIP][315] ([i915#3555]) +2 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
    - shard-dg1:          NOTRUN -> [SKIP][316] ([i915#3555]) +5 other tests skip
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          NOTRUN -> [FAIL][317] ([IGT#160])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_sysfs_edid_timing.html
    - shard-dg1:          NOTRUN -> [FAIL][318] ([IGT#160] / [i915#6493])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_sysfs_edid_timing.html

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

  * igt@kms_vrr@flip-basic-fastset:
    - shard-tglu-1:       NOTRUN -> [SKIP][320] ([i915#9906])
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@max-min:
    - shard-tglu:         NOTRUN -> [SKIP][321] ([i915#9906]) +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_vrr@max-min.html

  * igt@kms_vrr@negative-basic:
    - shard-dg2:          NOTRUN -> [SKIP][322] ([i915#3555] / [i915#9906])
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_vrr@negative-basic.html
    - shard-rkl:          NOTRUN -> [SKIP][323] ([i915#3555] / [i915#9906])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_vrr@negative-basic.html
    - shard-dg1:          NOTRUN -> [SKIP][324] ([i915#3555] / [i915#9906])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_vrr@negative-basic.html
    - shard-tglu:         NOTRUN -> [SKIP][325] ([i915#3555] / [i915#9906])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-dg1:          NOTRUN -> [SKIP][326] ([i915#9906]) +2 other tests skip
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@kms_writeback@writeback-check-output:
    - shard-glk:          NOTRUN -> [SKIP][327] ([i915#2437])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk5/igt@kms_writeback@writeback-check-output.html

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

  * igt@kms_writeback@writeback-fb-id:
    - shard-tglu:         NOTRUN -> [SKIP][329] ([i915#2437]) +1 other test skip
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-tglu:         NOTRUN -> [SKIP][330] ([i915#2437] / [i915#9412])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-dg1:          NOTRUN -> [SKIP][331] ([i915#2437]) +1 other test skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-dg2:          NOTRUN -> [SKIP][332] ([i915#2437])
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-rkl:          NOTRUN -> [SKIP][333] ([i915#2437])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@perf@mi-rpc:
    - shard-dg2:          NOTRUN -> [SKIP][334] ([i915#2434])
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@perf@mi-rpc.html

  * igt@perf_pmu@busy-idle@ccs0:
    - shard-mtlp:         [PASS][335] -> [FAIL][336] ([i915#4349]) +11 other tests fail
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@perf_pmu@busy-idle@ccs0.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@perf_pmu@busy-idle@ccs0.html
    - shard-dg2:          [PASS][337] -> [FAIL][338] ([i915#4349]) +7 other tests fail
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@perf_pmu@busy-idle@ccs0.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@perf_pmu@busy-idle@ccs0.html

  * igt@perf_pmu@cpu-hotplug:
    - shard-tglu:         NOTRUN -> [SKIP][339] ([i915#8850])
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html

  * igt@perf_pmu@most-busy-check-all:
    - shard-rkl:          [PASS][340] -> [FAIL][341] ([i915#4349]) +1 other test fail
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html

  * igt@perf_pmu@rc6-all-gts:
    - shard-dg1:          NOTRUN -> [SKIP][342] ([i915#8516]) +1 other test skip
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html

  * igt@perf_pmu@rc6@other-idle-gt0:
    - shard-dg2:          NOTRUN -> [SKIP][343] ([i915#8516])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html

  * igt@perf_pmu@render-node-busy-idle@vcs0:
    - shard-dg2:          NOTRUN -> [FAIL][344] ([i915#4349]) +5 other tests fail
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@perf_pmu@render-node-busy-idle@vcs0.html

  * igt@perf_pmu@semaphore-busy@vcs1:
    - shard-dg1:          [PASS][345] -> [FAIL][346] ([i915#4349]) +3 other tests fail
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html

  * igt@prime_vgem@basic-fence-read:
    - shard-dg1:          NOTRUN -> [SKIP][347] ([i915#3708])
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@coherency-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][348] ([i915#3708] / [i915#4077])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@prime_vgem@coherency-gtt.html

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

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-dg1:          NOTRUN -> [SKIP][350] ([i915#9917])
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2:          NOTRUN -> [SKIP][351] ([i915#9917])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

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

  
#### Possible fixes ####

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          [INCOMPLETE][353] ([i915#7297]) -> [PASS][354] +1 other test pass
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-5/igt@gem_ccs@suspend-resume.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@gem_ccs@suspend-resume.html

  * igt@gem_eio@hibernate:
    - shard-tglu:         [ABORT][355] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][356]
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-10/igt@gem_eio@hibernate.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_eio@hibernate.html

  * igt@gem_eio@in-flight-suspend:
    - shard-dg1:          [DMESG-WARN][357] ([i915#4391] / [i915#4423]) -> [PASS][358]
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@gem_eio@in-flight-suspend.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@kms:
    - shard-tglu:         [DMESG-WARN][359] -> [PASS][360]
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-9/igt@gem_eio@kms.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-8/igt@gem_eio@kms.html

  * igt@gem_exec_whisper@basic-queues-priority:
    - shard-rkl:          [DMESG-WARN][361] ([i915#12917] / [i915#12964]) -> [PASS][362]
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-2/igt@gem_exec_whisper@basic-queues-priority.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_exec_whisper@basic-queues-priority.html

  * igt@gem_pxp@verify-pxp-stale-buf-execution:
    - shard-tglu:         [SKIP][363] ([i915#4270]) -> [PASS][364] +1 other test pass
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html

  * igt@gem_workarounds@suspend-resume:
    - shard-rkl:          [DMESG-FAIL][365] ([i915#12964]) -> [PASS][366]
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@gem_workarounds@suspend-resume.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_workarounds@suspend-resume.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
    - shard-dg1:          [FAIL][367] ([i915#12548] / [i915#3591]) -> [PASS][368]
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html

  * igt@i915_pm_rps@reset:
    - shard-snb:          [INCOMPLETE][369] ([i915#7790]) -> [PASS][370]
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb4/igt@i915_pm_rps@reset.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@i915_pm_rps@reset.html

  * igt@i915_selftest@live@workarounds:
    - shard-mtlp:         [ABORT][371] ([i915#12061]) -> [PASS][372] +1 other test pass
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@i915_selftest@live@workarounds.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
    - shard-dg1:          [DMESG-WARN][373] ([i915#4423]) -> [PASS][374] +2 other tests pass
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-snb:          [INCOMPLETE][375] -> [PASS][376] +1 other test pass
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3:
    - shard-dg2:          [FAIL][377] ([i915#11989]) -> [PASS][378] +5 other tests pass
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3.html

  * igt@kms_flip@flip-vs-rmfb-interruptible:
    - shard-dg2:          [INCOMPLETE][379] ([i915#6113]) -> [PASS][380] +1 other test pass
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_flip@flip-vs-rmfb-interruptible.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@kms_flip@flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3:
    - shard-dg1:          [INCOMPLETE][381] ([i915#6113]) -> [PASS][382] +1 other test pass
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1:
    - shard-mtlp:         [FAIL][383] ([i915#11989]) -> [PASS][384] +4 other tests pass
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1:
    - shard-snb:          [FAIL][385] ([i915#11989]) -> [PASS][386] +5 other tests pass
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-snb:          [SKIP][387] -> [PASS][388] +3 other tests pass
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
    - shard-dg2:          [FAIL][389] ([i915#6880]) -> [PASS][390]
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html

  * igt@kms_plane_cursor@primary:
    - shard-mtlp:         [DMESG-WARN][391] ([i915#1982]) -> [PASS][392] +1 other test pass
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-2/igt@kms_plane_cursor@primary.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@kms_plane_cursor@primary.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-tglu:         [FAIL][393] ([i915#9295]) -> [PASS][394]
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg2:          [SKIP][395] ([i915#9519]) -> [PASS][396] +1 other test pass
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@perf@gen12-oa-tlb-invalidate:
    - shard-rkl:          [DMESG-WARN][397] ([i915#12964]) -> [PASS][398] +52 other tests pass
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@perf@gen12-oa-tlb-invalidate.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@perf@gen12-oa-tlb-invalidate.html

  * igt@perf_pmu@all-busy-idle-check-all:
    - shard-dg2:          [FAIL][399] ([i915#11943]) -> [PASS][400]
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html
    - shard-mtlp:         [FAIL][401] ([i915#11943]) -> [PASS][402]
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html

  * igt@perf_pmu@busy-double-start@vecs0:
    - shard-dg1:          [FAIL][403] ([i915#4349]) -> [PASS][404] +2 other tests pass
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-14/igt@perf_pmu@busy-double-start@vecs0.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@perf_pmu@busy-double-start@vecs0.html

  * igt@perf_pmu@most-busy-idle-check-all@rcs0:
    - shard-rkl:          [FAIL][405] ([i915#4349]) -> [PASS][406] +1 other test pass
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html

  * igt@perf_pmu@multi-client:
    - shard-mtlp:         [FAIL][407] ([i915#4349]) -> [PASS][408] +1 other test pass
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@perf_pmu@multi-client.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@perf_pmu@multi-client.html

  
#### Warnings ####

  * igt@gem_eio@hibernate:
    - shard-dg2:          [DMESG-WARN][409] -> [ABORT][410] ([i915#10030] / [i915#7975] / [i915#8213])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@gem_eio@hibernate.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_eio@hibernate.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-dg2:          [DMESG-WARN][411] ([i915#5493]) -> [SKIP][412] ([i915#12936])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@gem_lmem_swapping@smem-oom.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-rkl:          [TIMEOUT][413] ([i915#12917] / [i915#12964]) -> [FAIL][414] ([i915#13104])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-rkl:          [TIMEOUT][415] ([i915#12964]) -> [SKIP][416] ([i915#4270])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_pxp@reject-modify-context-protection-on:
    - shard-rkl:          [TIMEOUT][417] ([i915#12917] / [i915#12964]) -> [SKIP][418] ([i915#4270])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-on.html

  * igt@gem_pxp@verify-pxp-stale-buf-execution:
    - shard-rkl:          [SKIP][419] ([i915#4270]) -> [TIMEOUT][420] ([i915#12917] / [i915#12964]) +1 other test timeout
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-tglu:         [ABORT][421] ([i915#10887] / [i915#12817] / [i915#9820]) -> [ABORT][422] ([i915#10887] / [i915#12817] / [i915#13010] / [i915#9820])
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg1:          [SKIP][423] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][424] ([i915#4538] / [i915#5286])
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg1:          [SKIP][425] ([i915#9433]) -> [SKIP][426] ([i915#9424])
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_content_protection@mei-interface.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm:
    - shard-dg2:          [SKIP][427] ([i915#7118]) -> [TIMEOUT][428] ([i915#7173])
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-7/igt@kms_content_protection@srm.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_content_protection@srm.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][429] ([i915#3458]) -> [SKIP][430] ([i915#10433] / [i915#3458])
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-dg1:          [SKIP][431] -> [SKIP][432] ([i915#4423])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-tglu:         [SKIP][433] ([i915#1187] / [i915#12713]) -> [SKIP][434] ([i915#12713])
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_psr@pr-basic:
    - shard-dg1:          [SKIP][435] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][436] ([i915#1072] / [i915#9732])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_psr@pr-basic.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr@pr-basic.html

  * igt@perf@gen12-group-concurrent-oa-buffer-read:
    - shard-rkl:          [DMESG-WARN][437] ([i915#12964]) -> [FAIL][438] ([i915#10538])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html

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

  [IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160
  [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
  [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
  [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel

== Logs ==

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

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

* RE: ✗ i915.CI.Full: failure for tests/gem_mmap_offset: Fix OOM hits (rev2)
  2024-11-29 14:59   ` Janusz Krzysztofik
@ 2024-12-03  4:37     ` Illipilli, TejasreeX
  0 siblings, 0 replies; 13+ messages in thread
From: Illipilli, TejasreeX @ 2024-12-03  4:37 UTC (permalink / raw)
  To: i915-ci-infra@lists.freedesktop.org, Janusz Krzysztofik
  Cc: igt-dev@lists.freedesktop.org

Hi,

https://patchwork.freedesktop.org/series/141643/  - Re-reported.

Xe.CI.Full - Addressed failures, Xe cannot be re-reported
i915.CI.Full - Re-reported

Thanks,
Tejasree


-----Original Message-----
From: I915-ci-infra <i915-ci-infra-bounces@lists.freedesktop.org> On Behalf Of Janusz Krzysztofik
Sent: Friday, November 29, 2024 8:29 PM
To: I915-ci-infra@lists.freedesktop.org; Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: Re: ✗ i915.CI.Full: failure for tests/gem_mmap_offset: Fix OOM hits (rev2)

Hi I915-ci-infra@lists.freedesktop.org,

On Thursday, 28 November 2024 18:16:48 CET Patchwork wrote:
> == Series Details ==
> 
> Series: tests/gem_mmap_offset: Fix OOM hits (rev2)
> URL   : https://patchwork.freedesktop.org/series/141643/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_8129_full -> IGTPW_12214_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_12214_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_12214_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_12214/index.html
> 
> Participating hosts (10 -> 10)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_12214_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_ctx_exec@basic-norecovery:
>     - shard-mtlp:         [PASS][1] -> [ABORT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@gem_ctx_exec@basic-norecovery.html
> 
>   * igt@gem_tiled_swapping@non-threaded:
>     - shard-tglu-1:       NOTRUN -> [FAIL][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_tiled_swapping@non-threaded.html
>     - shard-snb:          [PASS][4] -> [FAIL][5]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb1/igt@gem_tiled_swapping@non-threaded.html
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb4/igt@gem_tiled_swapping@non-threaded.html
> 
>   * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][6] +6 other tests incomplete
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
> 
>   * igt@kms_pm_rpm@system-suspend-modeset:
>     - shard-rkl:          [PASS][7] -> [SKIP][8]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html

None of the above mentioned possible regressions are related to changes 
introduced by my series, which have only modified igt@gem_mmap_offset@clear 
and introduced igt@gem_mmap_offset@clear-via-pagefault, the former not 
mentioned then apparently succeeded, and the latter reported below as success.  
Please update CBL filters and re-report.

Thanks,
Janusz

> 
>   
> #### Warnings ####
> 
>   * igt@i915_suspend@basic-s3-without-i915:
>     - shard-tglu:         [INCOMPLETE][9] ([i915#7443]) -> [INCOMPLETE][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html
> 
>   
> New tests
> ---------
> 
>   New tests have been introduced between IGT_8129_full and IGTPW_12214_full:
> 
> ### New IGT tests (3) ###
> 
>   * igt@gem_mmap_offset@clear-via-pagefault:
>     - Statuses : 4 pass(s)
>     - Exec time: [22.61, 51.21] s
> 
>   * igt@gem_mmap_offset@clear-via-pagefault@lmem0:
>     - Statuses : 2 pass(s)
>     - Exec time: [23.89, 25.75] s
> 
>   * igt@gem_mmap_offset@clear-via-pagefault@smem0:
>     - Statuses : 4 pass(s)
>     - Exec time: [22.29, 25.45] s
> 
>   
> 
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_12214_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@api_intel_bb@blit-reloc-purge-cache:
>     - shard-dg1:          NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
>     - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#8411]) +1 other test skip
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
>     - shard-rkl:          NOTRUN -> [SKIP][13] ([i915#8411])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html
> 
>   * igt@device_reset@unbind-reset-rebind:
>     - shard-dg1:          NOTRUN -> [ABORT][14] ([i915#11814] / [i915#11815])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html
>     - shard-tglu:         NOTRUN -> [ABORT][15] ([i915#12817] / [i915#5507])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html
> 
>   * igt@drm_fdinfo@virtual-busy-all:
>     - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#8414]) +2 other tests skip
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@drm_fdinfo@virtual-busy-all.html
>     - shard-dg1:          NOTRUN -> [SKIP][17] ([i915#8414]) +2 other tests skip
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@drm_fdinfo@virtual-busy-all.html
>     - shard-mtlp:         NOTRUN -> [SKIP][18] ([i915#8414])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-all.html
> 
>   * igt@gem_ccs@ctrl-surf-copy:
>     - shard-dg1:          NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy.html
> 
>   * igt@gem_close_race@multigpu-basic-process:
>     - shard-tglu:         NOTRUN -> [SKIP][20] ([i915#7697])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_close_race@multigpu-basic-process.html
> 
>   * igt@gem_close_race@multigpu-basic-threads:
>     - shard-dg2:          NOTRUN -> [SKIP][21] ([i915#7697])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@gem_close_race@multigpu-basic-threads.html
> 
>   * igt@gem_create@create-ext-set-pat:
>     - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#8562])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@gem_create@create-ext-set-pat.html
> 
>   * igt@gem_ctx_persistence@file:
>     - shard-snb:          NOTRUN -> [SKIP][23] ([i915#1099])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb1/igt@gem_ctx_persistence@file.html
> 
>   * igt@gem_ctx_persistence@heartbeat-stop:
>     - shard-dg1:          NOTRUN -> [SKIP][24] ([i915#8555])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
>     - shard-mtlp:         NOTRUN -> [SKIP][25] ([i915#8555])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-stop.html
>     - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#8555])
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-stop.html
> 
>   * igt@gem_ctx_persistence@hostile:
>     - shard-tglu-1:       NOTRUN -> [FAIL][27] ([i915#11980] / [i915#12580])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_ctx_persistence@hostile.html
> 
>   * igt@gem_ctx_sseu@engines:
>     - shard-rkl:          NOTRUN -> [SKIP][28] ([i915#280])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_ctx_sseu@engines.html
>     - shard-dg1:          NOTRUN -> [SKIP][29] ([i915#280])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_ctx_sseu@engines.html
>     - shard-tglu:         NOTRUN -> [SKIP][30] ([i915#280])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_ctx_sseu@engines.html
>     - shard-dg2:          NOTRUN -> [SKIP][31] ([i915#280])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_ctx_sseu@engines.html
> 
>   * igt@gem_exec_balancer@bonded-dual:
>     - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#4771])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html
>     - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#4771])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_exec_balancer@bonded-dual.html
> 
>   * igt@gem_exec_balancer@bonded-semaphore:
>     - shard-mtlp:         NOTRUN -> [SKIP][34] ([i915#4812])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_exec_balancer@bonded-semaphore.html
> 
>   * igt@gem_exec_balancer@hog:
>     - shard-dg1:          NOTRUN -> [SKIP][35] ([i915#4812]) +4 other tests skip
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_exec_balancer@hog.html
> 
>   * igt@gem_exec_balancer@invalid-bonds:
>     - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#4036])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html
>     - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#4036])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html
> 
>   * igt@gem_exec_capture@capture-invisible:
>     - shard-dg1:          NOTRUN -> [SKIP][38] ([i915#6334]) +2 other tests skip
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_exec_capture@capture-invisible.html
> 
>   * igt@gem_exec_fence@concurrent:
>     - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_exec_fence@concurrent.html
> 
>   * igt@gem_exec_flush@basic-wb-ro-before-default:
>     - shard-dg1:          NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html
> 
>   * igt@gem_exec_reloc@basic-cpu-noreloc:
>     - shard-mtlp:         NOTRUN -> [SKIP][41] ([i915#3281]) +2 other tests skip
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
> 
>   * igt@gem_exec_reloc@basic-scanout:
>     - shard-rkl:          NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_exec_reloc@basic-scanout.html
> 
>   * igt@gem_exec_reloc@basic-wc-cpu-noreloc:
>     - shard-dg1:          NOTRUN -> [SKIP][43] ([i915#3281]) +14 other tests skip
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
> 
>   * igt@gem_exec_reloc@basic-write-read-active:
>     - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_exec_reloc@basic-write-read-active.html
> 
>   * igt@gem_exec_schedule@preempt-queue-chain:
>     - shard-dg2:          NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-chain.html
> 
>   * igt@gem_exec_suspend@basic-s0@lmem0:
>     - shard-dg2:          [PASS][46] -> [INCOMPLETE][47] ([i915#11441]) +1 other test incomplete
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@gem_exec_suspend@basic-s0@lmem0.html
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html
> 
>   * igt@gem_exec_suspend@basic-s4-devices:
>     - shard-dg2:          NOTRUN -> [ABORT][48] ([i915#7975] / [i915#8213]) +1 other test abort
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html
> 
>   * igt@gem_fenced_exec_thrash@no-spare-fences:
>     - shard-dg1:          NOTRUN -> [SKIP][49] ([i915#4860])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html
> 
>   * igt@gem_huc_copy@huc-copy:
>     - shard-rkl:          NOTRUN -> [SKIP][50] ([i915#2190])
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
>     - shard-tglu-1:       NOTRUN -> [SKIP][51] ([i915#2190])
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
> 
>   * igt@gem_lmem_swapping@heavy-multi:
>     - shard-rkl:          NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@gem_lmem_swapping@heavy-multi.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-multi:
>     - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi.html
>     - shard-tglu-1:       NOTRUN -> [SKIP][54] ([i915#4613])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
>     - shard-glk:          NOTRUN -> [SKIP][55] ([i915#4613]) +4 other tests skip
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
>     - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#4565]) +1 other test skip
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
> 
>   * igt@gem_lmem_swapping@parallel-random-verify-ccs:
>     - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#12193]) +1 other test skip
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
> 
>   * igt@gem_lmem_swapping@smem-oom@lmem0:
>     - shard-dg1:          NOTRUN -> [TIMEOUT][58] ([i915#5493]) +1 other test timeout
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
> 
>   * igt@gem_lmem_swapping@verify:
>     - shard-tglu:         NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_lmem_swapping@verify.html
> 
>   * igt@gem_madvise@dontneed-before-pwrite:
>     - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#3282]) +5 other tests skip
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@gem_madvise@dontneed-before-pwrite.html
> 
>   * igt@gem_mmap@bad-offset:
>     - shard-dg1:          NOTRUN -> [SKIP][61] ([i915#4083]) +5 other tests skip
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_mmap@bad-offset.html
> 
>   * igt@gem_mmap_gtt@basic-copy:
>     - shard-dg2:          NOTRUN -> [SKIP][62] ([i915#4077]) +6 other tests skip
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@gem_mmap_gtt@basic-copy.html
> 
>   * igt@gem_mmap_gtt@basic-small-copy-odd:
>     - shard-dg1:          NOTRUN -> [SKIP][63] ([i915#4077]) +11 other tests skip
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_mmap_gtt@basic-small-copy-odd.html
> 
>   * igt@gem_mmap_wc@close:
>     - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#4083]) +6 other tests skip
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_mmap_wc@close.html
> 
>   * igt@gem_mmap_wc@write-cpu-read-wc:
>     - shard-mtlp:         NOTRUN -> [SKIP][65] ([i915#4083])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_mmap_wc@write-cpu-read-wc.html
> 
>   * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
>     - shard-rkl:          NOTRUN -> [SKIP][66] ([i915#3282]) +4 other tests skip
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
>     - shard-mtlp:         NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
> 
>   * igt@gem_pread@exhaustion:
>     - shard-tglu-1:       NOTRUN -> [WARN][68] ([i915#2658])
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_pread@exhaustion.html
>     - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#3282]) +8 other tests skip
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@gem_pread@exhaustion.html
> 
>   * igt@gem_pwrite@basic-exhaustion:
>     - shard-glk:          NOTRUN -> [WARN][70] ([i915#2658])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk8/igt@gem_pwrite@basic-exhaustion.html
> 
>   * igt@gem_pxp@create-regular-buffer:
>     - shard-rkl:          NOTRUN -> [TIMEOUT][71] ([i915#12917] / [i915#12964])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@gem_pxp@create-regular-buffer.html
> 
>   * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
>     - shard-dg2:          NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
>     - shard-rkl:          NOTRUN -> [TIMEOUT][73] ([i915#12964])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
> 
>   * igt@gem_pxp@hw-rejects-pxp-buffer:
>     - shard-tglu-1:       NOTRUN -> [SKIP][74] ([i915#13033])
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
> 
>   * igt@gem_pxp@regular-baseline-src-copy-readible:
>     - shard-tglu:         [PASS][75] -> [SKIP][76] ([i915#4270])
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
> 
>   * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
>     - shard-dg1:          NOTRUN -> [SKIP][77] ([i915#4270]) +5 other tests skip
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
>     - shard-tglu:         NOTRUN -> [SKIP][78] ([i915#4270])
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
> 
>   * igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
>     - shard-mtlp:         NOTRUN -> [SKIP][79] ([i915#8428])
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
> 
>   * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
>     - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +6 other tests skip
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
> 
>   * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>     - shard-dg2:          NOTRUN -> [SKIP][81] ([i915#4079]) +2 other tests skip
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
> 
>   * igt@gem_set_tiling_vs_gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][82] ([i915#4079]) +1 other test skip
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gem_set_tiling_vs_gtt.html
> 
>   * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
>     - shard-mtlp:         NOTRUN -> [SKIP][83] ([i915#4077]) +2 other tests skip
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
> 
>   * igt@gem_tiled_pread_pwrite:
>     - shard-dg1:          NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@gem_tiled_pread_pwrite.html
> 
>   * igt@gem_unfence_active_buffers:
>     - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#4879])
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@gem_unfence_active_buffers.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-glk:          NOTRUN -> [SKIP][86] ([i915#3323])
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@readonly-pwrite-unsync:
>     - shard-tglu:         NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
> 
>   * igt@gem_userptr_blits@unsync-overlap:
>     - shard-dg2:          NOTRUN -> [SKIP][88] ([i915#3297])
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_userptr_blits@unsync-overlap.html
>     - shard-rkl:          NOTRUN -> [SKIP][89] ([i915#3297])
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html
> 
>   * igt@gem_userptr_blits@unsync-unmap-cycles:
>     - shard-dg1:          NOTRUN -> [SKIP][90] ([i915#3297]) +3 other tests skip
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-cycles.html
> 
>   * igt@gen7_exec_parse@bitmasks:
>     - shard-dg2:          NOTRUN -> [SKIP][91] +13 other tests skip
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@gen7_exec_parse@bitmasks.html
> 
>   * igt@gen9_exec_parse@batch-invalid-length:
>     - shard-rkl:          NOTRUN -> [SKIP][92] ([i915#2527]) +1 other test skip
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html
> 
>   * igt@gen9_exec_parse@bb-chained:
>     - shard-mtlp:         NOTRUN -> [SKIP][93] ([i915#2856]) +1 other test skip
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@gen9_exec_parse@bb-chained.html
> 
>   * igt@gen9_exec_parse@bb-large:
>     - shard-dg1:          NOTRUN -> [SKIP][94] ([i915#2527]) +5 other tests skip
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gen9_exec_parse@bb-large.html
> 
>   * igt@gen9_exec_parse@bb-secure:
>     - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#2856]) +1 other test skip
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@gen9_exec_parse@bb-secure.html
> 
>   * igt@gen9_exec_parse@bb-start-cmd:
>     - shard-tglu-1:       NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +2 other tests skip
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
> 
>   * igt@gen9_exec_parse@cmd-crossing-page:
>     - shard-tglu:         NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +4 other tests skip
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@gen9_exec_parse@cmd-crossing-page.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-mtlp:         [PASS][98] -> [ABORT][99] ([i915#10131] / [i915#9820])
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_pm_freq_api@freq-reset:
>     - shard-tglu-1:       NOTRUN -> [SKIP][100] ([i915#8399])
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
> 
>   * igt@i915_pm_freq_mult@media-freq@gt0:
>     - shard-tglu-1:       NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
>     - shard-dg1:          [PASS][102] -> [FAIL][103] ([i915#12548] / [i915#3591])
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
> 
>   * igt@i915_pm_rps@min-max-config-idle:
>     - shard-dg1:          NOTRUN -> [SKIP][104] ([i915#11681] / [i915#6621]) +1 other test skip
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rps@min-max-config-idle.html
> 
>   * igt@i915_pm_rps@thresholds-idle-park:
>     - shard-mtlp:         NOTRUN -> [SKIP][105] ([i915#11681])
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@i915_pm_rps@thresholds-idle-park.html
> 
>   * igt@i915_pm_sseu@full-enable:
>     - shard-dg2:          NOTRUN -> [SKIP][106] ([i915#4387])
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@i915_pm_sseu@full-enable.html
> 
>   * igt@i915_power@sanity:
>     - shard-mtlp:         [PASS][107] -> [SKIP][108] ([i915#7984])
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@i915_power@sanity.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@i915_power@sanity.html
> 
>   * igt@i915_query@hwconfig_table:
>     - shard-tglu-1:       NOTRUN -> [SKIP][109] ([i915#6245])
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@i915_query@hwconfig_table.html
>     - shard-dg1:          NOTRUN -> [SKIP][110] ([i915#6245])
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@i915_query@hwconfig_table.html
> 
>   * igt@i915_query@test-query-geometry-subslices:
>     - shard-tglu:         NOTRUN -> [SKIP][111] ([i915#5723])
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html
> 
>   * igt@kms_addfb_basic@basic-y-tiled-legacy:
>     - shard-dg1:          NOTRUN -> [SKIP][112] ([i915#4215])
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
> 
>   * igt@kms_addfb_basic@bo-too-small-due-to-tiling:
>     - shard-dg2:          NOTRUN -> [SKIP][113] ([i915#4212])
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
> 
>   * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
>     - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#8709]) +11 other tests skip
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
>     - shard-dg2:          NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555])
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>     - shard-rkl:          NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555])
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>     - shard-dg1:          NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555])
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>     - shard-tglu:         NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555])
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>     - shard-glk:          NOTRUN -> [SKIP][119] ([i915#1769])
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
> 
>   * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
>     - shard-tglu:         NOTRUN -> [SKIP][120] ([i915#5286]) +4 other tests skip
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
> 
>   * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
>     - shard-mtlp:         [PASS][121] -> [FAIL][122] ([i915#12469] / [i915#5138])
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
> 
>   * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
>     - shard-tglu-1:       NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
>     - shard-dg1:          NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +6 other tests skip
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
> 
>   * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
>     - shard-rkl:          NOTRUN -> [SKIP][125] ([i915#5286]) +1 other test skip
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
>     - shard-dg1:          NOTRUN -> [SKIP][126] ([i915#5286])
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@linear-8bpp-rotate-270:
>     - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
>     - shard-dg1:          NOTRUN -> [SKIP][128] ([i915#3638]) +4 other tests skip
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
>     - shard-dg2:          NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +7 other tests skip
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-addfb-size-overflow:
>     - shard-dg2:          NOTRUN -> [SKIP][130] ([i915#5190]) +1 other test skip
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
>     - shard-mtlp:         NOTRUN -> [SKIP][131] ([i915#6187]) +1 other test skip
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
>     - shard-mtlp:         NOTRUN -> [SKIP][132] +6 other tests skip
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
>     - shard-dg1:          NOTRUN -> [SKIP][133] ([i915#4538]) +8 other tests skip
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
> 
>   * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
>     - shard-glk:          NOTRUN -> [SKIP][134] +333 other tests skip
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html
> 
>   * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
>     - shard-dg2:          NOTRUN -> [SKIP][135] ([i915#12313]) +2 other tests skip
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
>     - shard-rkl:          NOTRUN -> [SKIP][136] ([i915#12313])
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
>     - shard-tglu:         NOTRUN -> [SKIP][137] ([i915#12313])
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
>     - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#12313])
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
> 
>   * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
>     - shard-tglu:         NOTRUN -> [SKIP][139] ([i915#6095]) +104 other tests skip
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +174 other tests skip
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>     - shard-tglu:         NOTRUN -> [SKIP][141] ([i915#12805])
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
>     - shard-rkl:          NOTRUN -> [SKIP][142] ([i915#6095]) +92 other tests skip
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#6095]) +19 other tests skip
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
>     - shard-dg1:          NOTRUN -> [SKIP][144] ([i915#12805])
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
>     - shard-tglu-1:       NOTRUN -> [SKIP][145] ([i915#6095]) +54 other tests skip
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3:
>     - shard-dg1:          NOTRUN -> [SKIP][146] ([i915#6095]) +151 other tests skip
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#6095]) +11 other tests skip
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
>     - shard-dg1:          NOTRUN -> [SKIP][148] ([i915#12313]) +3 other tests skip
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
>     - shard-dg2:          NOTRUN -> [SKIP][149] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_cdclk@mode-transition:
>     - shard-tglu-1:       NOTRUN -> [SKIP][150] ([i915#3742])
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_cdclk@mode-transition.html
> 
>   * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
>     - shard-dg2:          NOTRUN -> [SKIP][151] ([i915#11616] / [i915#7213]) +3 other tests skip
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_cdclk@plane-scaling:
>     - shard-dg1:          NOTRUN -> [SKIP][152] ([i915#3742]) +1 other test skip
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_cdclk@plane-scaling.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][153] ([i915#4087]) +4 other tests skip
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
> 
>   * igt@kms_chamelium_audio@hdmi-audio-edid:
>     - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#7828]) +9 other tests skip
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html
> 
>   * igt@kms_chamelium_color@ctm-0-50:
>     - shard-dg1:          NOTRUN -> [SKIP][155] +65 other tests skip
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_chamelium_color@ctm-0-50.html
> 
>   * igt@kms_chamelium_frames@dp-crc-fast:
>     - shard-dg2:          NOTRUN -> [SKIP][156] ([i915#7828]) +8 other tests skip
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-fast.html
> 
>   * igt@kms_chamelium_frames@hdmi-crc-fast:
>     - shard-rkl:          NOTRUN -> [SKIP][157] ([i915#7828]) +3 other tests skip
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html
> 
>   * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
>     - shard-mtlp:         NOTRUN -> [SKIP][158] ([i915#7828]) +3 other tests skip
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
> 
>   * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
>     - shard-tglu-1:       NOTRUN -> [SKIP][159] ([i915#7828]) +6 other tests skip
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
> 
>   * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
>     - shard-tglu:         NOTRUN -> [SKIP][160] ([i915#7828]) +10 other tests skip
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
> 
>   * igt@kms_content_protection@atomic:
>     - shard-tglu:         NOTRUN -> [SKIP][161] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_content_protection@atomic.html
> 
>   * igt@kms_content_protection@dp-mst-type-1:
>     - shard-tglu-1:       NOTRUN -> [SKIP][162] ([i915#3116] / [i915#3299])
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
> 
>   * igt@kms_content_protection@lic-type-0:
>     - shard-dg1:          NOTRUN -> [SKIP][163] ([i915#9424])
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_content_protection@lic-type-0.html
> 
>   * igt@kms_content_protection@mei-interface:
>     - shard-tglu-1:       NOTRUN -> [SKIP][164] ([i915#6944] / [i915#9424])
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_content_protection@mei-interface.html
> 
>   * igt@kms_content_protection@srm@pipe-a-dp-4:
>     - shard-dg2:          NOTRUN -> [TIMEOUT][165] ([i915#7173])
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-4.html
> 
>   * igt@kms_content_protection@uevent:
>     - shard-dg1:          NOTRUN -> [SKIP][166] ([i915#7116] / [i915#9424])
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_content_protection@uevent.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-32x10:
>     - shard-mtlp:         NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8814]) +1 other test skip
>    [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-32x10.html
> 
>   * igt@kms_cursor_crc@cursor-random-512x512:
>     - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#13049]) +1 other test skip
>    [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
>     - shard-rkl:          NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip
>    [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
>     - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip
>    [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html
>     - shard-mtlp:         NOTRUN -> [SKIP][171] ([i915#13049])
>    [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
>     - shard-tglu:         NOTRUN -> [SKIP][172] ([i915#13049]) +3 other tests skip
>    [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>     - shard-tglu-1:       NOTRUN -> [SKIP][173] ([i915#4103])
>    [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
>     - shard-mtlp:         NOTRUN -> [SKIP][174] ([i915#4213])
>    [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
>     - shard-dg2:          NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213])
>    [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
>     - shard-mtlp:         NOTRUN -> [SKIP][176] ([i915#9809]) +1 other test skip
>    [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
>     - shard-rkl:          NOTRUN -> [SKIP][177] +6 other tests skip
>    [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
>     - shard-snb:          [PASS][178] -> [FAIL][179] ([i915#2346])
>    [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
>    [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
>     - shard-dg1:          NOTRUN -> [SKIP][180] ([i915#4103] / [i915#4213]) +1 other test skip
>    [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
>     - shard-tglu:         NOTRUN -> [SKIP][181] ([i915#4103])
>    [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
>     - shard-tglu:         NOTRUN -> [SKIP][182] ([i915#9723])
>    [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
> 
>   * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>     - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#9833])
>    [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
> 
>   * igt@kms_display_modes@mst-extended-mode-negative:
>     - shard-tglu:         NOTRUN -> [SKIP][184] ([i915#8588])
>    [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-3/igt@kms_display_modes@mst-extended-mode-negative.html
> 
>   * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
>     - shard-tglu:         NOTRUN -> [SKIP][185] ([i915#1769] / [i915#3555] / [i915#3804])
>    [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
> 
>   * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
>     - shard-tglu:         NOTRUN -> [SKIP][186] ([i915#3804])
>    [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_dp_linktrain_fallback@dp-fallback:
>     - shard-dg2:          NOTRUN -> [SKIP][187] ([i915#12402])
>    [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
> 
>   * igt@kms_draw_crc@draw-method-mmap-wc:
>     - shard-dg1:          NOTRUN -> [SKIP][188] ([i915#8812])
>    [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-wc.html
> 
>   * igt@kms_dsc@dsc-fractional-bpp:
>     - shard-dg2:          NOTRUN -> [SKIP][189] ([i915#3840] / [i915#9688])
>    [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp.html
>     - shard-dg1:          NOTRUN -> [SKIP][190] ([i915#3840]) +1 other test skip
>    [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html
> 
>   * igt@kms_dsc@dsc-with-formats:
>     - shard-tglu:         NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840])
>    [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html
> 
>   * igt@kms_dsc@dsc-with-output-formats:
>     - shard-dg1:          NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840])
>    [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][193] ([i915#9878])
>    [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk4/igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_feature_discovery@display-2x:
>     - shard-dg2:          NOTRUN -> [SKIP][194] ([i915#1839])
>    [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_feature_discovery@display-2x.html
> 
>   * igt@kms_feature_discovery@display-3x:
>     - shard-tglu-1:       NOTRUN -> [SKIP][195] ([i915#1839]) +1 other test skip
>    [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
> 
>   * igt@kms_feature_discovery@psr1:
>     - shard-tglu:         NOTRUN -> [SKIP][196] ([i915#658])
>    [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-9/igt@kms_feature_discovery@psr1.html
> 
>   * igt@kms_feature_discovery@psr2:
>     - shard-tglu-1:       NOTRUN -> [SKIP][197] ([i915#658])
>    [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_feature_discovery@psr2.html
>     - shard-dg2:          NOTRUN -> [SKIP][198] ([i915#658])
>    [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_feature_discovery@psr2.html
> 
>   * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
>     - shard-mtlp:         NOTRUN -> [SKIP][199] ([i915#3637])
>    [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-panning-vs-hang:
>     - shard-tglu-1:       NOTRUN -> [SKIP][200] ([i915#3637]) +2 other tests skip
>    [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
> 
>   * igt@kms_flip@2x-modeset-vs-vblank-race:
>     - shard-dg2:          NOTRUN -> [SKIP][201] ([i915#9934]) +7 other tests skip
>    [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
>     - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#9934]) +2 other tests skip
>    [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
>     - shard-dg1:          NOTRUN -> [SKIP][203] ([i915#9934]) +7 other tests skip
>    [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_flip@2x-modeset-vs-vblank-race.html
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate:
>     - shard-tglu:         NOTRUN -> [SKIP][204] ([i915#3637]) +7 other tests skip
>    [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_flip@2x-plain-flip-fb-recreate.html
> 
>   * igt@kms_flip@absolute-wf_vblank-interruptible:
>     - shard-rkl:          [PASS][205] -> [DMESG-WARN][206] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn
>    [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_flip@absolute-wf_vblank-interruptible.html
>    [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_flip@absolute-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][207] ([i915#4839])
>    [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk9/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
>     - shard-mtlp:         NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8810] / [i915#8813])
>    [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8810])
>    [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
>     - shard-tglu-1:       NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672]) +1 other test skip
>    [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
>     - shard-tglu:         NOTRUN -> [SKIP][211] ([i915#2587] / [i915#2672]) +3 other tests skip
>    [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
>     - shard-dg1:          NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672]) +5 other tests skip
>    [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
>     - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +3 other tests skip
>    [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
>     - shard-tglu:         NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555]) +3 other tests skip
>    [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
>     - shard-dg1:          NOTRUN -> [SKIP][215] ([i915#2587] / [i915#2672] / [i915#3555])
>    [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
>     - shard-dg2:          NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
>    [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
>     - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#2672]) +5 other tests skip
>    [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
>     - shard-tglu-1:       NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +1 other test skip
>    [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
>     - shard-rkl:          NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555]) +1 other test skip
>    [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
>     - shard-dg1:          NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555]) +4 other tests skip
>    [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
>     - shard-rkl:          NOTRUN -> [SKIP][221] ([i915#2672]) +1 other test skip
>    [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>     - shard-mtlp:         NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
>    [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
>     - shard-rkl:          [PASS][223] -> [DMESG-WARN][224] ([i915#12964]) +58 other tests dmesg-warn
>    [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
>    [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
>     - shard-dg2:          [PASS][225] -> [FAIL][226] ([i915#6880]) +1 other test fail
>    [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
>    [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
>     - shard-mtlp:         NOTRUN -> [SKIP][227] ([i915#1825]) +6 other tests skip
>    [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
>     - shard-snb:          [PASS][228] -> [SKIP][229] +4 other tests skip
>    [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
>    [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
>     - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#5354]) +27 other tests skip
>    [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
>     - shard-rkl:          NOTRUN -> [SKIP][231] ([i915#1825]) +10 other tests skip
>    [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
>     - shard-tglu-1:       NOTRUN -> [SKIP][232] +56 other tests skip
>    [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
>     - shard-dg2:          NOTRUN -> [FAIL][233] ([i915#6880])
>    [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-suspend:
>     - shard-rkl:          [PASS][234] -> [DMESG-FAIL][235] ([i915#12964])
>    [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
>    [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
>     - shard-glk:          NOTRUN -> [INCOMPLETE][236] ([i915#10056])
>    [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
>     - shard-dg2:          NOTRUN -> [SKIP][237] ([i915#3458]) +10 other tests skip
>    [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
>     - shard-tglu:         NOTRUN -> [SKIP][238] +76 other tests skip
>    [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][239] ([i915#8708]) +3 other tests skip
>    [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
>     - shard-rkl:          NOTRUN -> [SKIP][240] ([i915#3023]) +7 other tests skip
>    [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
>     - shard-dg1:          NOTRUN -> [SKIP][241] ([i915#8708]) +22 other tests skip
>    [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
>     - shard-dg1:          NOTRUN -> [SKIP][242] ([i915#5439])
>    [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
>     - shard-dg2:          NOTRUN -> [SKIP][243] ([i915#8708]) +19 other tests skip
>    [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
>     - shard-dg1:          NOTRUN -> [SKIP][244] ([i915#3458]) +18 other tests skip
>    [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
> 
>   * igt@kms_hdr@bpc-switch-dpms:
>     - shard-dg2:          [PASS][245] -> [SKIP][246] ([i915#3555] / [i915#8228])
>    [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
>    [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html
> 
>   * igt@kms_hdr@brightness-with-hdr:
>     - shard-dg2:          NOTRUN -> [SKIP][247] ([i915#12713])
>    [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
>     - shard-dg1:          NOTRUN -> [SKIP][248] ([i915#1187] / [i915#12713])
>    [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
> 
>   * igt@kms_hdr@invalid-hdr:
>     - shard-tglu-1:       NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228])
>    [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_hdr@invalid-hdr.html
> 
>   * igt@kms_hdr@invalid-metadata-sizes:
>     - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228]) +1 other test skip
>    [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
>     - shard-rkl:          NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228])
>    [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
>     - shard-tglu:         NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228])
>    [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_hdr@invalid-metadata-sizes.html
> 
>   * igt@kms_hdr@static-toggle:
>     - shard-dg1:          NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) +1 other test skip
>    [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_hdr@static-toggle.html
> 
>   * igt@kms_hdr@static-toggle-dpms:
>     - shard-mtlp:         NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228])
>    [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@kms_hdr@static-toggle-dpms.html
> 
>   * igt@kms_joiner@basic-big-joiner:
>     - shard-dg2:          NOTRUN -> [SKIP][255] ([i915#10656])
>    [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_joiner@basic-big-joiner.html
> 
>   * igt@kms_joiner@basic-ultra-joiner:
>     - shard-tglu:         NOTRUN -> [SKIP][256] ([i915#12339])
>    [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_joiner@basic-ultra-joiner.html
> 
>   * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>     - shard-dg2:          NOTRUN -> [SKIP][257] ([i915#4816])
>    [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][258] ([i915#12756])
>    [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc.html
> 
>   * igt@kms_plane_scaling@intel-max-src-size:
>     - shard-dg2:          NOTRUN -> [SKIP][259] ([i915#6953] / [i915#9423])
>    [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html
>     - shard-dg1:          NOTRUN -> [SKIP][260] ([i915#6953])
>    [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
>     - shard-dg2:          NOTRUN -> [SKIP][261] ([i915#12247] / [i915#9423]) +1 other test skip
>    [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
>     - shard-rkl:          NOTRUN -> [SKIP][262] ([i915#12247]) +2 other tests skip
>    [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
>     - shard-tglu:         NOTRUN -> [SKIP][263] ([i915#12247]) +14 other tests skip
>    [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
>     - shard-dg2:          NOTRUN -> [SKIP][264] ([i915#12247]) +7 other tests skip
>    [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
> 
>   * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
>     - shard-tglu-1:       NOTRUN -> [SKIP][265] ([i915#12247]) +3 other tests skip
>    [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
>     - shard-mtlp:         NOTRUN -> [SKIP][266] ([i915#12247]) +4 other tests skip
>    [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
>     - shard-dg1:          NOTRUN -> [SKIP][267] ([i915#12247]) +18 other tests skip
>    [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
> 
>   * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
>     - shard-dg1:          NOTRUN -> [SKIP][268] ([i915#12247] / [i915#6953])
>    [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
> 
>   * igt@kms_pm_backlight@brightness-with-dpms:
>     - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#12343])
>    [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_pm_backlight@brightness-with-dpms.html
> 
>   * igt@kms_pm_backlight@fade-with-dpms:
>     - shard-rkl:          NOTRUN -> [SKIP][270] ([i915#5354]) +1 other test skip
>    [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
>     - shard-dg1:          NOTRUN -> [SKIP][271] ([i915#5354]) +1 other test skip
>    [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html
>     - shard-tglu:         NOTRUN -> [SKIP][272] ([i915#9812]) +1 other test skip
>    [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html
> 
>   * igt@kms_pm_dc@dc3co-vpb-simulation:
>     - shard-dg2:          NOTRUN -> [SKIP][273] ([i915#9685])
>    [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@kms_pm_dc@dc5-psr:
>     - shard-dg1:          NOTRUN -> [SKIP][274] ([i915#9685])
>    [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_pm_dc@dc5-psr.html
> 
>   * igt@kms_pm_lpsp@screens-disabled:
>     - shard-mtlp:         NOTRUN -> [SKIP][275] ([i915#8430])
>    [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_pm_lpsp@screens-disabled.html
> 
>   * igt@kms_pm_rpm@dpms-lpsp:
>     - shard-dg2:          [PASS][276] -> [SKIP][277] ([i915#9519]) +1 other test skip
>    [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
>    [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-lpsp:
>     - shard-dg2:          NOTRUN -> [SKIP][278] ([i915#9519])
>    [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
>     - shard-rkl:          NOTRUN -> [SKIP][279] ([i915#9519])
>    [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
>     - shard-dg1:          NOTRUN -> [SKIP][280] ([i915#9519])
>    [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-lpsp-stress:
>     - shard-rkl:          [PASS][281] -> [SKIP][282] ([i915#9519]) +1 other test skip
>    [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
>    [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
> 
>   * igt@kms_pm_rpm@modeset-non-lpsp-stress:
>     - shard-tglu:         NOTRUN -> [SKIP][283] ([i915#9519])
>    [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
> 
>   * igt@kms_prime@basic-modeset-hybrid:
>     - shard-dg1:          NOTRUN -> [SKIP][284] ([i915#6524]) +1 other test skip
>    [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_prime@basic-modeset-hybrid.html
>     - shard-tglu:         NOTRUN -> [SKIP][285] ([i915#6524])
>    [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_prime@basic-modeset-hybrid.html
> 
>   * igt@kms_prime@d3hot:
>     - shard-dg2:          NOTRUN -> [SKIP][286] ([i915#6524] / [i915#6805])
>    [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_prime@d3hot.html
> 
>   * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
>     - shard-tglu:         NOTRUN -> [SKIP][287] ([i915#11520]) +7 other tests skip
>    [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
>     - shard-tglu-1:       NOTRUN -> [SKIP][288] ([i915#11520]) +3 other tests skip
>    [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
>     - shard-mtlp:         NOTRUN -> [SKIP][289] ([i915#12316]) +1 other test skip
>    [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][290] ([i915#9808])
>    [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
>     - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#11520]) +7 other tests skip
>    [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
>     - shard-dg1:          NOTRUN -> [SKIP][292] ([i915#11520]) +10 other tests skip
>    [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
>     - shard-rkl:          NOTRUN -> [SKIP][293] ([i915#11520]) +1 other test skip
>    [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
> 
>   * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
>     - shard-glk:          NOTRUN -> [SKIP][294] ([i915#11520]) +10 other tests skip
>    [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk8/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
> 
>   * igt@kms_psr2_su@frontbuffer-xrgb8888:
>     - shard-dg2:          NOTRUN -> [SKIP][295] ([i915#9683])
>    [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
> 
>   * igt@kms_psr2_su@page_flip-p010:
>     - shard-dg1:          NOTRUN -> [SKIP][296] ([i915#9683]) +1 other test skip
>    [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_psr2_su@page_flip-p010.html
> 
>   * igt@kms_psr@fbc-pr-sprite-render:
>     - shard-tglu-1:       NOTRUN -> [SKIP][297] ([i915#9732]) +10 other tests skip
>    [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html
> 
>   * igt@kms_psr@fbc-psr-sprite-blt:
>     - shard-dg2:          NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +18 other tests skip
>    [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_psr@fbc-psr-sprite-blt.html
> 
>   * igt@kms_psr@fbc-psr-sprite-plane-move:
>     - shard-mtlp:         NOTRUN -> [SKIP][299] ([i915#9688]) +2 other tests skip
>    [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_psr@fbc-psr-sprite-plane-move.html
> 
>   * igt@kms_psr@psr2-cursor-render:
>     - shard-tglu:         NOTRUN -> [SKIP][300] ([i915#9732]) +15 other tests skip
>    [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_psr@psr2-cursor-render.html
> 
>   * igt@kms_psr@psr2-sprite-mmap-gtt:
>     - shard-dg1:          NOTRUN -> [SKIP][301] ([i915#1072] / [i915#9732]) +26 other tests skip
>    [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html
> 
>   * igt@kms_psr@psr2-suspend:
>     - shard-rkl:          NOTRUN -> [SKIP][302] ([i915#1072] / [i915#9732]) +9 other tests skip
>    [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_psr@psr2-suspend.html
> 
>   * igt@kms_pwrite_crc:
>     - shard-rkl:          NOTRUN -> [DMESG-WARN][303] ([i915#12964]) +6 other tests dmesg-warn
>    [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_pwrite_crc.html
> 
>   * igt@kms_rotation_crc@bad-pixel-format:
>     - shard-snb:          NOTRUN -> [SKIP][304] +78 other tests skip
>    [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@kms_rotation_crc@bad-pixel-format.html
>     - shard-mtlp:         NOTRUN -> [SKIP][305] ([i915#12755])
>    [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-7/igt@kms_rotation_crc@bad-pixel-format.html
> 
>   * igt@kms_rotation_crc@primary-rotation-270:
>     - shard-dg2:          NOTRUN -> [SKIP][306] ([i915#12755]) +1 other test skip
>    [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html
> 
>   * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>     - shard-tglu:         NOTRUN -> [SKIP][307] ([i915#5289])
>    [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
> 
>   * igt@kms_scaling_modes@scaling-mode-center:
>     - shard-tglu-1:       NOTRUN -> [SKIP][308] ([i915#3555]) +4 other tests skip
>    [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html
> 
>   * igt@kms_scaling_modes@scaling-mode-full:
>     - shard-tglu:         NOTRUN -> [SKIP][309] ([i915#3555]) +7 other tests skip
>    [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full.html
> 
>   * igt@kms_selftest@drm_framebuffer:
>     - shard-dg1:          NOTRUN -> [ABORT][310] ([i915#12231]) +1 other test abort
>    [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_selftest@drm_framebuffer.html
>     - shard-glk:          NOTRUN -> [ABORT][311] ([i915#12231]) +1 other test abort
>    [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk1/igt@kms_selftest@drm_framebuffer.html
> 
>   * igt@kms_setmode@invalid-clone-single-crtc-stealing:
>     - shard-dg2:          NOTRUN -> [SKIP][312] ([i915#3555]) +2 other tests skip
>    [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
>     - shard-rkl:          NOTRUN -> [SKIP][313] ([i915#3555]) +2 other tests skip
>    [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
>     - shard-dg1:          NOTRUN -> [SKIP][314] ([i915#3555]) +5 other tests skip
>    [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
> 
>   * igt@kms_sysfs_edid_timing:
>     - shard-dg2:          NOTRUN -> [FAIL][315] ([IGT#160])
>    [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@kms_sysfs_edid_timing.html
>     - shard-dg1:          NOTRUN -> [FAIL][316] ([IGT#160] / [i915#6493])
>    [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@kms_sysfs_edid_timing.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-dg2:          NOTRUN -> [SKIP][317] ([i915#8623])
>    [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_vrr@flip-basic-fastset:
>     - shard-tglu-1:       NOTRUN -> [SKIP][318] ([i915#9906])
>    [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html
> 
>   * igt@kms_vrr@max-min:
>     - shard-tglu:         NOTRUN -> [SKIP][319] ([i915#9906]) +1 other test skip
>    [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_vrr@max-min.html
> 
>   * igt@kms_vrr@negative-basic:
>     - shard-dg2:          NOTRUN -> [SKIP][320] ([i915#3555] / [i915#9906])
>    [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-11/igt@kms_vrr@negative-basic.html
>     - shard-rkl:          NOTRUN -> [SKIP][321] ([i915#3555] / [i915#9906])
>    [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_vrr@negative-basic.html
>     - shard-dg1:          NOTRUN -> [SKIP][322] ([i915#3555] / [i915#9906])
>    [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_vrr@negative-basic.html
>     - shard-tglu:         NOTRUN -> [SKIP][323] ([i915#3555] / [i915#9906])
>    [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_vrr@negative-basic.html
> 
>   * igt@kms_vrr@seamless-rr-switch-virtual:
>     - shard-dg1:          NOTRUN -> [SKIP][324] ([i915#9906]) +2 other tests skip
>    [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-virtual.html
> 
>   * igt@kms_writeback@writeback-check-output:
>     - shard-glk:          NOTRUN -> [SKIP][325] ([i915#2437])
>    [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-glk5/igt@kms_writeback@writeback-check-output.html
> 
>   * igt@kms_writeback@writeback-check-output-xrgb2101010:
>     - shard-tglu-1:       NOTRUN -> [SKIP][326] ([i915#2437] / [i915#9412])
>    [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
> 
>   * igt@kms_writeback@writeback-fb-id:
>     - shard-tglu:         NOTRUN -> [SKIP][327] ([i915#2437]) +1 other test skip
>    [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_writeback@writeback-fb-id.html
> 
>   * igt@kms_writeback@writeback-fb-id-xrgb2101010:
>     - shard-tglu:         NOTRUN -> [SKIP][328] ([i915#2437] / [i915#9412])
>    [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-10/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
> 
>   * igt@kms_writeback@writeback-invalid-parameters:
>     - shard-dg1:          NOTRUN -> [SKIP][329] ([i915#2437]) +1 other test skip
>    [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html
>     - shard-dg2:          NOTRUN -> [SKIP][330] ([i915#2437])
>    [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html
>     - shard-rkl:          NOTRUN -> [SKIP][331] ([i915#2437])
>    [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@kms_writeback@writeback-invalid-parameters.html
> 
>   * igt@perf@mi-rpc:
>     - shard-dg2:          NOTRUN -> [SKIP][332] ([i915#2434])
>    [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-8/igt@perf@mi-rpc.html
> 
>   * igt@perf_pmu@busy-idle@ccs0:
>     - shard-mtlp:         [PASS][333] -> [FAIL][334] ([i915#4349]) +11 other tests fail
>    [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@perf_pmu@busy-idle@ccs0.html
>    [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@perf_pmu@busy-idle@ccs0.html
>     - shard-dg2:          [PASS][335] -> [FAIL][336] ([i915#4349]) +7 other tests fail
>    [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@perf_pmu@busy-idle@ccs0.html
>    [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@perf_pmu@busy-idle@ccs0.html
> 
>   * igt@perf_pmu@cpu-hotplug:
>     - shard-tglu:         NOTRUN -> [SKIP][337] ([i915#8850])
>    [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html
> 
>   * igt@perf_pmu@most-busy-check-all:
>     - shard-rkl:          [PASS][338] -> [FAIL][339] ([i915#4349]) +1 other test fail
>    [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
>    [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
> 
>   * igt@perf_pmu@rc6-all-gts:
>     - shard-dg1:          NOTRUN -> [SKIP][340] ([i915#8516]) +1 other test skip
>    [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html
> 
>   * igt@perf_pmu@rc6@other-idle-gt0:
>     - shard-dg2:          NOTRUN -> [SKIP][341] ([i915#8516])
>    [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html
> 
>   * igt@perf_pmu@render-node-busy-idle@vcs0:
>     - shard-dg2:          NOTRUN -> [FAIL][342] ([i915#4349]) +5 other tests fail
>    [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-2/igt@perf_pmu@render-node-busy-idle@vcs0.html
> 
>   * igt@perf_pmu@semaphore-busy@vcs1:
>     - shard-dg1:          [PASS][343] -> [FAIL][344] ([i915#4349]) +3 other tests fail
>    [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html
>    [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html
> 
>   * igt@prime_vgem@basic-fence-read:
>     - shard-dg1:          NOTRUN -> [SKIP][345] ([i915#3708])
>    [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@prime_vgem@basic-fence-read.html
> 
>   * igt@prime_vgem@coherency-gtt:
>     - shard-dg1:          NOTRUN -> [SKIP][346] ([i915#3708] / [i915#4077])
>    [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@prime_vgem@coherency-gtt.html
> 
>   * igt@prime_vgem@fence-flip-hang:
>     - shard-dg2:          NOTRUN -> [SKIP][347] ([i915#3708])
>    [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@prime_vgem@fence-flip-hang.html
> 
>   * igt@sriov_basic@enable-vfs-autoprobe-on:
>     - shard-dg1:          NOTRUN -> [SKIP][348] ([i915#9917])
>    [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-on.html
> 
>   * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
>     - shard-dg2:          NOTRUN -> [SKIP][349] ([i915#9917])
>    [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
> 
>   * igt@tools_test@sysfs_l3_parity:
>     - shard-dg1:          NOTRUN -> [SKIP][350] ([i915#4818])
>    [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ccs@suspend-resume:
>     - shard-dg2:          [INCOMPLETE][351] ([i915#7297]) -> [PASS][352] +1 other test pass
>    [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-5/igt@gem_ccs@suspend-resume.html
>    [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@gem_ccs@suspend-resume.html
> 
>   * igt@gem_eio@hibernate:
>     - shard-tglu:         [ABORT][353] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][354]
>    [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-10/igt@gem_eio@hibernate.html
>    [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_eio@hibernate.html
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-dg1:          [DMESG-WARN][355] ([i915#4391] / [i915#4423]) -> [PASS][356]
>    [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@gem_eio@in-flight-suspend.html
>    [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@gem_eio@in-flight-suspend.html
> 
>   * igt@gem_eio@kms:
>     - shard-tglu:         [DMESG-WARN][357] -> [PASS][358]
>    [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-9/igt@gem_eio@kms.html
>    [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-8/igt@gem_eio@kms.html
> 
>   * igt@gem_exec_whisper@basic-queues-priority:
>     - shard-rkl:          [DMESG-WARN][359] ([i915#12917] / [i915#12964]) -> [PASS][360]
>    [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-2/igt@gem_exec_whisper@basic-queues-priority.html
>    [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_exec_whisper@basic-queues-priority.html
> 
>   * igt@gem_pxp@verify-pxp-stale-buf-execution:
>     - shard-tglu:         [SKIP][361] ([i915#4270]) -> [PASS][362] +1 other test pass
>    [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
>    [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html
> 
>   * igt@gem_workarounds@suspend-resume:
>     - shard-rkl:          [DMESG-FAIL][363] ([i915#12964]) -> [PASS][364]
>    [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@gem_workarounds@suspend-resume.html
>    [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-2/igt@gem_workarounds@suspend-resume.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
>     - shard-dg1:          [FAIL][365] ([i915#12548] / [i915#3591]) -> [PASS][366]
>    [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
>    [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
> 
>   * igt@i915_pm_rps@reset:
>     - shard-snb:          [INCOMPLETE][367] ([i915#7790]) -> [PASS][368]
>    [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb4/igt@i915_pm_rps@reset.html
>    [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@i915_pm_rps@reset.html
> 
>   * igt@i915_selftest@live@workarounds:
>     - shard-mtlp:         [ABORT][369] ([i915#12061]) -> [PASS][370] +1 other test pass
>    [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
>    [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
> 
>   * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
>     - shard-dg1:          [DMESG-WARN][371] ([i915#4423]) -> [PASS][372] +2 other tests pass
>    [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
>    [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
> 
>   * igt@kms_flip@2x-flip-vs-fences-interruptible:
>     - shard-snb:          [INCOMPLETE][373] -> [PASS][374] +1 other test pass
>    [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
>    [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
> 
>   * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3:
>     - shard-dg2:          [FAIL][375] ([i915#11989]) -> [PASS][376] +5 other tests pass
>    [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3.html
>    [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3.html
> 
>   * igt@kms_flip@flip-vs-rmfb-interruptible:
>     - shard-dg2:          [INCOMPLETE][377] ([i915#6113]) -> [PASS][378] +1 other test pass
>    [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_flip@flip-vs-rmfb-interruptible.html
>    [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-3/igt@kms_flip@flip-vs-rmfb-interruptible.html
> 
>   * igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3:
>     - shard-dg1:          [INCOMPLETE][379] ([i915#6113]) -> [PASS][380] +1 other test pass
>    [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3.html
>    [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3.html
> 
>   * igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1:
>     - shard-mtlp:         [FAIL][381] ([i915#11989]) -> [PASS][382] +4 other tests pass
>    [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
>    [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
> 
>   * igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1:
>     - shard-snb:          [FAIL][383] ([i915#11989]) -> [PASS][384] +5 other tests pass
>    [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
>    [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
>     - shard-snb:          [SKIP][385] -> [PASS][386] +3 other tests pass
>    [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
>    [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
>     - shard-dg2:          [FAIL][387] ([i915#6880]) -> [PASS][388]
>    [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
>    [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
> 
>   * igt@kms_plane_cursor@primary:
>     - shard-mtlp:         [DMESG-WARN][389] ([i915#1982]) -> [PASS][390] +1 other test pass
>    [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-2/igt@kms_plane_cursor@primary.html
>    [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@kms_plane_cursor@primary.html
> 
>   * igt@kms_pm_dc@dc6-dpms:
>     - shard-tglu:         [FAIL][391] ([i915#9295]) -> [PASS][392]
>    [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
>    [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
> 
>   * igt@kms_pm_rpm@modeset-non-lpsp-stress:
>     - shard-dg2:          [SKIP][393] ([i915#9519]) -> [PASS][394] +1 other test pass
>    [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
>    [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
> 
>   * igt@perf@gen12-oa-tlb-invalidate:
>     - shard-rkl:          [DMESG-WARN][395] ([i915#12964]) -> [PASS][396] +52 other tests pass
>    [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-1/igt@perf@gen12-oa-tlb-invalidate.html
>    [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@perf@gen12-oa-tlb-invalidate.html
> 
>   * igt@perf_pmu@all-busy-idle-check-all:
>     - shard-dg2:          [FAIL][397] ([i915#11943]) -> [PASS][398]
>    [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html
>    [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html
>     - shard-mtlp:         [FAIL][399] ([i915#11943]) -> [PASS][400]
>    [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html
>    [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html
> 
>   * igt@perf_pmu@busy-double-start@vecs0:
>     - shard-dg1:          [FAIL][401] ([i915#4349]) -> [PASS][402] +2 other tests pass
>    [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-14/igt@perf_pmu@busy-double-start@vecs0.html
>    [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@perf_pmu@busy-double-start@vecs0.html
> 
>   * igt@perf_pmu@most-busy-idle-check-all@rcs0:
>     - shard-rkl:          [FAIL][403] ([i915#4349]) -> [PASS][404] +1 other test pass
>    [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
>    [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
> 
>   * igt@perf_pmu@multi-client:
>     - shard-mtlp:         [FAIL][405] ([i915#4349]) -> [PASS][406] +1 other test pass
>    [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-mtlp-5/igt@perf_pmu@multi-client.html
>    [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-mtlp-4/igt@perf_pmu@multi-client.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_eio@hibernate:
>     - shard-dg2:          [DMESG-WARN][407] -> [ABORT][408] ([i915#10030] / [i915#7975] / [i915#8213])
>    [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-1/igt@gem_eio@hibernate.html
>    [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-1/igt@gem_eio@hibernate.html
> 
>   * igt@gem_lmem_swapping@smem-oom:
>     - shard-dg2:          [DMESG-WARN][409] ([i915#5493]) -> [SKIP][410] ([i915#12936])
>    [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-11/igt@gem_lmem_swapping@smem-oom.html
>    [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-7/igt@gem_lmem_swapping@smem-oom.html
> 
>   * igt@gem_pxp@hw-rejects-pxp-context:
>     - shard-rkl:          [TIMEOUT][411] ([i915#12917] / [i915#12964]) -> [FAIL][412] ([i915#13104])
>    [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html
>    [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html
> 
>   * igt@gem_pxp@regular-baseline-src-copy-readible:
>     - shard-rkl:          [TIMEOUT][413] ([i915#12964]) -> [SKIP][414] ([i915#4270])
>    [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
>    [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html
> 
>   * igt@gem_pxp@reject-modify-context-protection-on:
>     - shard-rkl:          [TIMEOUT][415] ([i915#12917] / [i915#12964]) -> [SKIP][416] ([i915#4270])
>    [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html
>    [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-on.html
> 
>   * igt@gem_pxp@verify-pxp-stale-buf-execution:
>     - shard-rkl:          [SKIP][417] ([i915#4270]) -> [TIMEOUT][418] ([i915#12917] / [i915#12964]) +1 other test timeout
>    [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html
>    [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-tglu:         [ABORT][419] ([i915#10887] / [i915#12817] / [i915#9820]) -> [ABORT][420] ([i915#10887] / [i915#12817] / [i915#13010] / [i915#9820])
>    [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
>    [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>     - shard-dg1:          [SKIP][421] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][422] ([i915#4538] / [i915#5286])
>    [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>    [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> 
>   * igt@kms_content_protection@mei-interface:
>     - shard-dg1:          [SKIP][423] ([i915#9433]) -> [SKIP][424] ([i915#9424])
>    [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-13/igt@kms_content_protection@mei-interface.html
>    [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-14/igt@kms_content_protection@mei-interface.html
> 
>   * igt@kms_content_protection@srm:
>     - shard-dg2:          [SKIP][425] ([i915#7118]) -> [TIMEOUT][426] ([i915#7173])
>    [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-7/igt@kms_content_protection@srm.html
>    [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-10/igt@kms_content_protection@srm.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
>     - shard-dg2:          [SKIP][427] ([i915#3458]) -> [SKIP][428] ([i915#10433] / [i915#3458])
>    [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
>    [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
>     - shard-dg1:          [SKIP][429] -> [SKIP][430] ([i915#4423])
>    [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
>    [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_hdr@brightness-with-hdr:
>     - shard-tglu:         [SKIP][431] ([i915#1187] / [i915#12713]) -> [SKIP][432] ([i915#12713])
>    [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
>    [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html
> 
>   * igt@kms_psr@pr-basic:
>     - shard-dg1:          [SKIP][433] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][434] ([i915#1072] / [i915#9732])
>    [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-dg1-17/igt@kms_psr@pr-basic.html
>    [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-dg1-17/igt@kms_psr@pr-basic.html
> 
>   * igt@perf@gen12-group-concurrent-oa-buffer-read:
>     - shard-rkl:          [DMESG-WARN][435] ([i915#12964]) -> [FAIL][436] ([i915#10538])
>    [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/shard-rkl-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html
>    [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/shard-rkl-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160
>   [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
>   [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
>   [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
>   [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
>   [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
>   [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
>   [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
>   [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
>   [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
>   [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
>   [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
>   [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
>   [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/iss
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12214/index.html
> 





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

end of thread, other threads:[~2024-12-03  4:37 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-28 11:16 [PATCH i-g-t v2 0/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
2024-11-28 11:16 ` [PATCH i-g-t v2 1/2] tests/gem_mmap_offset: Split 'clear' subtest Janusz Krzysztofik
2024-11-28 11:56   ` Andi Shyti
2024-11-28 11:16 ` [PATCH i-g-t v2 2/2] tests/gem_mmap_offset: Fix OOM hits Janusz Krzysztofik
2024-11-28 11:56   ` Andi Shyti
2024-11-28 13:56 ` ✓ Xe.CI.BAT: success for tests/gem_mmap_offset: Fix OOM hits (rev2) Patchwork
2024-11-28 14:05 ` ✓ i915.CI.BAT: " Patchwork
2024-11-28 17:05 ` ✗ Xe.CI.Full: failure " Patchwork
2024-11-29 15:06   ` Janusz Krzysztofik
2024-11-28 17:16 ` ✗ i915.CI.Full: " Patchwork
2024-11-29 14:59   ` Janusz Krzysztofik
2024-12-03  4:37     ` Illipilli, TejasreeX
2024-12-02 13:07 ` ✓ i915.CI.Full: success " Patchwork

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