Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Discard wait_for_lmem_ready from fault injection test
@ 2025-12-17 13:14 Balasubramani Vivekanandan
  2025-12-17 13:14 ` [PATCH 1/1] tests/xe/xe_fault_injection: Remove probe function wait_for_lmem_ready Balasubramani Vivekanandan
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Balasubramani Vivekanandan @ 2025-12-17 13:14 UTC (permalink / raw)
  To: igt-dev; +Cc: Francois Dugast, Balasubramani Vivekanandan

There is a driver patch in-flight which removes the function
"wait_for_lmem_ready" from its code -
https://patchwork.freedesktop.org/series/159150/
This function is used in the fault injection test. So keeping this patch
ready to merge immediately once the driver patch is merged.

Balasubramani Vivekanandan (1):
  tests/xe/xe_fault_injection: Remove probe function wait_for_lmem_ready

 tests/intel/xe_fault_injection.c | 2 --
 1 file changed, 2 deletions(-)

-- 
2.43.0


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

* [PATCH 1/1] tests/xe/xe_fault_injection: Remove probe function wait_for_lmem_ready
  2025-12-17 13:14 [PATCH 0/1] Discard wait_for_lmem_ready from fault injection test Balasubramani Vivekanandan
@ 2025-12-17 13:14 ` Balasubramani Vivekanandan
  2025-12-17 13:16   ` Francois Dugast
  2025-12-17 19:19 ` ✓ i915.CI.BAT: success for Discard wait_for_lmem_ready from fault injection test Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Balasubramani Vivekanandan @ 2025-12-17 13:14 UTC (permalink / raw)
  To: igt-dev; +Cc: Francois Dugast, Balasubramani Vivekanandan

wait_for_lmem_ready function is removed from the driver probe. Discard
it from here as well.

Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>
---
 tests/intel/xe_fault_injection.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
index 013b4dc9a..f3bfc4b40 100644
--- a/tests/intel/xe_fault_injection.c
+++ b/tests/intel/xe_fault_injection.c
@@ -242,7 +242,6 @@ static void ignore_fail_dump_in_dmesg(const char function_name[], bool enable)
  *
  * arg[1]:
  * @guc_wait_ucode:			guc_wait_ucode
- * @wait_for_lmem_ready:		wait_for_lmem_ready
  * @xe_add_hw_engine_class_defaults:	xe_add_hw_engine_class_defaults
  * @xe_device_create:			xe_device_create
  * @xe_device_probe_early:		xe_device_probe_early
@@ -567,7 +566,6 @@ int igt_main_args("I:", NULL, help_str, opt_handler, NULL)
 		bool pf_only;
 	} probe_fail_functions[] = {
 		{ "guc_wait_ucode", 0, true },
-		{ "wait_for_lmem_ready" },
 		{ "xe_add_hw_engine_class_defaults" },
 		{ "xe_device_create" },
 		{ "xe_device_probe_early" },
-- 
2.43.0


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

* Re: [PATCH 1/1] tests/xe/xe_fault_injection: Remove probe function wait_for_lmem_ready
  2025-12-17 13:14 ` [PATCH 1/1] tests/xe/xe_fault_injection: Remove probe function wait_for_lmem_ready Balasubramani Vivekanandan
@ 2025-12-17 13:16   ` Francois Dugast
  0 siblings, 0 replies; 9+ messages in thread
From: Francois Dugast @ 2025-12-17 13:16 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: igt-dev

On Wed, Dec 17, 2025 at 06:44:08PM +0530, Balasubramani Vivekanandan wrote:
> wait_for_lmem_ready function is removed from the driver probe. Discard
> it from here as well.
> 
> Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>

Reviewed-by: Francois Dugast <francois.dugast@intel.com>

> ---
>  tests/intel/xe_fault_injection.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
> index 013b4dc9a..f3bfc4b40 100644
> --- a/tests/intel/xe_fault_injection.c
> +++ b/tests/intel/xe_fault_injection.c
> @@ -242,7 +242,6 @@ static void ignore_fail_dump_in_dmesg(const char function_name[], bool enable)
>   *
>   * arg[1]:
>   * @guc_wait_ucode:			guc_wait_ucode
> - * @wait_for_lmem_ready:		wait_for_lmem_ready
>   * @xe_add_hw_engine_class_defaults:	xe_add_hw_engine_class_defaults
>   * @xe_device_create:			xe_device_create
>   * @xe_device_probe_early:		xe_device_probe_early
> @@ -567,7 +566,6 @@ int igt_main_args("I:", NULL, help_str, opt_handler, NULL)
>  		bool pf_only;
>  	} probe_fail_functions[] = {
>  		{ "guc_wait_ucode", 0, true },
> -		{ "wait_for_lmem_ready" },
>  		{ "xe_add_hw_engine_class_defaults" },
>  		{ "xe_device_create" },
>  		{ "xe_device_probe_early" },
> -- 
> 2.43.0
> 

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

* ✓ i915.CI.BAT: success for Discard wait_for_lmem_ready from fault injection test
  2025-12-17 13:14 [PATCH 0/1] Discard wait_for_lmem_ready from fault injection test Balasubramani Vivekanandan
  2025-12-17 13:14 ` [PATCH 1/1] tests/xe/xe_fault_injection: Remove probe function wait_for_lmem_ready Balasubramani Vivekanandan
@ 2025-12-17 19:19 ` Patchwork
  2025-12-17 19:20 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-12-17 19:19 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: igt-dev

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

== Series Details ==

Series: Discard wait_for_lmem_ready from fault injection test
URL   : https://patchwork.freedesktop.org/series/159151/
State : success

== Summary ==

CI Bug Log - changes from IGT_8670 -> IGTPW_14227
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (42 -> 41)
------------------------------

  Additional (1): fi-elk-e7500 
  Missing    (2): bat-dg2-13 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@workarounds:
    - bat-dg2-9:          [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/bat-dg2-9/igt@i915_selftest@live@workarounds.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/bat-dg2-9/igt@i915_selftest@live@workarounds.html
    - bat-arls-6:         [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/bat-arls-6/igt@i915_selftest@live@workarounds.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/bat-arls-6/igt@i915_selftest@live@workarounds.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1:
    - fi-elk-e7500:       NOTRUN -> [SKIP][5] +26 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/fi-elk-e7500/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-twl-1:          [DMESG-FAIL][6] -> [PASS][7] +1 other test pass
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/bat-twl-1/igt@i915_selftest@live.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/bat-twl-1/igt@i915_selftest@live.html

  * igt@kms_hdmi_inject@inject-audio:
    - fi-tgl-1115g4:      [FAIL][8] -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html

  
#### Warnings ####

  * igt@i915_selftest@live:
    - bat-atsm-1:         [DMESG-FAIL][10] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][11] ([i915#12061] / [i915#14204])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/bat-atsm-1/igt@i915_selftest@live.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/bat-atsm-1/igt@i915_selftest@live.html

  * igt@i915_selftest@live@mman:
    - bat-atsm-1:         [DMESG-FAIL][12] ([i915#13929]) -> [DMESG-FAIL][13] ([i915#14204])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/bat-atsm-1/igt@i915_selftest@live@mman.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/bat-atsm-1/igt@i915_selftest@live@mman.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
  [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8670 -> IGTPW_14227

  CI-20190529: 20190529
  CI_DRM_17698: 605176fe40c828b491a1532367df157529895b87 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14227: 13b6d583b5c4295ae214e9134601e8205292c134 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8670: 8670

== Logs ==

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

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

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

* ✓ Xe.CI.BAT: success for Discard wait_for_lmem_ready from fault injection test
  2025-12-17 13:14 [PATCH 0/1] Discard wait_for_lmem_ready from fault injection test Balasubramani Vivekanandan
  2025-12-17 13:14 ` [PATCH 1/1] tests/xe/xe_fault_injection: Remove probe function wait_for_lmem_ready Balasubramani Vivekanandan
  2025-12-17 19:19 ` ✓ i915.CI.BAT: success for Discard wait_for_lmem_ready from fault injection test Patchwork
@ 2025-12-17 19:20 ` Patchwork
  2025-12-18  0:01 ` ✗ i915.CI.Full: failure " Patchwork
  2025-12-18 18:38 ` ✗ Xe.CI.Full: " Patchwork
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-12-17 19:20 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: igt-dev

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

== Series Details ==

Series: Discard wait_for_lmem_ready from fault injection test
URL   : https://patchwork.freedesktop.org/series/159151/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8670_BAT -> XEIGTPW_14227_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@xe_waitfence@abstime:
    - bat-dg2-oem2:       [TIMEOUT][1] ([Intel XE#6506]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/bat-dg2-oem2/igt@xe_waitfence@abstime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/bat-dg2-oem2/igt@xe_waitfence@abstime.html

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


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

  * IGT: IGT_8670 -> IGTPW_14227

  IGTPW_14227: 13b6d583b5c4295ae214e9134601e8205292c134 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8670: 8670
  xe-4259-605176fe40c828b491a1532367df157529895b87: 605176fe40c828b491a1532367df157529895b87

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for Discard wait_for_lmem_ready from fault injection test
  2025-12-17 13:14 [PATCH 0/1] Discard wait_for_lmem_ready from fault injection test Balasubramani Vivekanandan
                   ` (2 preceding siblings ...)
  2025-12-17 19:20 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-18  0:01 ` Patchwork
  2026-01-05  8:51   ` Vivekanandan, Balasubramani
  2025-12-18 18:38 ` ✗ Xe.CI.Full: " Patchwork
  4 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2025-12-18  0:01 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: igt-dev

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

== Series Details ==

Series: Discard wait_for_lmem_ready from fault injection test
URL   : https://patchwork.freedesktop.org/series/159151/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8670_full -> IGTPW_14227_full
====================================================

Summary
-------

  **FAILURE**

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

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_suspend@basic-s3-devices@smem:
    - shard-rkl:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@gem_exec_suspend@basic-s3-devices@smem.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices@smem.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_joiner@basic-big-joiner.html

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@gem_ccs@block-multicopy-inplace:
    - shard-dg1:          NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@gem_ccs@block-multicopy-inplace.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-tglu:         NOTRUN -> [SKIP][6] ([i915#9323])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
    - shard-dg2:          [PASS][7] -> [INCOMPLETE][8] ([i915#13356])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html

  * igt@gem_create@create-ext-cpu-access-sanity-check:
    - shard-rkl:          NOTRUN -> [SKIP][9] ([i915#6335])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html

  * igt@gem_ctx_persistence@heartbeat-many:
    - shard-dg1:          NOTRUN -> [SKIP][10] ([i915#8555]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-many.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#280])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html
    - shard-rkl:          NOTRUN -> [SKIP][12] ([i915#280]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html
    - shard-dg1:          NOTRUN -> [SKIP][13] ([i915#280])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@gem_ctx_sseu@invalid-sseu.html
    - shard-tglu:         NOTRUN -> [SKIP][14] ([i915#280])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-10/igt@gem_ctx_sseu@invalid-sseu.html
    - shard-mtlp:         NOTRUN -> [SKIP][15] ([i915#280])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-7/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_eio@in-flight-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][16] ([i915#13390])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk9/igt@gem_eio@in-flight-suspend.html

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

  * igt@gem_exec_balancer@noheartbeat:
    - shard-dg2:          NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html
    - shard-mtlp:         NOTRUN -> [SKIP][20] ([i915#8555])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html

  * igt@gem_exec_balancer@parallel:
    - shard-tglu:         NOTRUN -> [SKIP][21] ([i915#4525])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-9/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-tglu-1:       NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-rkl:          NOTRUN -> [SKIP][23] ([i915#4525])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@gem_exec_balancer@parallel-ordering.html

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

  * igt@gem_exec_fence@submit3:
    - shard-dg2:          NOTRUN -> [SKIP][25] ([i915#4812])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gem_exec_fence@submit3.html
    - shard-dg1:          NOTRUN -> [SKIP][26] ([i915#4812]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@gem_exec_fence@submit3.html

  * igt@gem_exec_flush@basic-uc-rw-default:
    - shard-dg1:          NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +3 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-13/igt@gem_exec_flush@basic-uc-rw-default.html

  * igt@gem_exec_flush@basic-wb-set-default:
    - shard-dg2:          NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@gem_exec_flush@basic-wb-set-default.html

  * igt@gem_exec_params@rsvd2-dirt:
    - shard-dg2:          NOTRUN -> [SKIP][29] ([i915#5107])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html

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

  * igt@gem_exec_reloc@basic-gtt-cpu-active:
    - shard-rkl:          NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html
    - shard-mtlp:         NOTRUN -> [SKIP][32] ([i915#3281])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html

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

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

  * igt@gem_exec_suspend@basic-s3-devices:
    - shard-rkl:          [PASS][35] -> [ABORT][36] ([i915#15131])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@gem_exec_suspend@basic-s3-devices.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices.html

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

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

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-rkl:          NOTRUN -> [SKIP][39] ([i915#4613])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][40] ([i915#4613]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@random:
    - shard-glk:          NOTRUN -> [SKIP][41] ([i915#4613]) +4 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk2/igt@gem_lmem_swapping@random.html

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

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

  * igt@gem_media_vme:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#284])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@gem_media_vme.html
    - shard-dg1:          NOTRUN -> [SKIP][45] ([i915#284])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-13/igt@gem_media_vme.html

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

  * igt@gem_mmap_gtt@coherency:
    - shard-rkl:          NOTRUN -> [SKIP][47] ([i915#14544])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_mmap_gtt@coherency.html

  * igt@gem_partial_pwrite_pread@reads-uncached:
    - shard-dg2:          NOTRUN -> [SKIP][48] ([i915#3282]) +5 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gem_partial_pwrite_pread@reads-uncached.html
    - shard-rkl:          NOTRUN -> [SKIP][49] ([i915#14544] / [i915#3282])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html

  * igt@gem_pread@display:
    - shard-rkl:          NOTRUN -> [SKIP][50] ([i915#3282])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@gem_pread@display.html

  * igt@gem_pread@exhaustion:
    - shard-glk:          NOTRUN -> [WARN][51] ([i915#2658])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk2/igt@gem_pread@exhaustion.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#3282]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
    - shard-dg2:          NOTRUN -> [SKIP][53] ([i915#4270])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
    - shard-dg1:          NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-18/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html

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

  * igt@gem_render_copy@y-tiled-ccs-to-linear:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) +4 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-linear.html

  * igt@gem_userptr_blits@access-control:
    - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#3297])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][58] ([i915#3297])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html

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

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
    - shard-dg1:          NOTRUN -> [SKIP][60] ([i915#3297] / [i915#4880]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
    - shard-dg2:          NOTRUN -> [SKIP][61] ([i915#3297] / [i915#4880])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][62] ([i915#13356])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@gem_workarounds@suspend-resume-context.html

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

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

  * igt@gen9_exec_parse@bb-secure:
    - shard-rkl:          NOTRUN -> [SKIP][65] ([i915#2527])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@cmd-crossing-page:
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#2856])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gen9_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@unaligned-jump:
    - shard-dg1:          NOTRUN -> [SKIP][67] ([i915#2527]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@gen9_exec_parse@unaligned-jump.html

  * igt@i915_drm_fdinfo@busy-hang@vcs0:
    - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#14073]) +5 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@i915_drm_fdinfo@busy-hang@vcs0.html

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

  * igt@i915_pm_rps@waitboost:
    - shard-mtlp:         [PASS][70] -> [FAIL][71] ([i915#15365])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-mtlp-3/igt@i915_pm_rps@waitboost.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-2/igt@i915_pm_rps@waitboost.html

  * igt@i915_selftest@live@workarounds:
    - shard-mtlp:         [PASS][72] -> [DMESG-FAIL][73] ([i915#12061]) +1 other test dmesg-fail
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-mtlp-8/igt@i915_selftest@live@workarounds.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-2/igt@i915_selftest@live@workarounds.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-tglu:         NOTRUN -> [INCOMPLETE][74] ([i915#4817] / [i915#7443])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-10/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][75] ([i915#4817])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html

  * igt@i915_suspend@forcewake:
    - shard-glk:          NOTRUN -> [INCOMPLETE][76] ([i915#4817]) +1 other test incomplete
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk5/igt@i915_suspend@forcewake.html

  * igt@i915_suspend@sysfs-reader:
    - shard-rkl:          [PASS][77] -> [INCOMPLETE][78] ([i915#4817])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@i915_suspend@sysfs-reader.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@i915_suspend@sysfs-reader.html

  * igt@intel_hwmon@hwmon-write:
    - shard-tglu-1:       NOTRUN -> [SKIP][79] ([i915#7707])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#4212])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
    - shard-dg1:          NOTRUN -> [SKIP][81] ([i915#4212]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html

  * igt@kms_addfb_basic@invalid-set-prop-any:
    - shard-dg1:          NOTRUN -> [DMESG-WARN][82] ([i915#4423])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_addfb_basic@invalid-set-prop-any.html

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

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][84] ([i915#5286])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
    - shard-tglu-1:       NOTRUN -> [SKIP][85] ([i915#5286]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
    - shard-dg1:          NOTRUN -> [SKIP][86] ([i915#4538] / [i915#5286]) +5 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-tglu:         NOTRUN -> [SKIP][87] ([i915#5286]) +3 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][88] ([i915#3638])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][89]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
    - shard-dg1:          NOTRUN -> [SKIP][90] ([i915#3638]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

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

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-dg2:          NOTRUN -> [SKIP][92] ([i915#5190])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][93] ([i915#4538]) +3 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-d-dp-3:
    - shard-dg2:          NOTRUN -> [SKIP][94] ([i915#6095]) +61 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-d-dp-3.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][95] ([i915#12313])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][96] ([i915#10307] / [i915#6095]) +118 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][97] ([i915#6095]) +156 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-13/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3.html

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

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-rkl:          NOTRUN -> [SKIP][99] ([i915#14098] / [i915#6095]) +36 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][100] ([i915#12313])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][101] ([i915#12313])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][102] ([i915#14544] / [i915#6095]) +8 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][103] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][104] ([i915#6095]) +24 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][105] ([i915#6095]) +64 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][106] ([i915#6095]) +4 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-5/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][107] ([i915#12313])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

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

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-tglu:         NOTRUN -> [SKIP][109] ([i915#11151] / [i915#7828]) +8 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
    - shard-mtlp:         NOTRUN -> [SKIP][110] ([i915#11151] / [i915#7828])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
    - shard-rkl:          NOTRUN -> [SKIP][111] ([i915#11151] / [i915#14544] / [i915#7828])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

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

  * igt@kms_chamelium_frames@hdmi-crc-single:
    - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#11151] / [i915#7828]) +7 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_chamelium_frames@hdmi-crc-single.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-rkl:          NOTRUN -> [SKIP][114] ([i915#11151] / [i915#7828]) +4 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@hdmi-hpd:
    - shard-dg2:          NOTRUN -> [SKIP][115] ([i915#11151] / [i915#7828]) +3 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_chamelium_hpd@hdmi-hpd.html

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

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][117] ([i915#3299]) +1 other test skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-dg1:          NOTRUN -> [SKIP][118] ([i915#3299]) +1 other test skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_content_protection@dp-mst-type-1.html

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

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][120] ([i915#6944] / [i915#9424])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_content_protection@lic-type-1.html
    - shard-dg1:          NOTRUN -> [SKIP][121] ([i915#6944] / [i915#9424])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_content_protection@lic-type-1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-rkl:          NOTRUN -> [SKIP][122] ([i915#13049])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-offscreen-max-size:
    - shard-dg2:          NOTRUN -> [SKIP][123] ([i915#3555])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-max-size.html

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-tglu-1:       NOTRUN -> [SKIP][124] ([i915#3555]) +2 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][125] ([i915#13049])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#13049]) +1 other test skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-dg1:          NOTRUN -> [SKIP][127] ([i915#13049]) +3 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x512.html

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

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-tglu:         NOTRUN -> [FAIL][129] ([i915#13566]) +1 other test fail
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-64x21:
    - shard-mtlp:         NOTRUN -> [SKIP][130] ([i915#8814])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-64x21.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-rkl:          NOTRUN -> [SKIP][131] ([i915#4103]) +1 other test skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([i915#13046] / [i915#5354])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][133] +9 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
    - shard-tglu:         NOTRUN -> [SKIP][134] ([i915#9067])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][135] ([i915#4103] / [i915#4213])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
    - shard-dg1:          NOTRUN -> [SKIP][136] ([i915#4103] / [i915#4213])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-dg1:          NOTRUN -> [SKIP][137] ([i915#9723])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-18/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
    - shard-dg2:          NOTRUN -> [SKIP][138] ([i915#9833])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

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

  * igt@kms_dp_aux_dev:
    - shard-tglu:         NOTRUN -> [SKIP][140] ([i915#1257])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@kms_dp_aux_dev.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-dg2:          [PASS][141] -> [SKIP][142] ([i915#13749])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-sst.html
    - shard-tglu:         NOTRUN -> [SKIP][143] ([i915#13749])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#13748])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-2/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg1:          NOTRUN -> [SKIP][145] ([i915#13707])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-tglu-1:       NOTRUN -> [SKIP][146] ([i915#13707])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-rkl:          NOTRUN -> [SKIP][147] ([i915#14544] / [i915#3840])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

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

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

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

  * igt@kms_feature_discovery@dp-mst:
    - shard-tglu-1:       NOTRUN -> [SKIP][151] ([i915#9337])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-rkl:          NOTRUN -> [SKIP][152] ([i915#9934]) +1 other test skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_flip@2x-absolute-wf_vblank.html

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

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][154] ([i915#9934]) +1 other test skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
    - shard-tglu-1:       NOTRUN -> [SKIP][155] ([i915#3637] / [i915#9934]) +1 other test skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][156] ([i915#14544] / [i915#9934]) +2 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][157] ([i915#3637] / [i915#9934]) +7 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@2x-flip-vs-fences:
    - shard-dg1:          NOTRUN -> [SKIP][158] ([i915#8381])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][159] ([i915#12745] / [i915#4839])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][160] ([i915#4839])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg1:          NOTRUN -> [SKIP][161] ([i915#9934]) +3 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-14/igt@kms_flip@2x-modeset-vs-vblank-race.html

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

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][163] ([i915#12745] / [i915#6113])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-tglu:         NOTRUN -> [SKIP][164] ([i915#2672] / [i915#3555])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

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

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

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

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#2672]) +1 other test skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
    - shard-dg1:          NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672]) +5 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html

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

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

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

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

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][174] ([i915#2672] / [i915#3555]) +2 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][175] ([i915#2672] / [i915#3555]) +5 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-mtlp:         NOTRUN -> [SKIP][176] ([i915#1825]) +2 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-dg1:          NOTRUN -> [SKIP][177] +28 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-tglu-1:       NOTRUN -> [SKIP][178] +26 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
    - shard-dg1:          NOTRUN -> [SKIP][179] ([i915#8708]) +12 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][181] ([i915#1825]) +18 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
    - shard-snb:          NOTRUN -> [SKIP][182] +10 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][184] ([i915#14544] / [i915#1825]) +1 other test skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-tglu-1:       NOTRUN -> [SKIP][185] ([i915#15102]) +8 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
    - shard-dg1:          NOTRUN -> [SKIP][186] ([i915#15102]) +3 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][187] ([i915#15102]) +18 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-rkl:          NOTRUN -> [SKIP][188] ([i915#15102])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][189] ([i915#15102]) +3 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][190] ([i915#8708]) +7 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][191] ([i915#15102] / [i915#3458]) +11 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
    - shard-glk10:        NOTRUN -> [SKIP][192] +57 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][193] ([i915#5354]) +17 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
    - shard-rkl:          NOTRUN -> [SKIP][194] ([i915#15102] / [i915#3023]) +4 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][195] ([i915#14544] / [i915#15102] / [i915#3023])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228]) +2 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-4/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-rkl:          NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) +1 other test skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_hdr@invalid-metadata-sizes.html

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

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-dg1:          NOTRUN -> [SKIP][199] ([i915#15458])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_joiner@basic-force-ultra-joiner.html

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

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][201] ([i915#15460])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#14712])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane_alpha_blend@alpha-basic:
    - shard-glk10:        NOTRUN -> [FAIL][203] ([i915#12178])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
    - shard-glk10:        NOTRUN -> [FAIL][204] ([i915#7862]) +1 other test fail
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-tglu-1:       NOTRUN -> [SKIP][205] ([i915#13958])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-dg1:          NOTRUN -> [SKIP][206] ([i915#13958])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-yf.html
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#13958])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-dg1:          NOTRUN -> [SKIP][208] ([i915#14259])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
    - shard-dg1:          NOTRUN -> [SKIP][209] ([i915#15329]) +4 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
    - shard-tglu:         NOTRUN -> [SKIP][210] ([i915#15329] / [i915#3555])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html

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

  * igt@kms_pm_backlight@fade:
    - shard-rkl:          NOTRUN -> [SKIP][212] ([i915#5354])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_pm_backlight@fade.html

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

  * igt@kms_pm_rpm@cursor:
    - shard-dg1:          NOTRUN -> [SKIP][214] ([i915#4077]) +6 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_pm_rpm@cursor.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-rkl:          [PASS][215] -> [SKIP][216] ([i915#15073]) +3 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2:          [PASS][217] -> [SKIP][218] ([i915#15073])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-tglu-1:       NOTRUN -> [SKIP][219] ([i915#15073])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html

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

  * igt@kms_prime@d3hot:
    - shard-dg1:          NOTRUN -> [SKIP][221] ([i915#6524])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_prime@d3hot.html

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

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
    - shard-glk:          NOTRUN -> [SKIP][223] ([i915#11520]) +13 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html

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

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-dg2:          NOTRUN -> [SKIP][225] ([i915#11520]) +2 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html

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

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-tglu:         NOTRUN -> [SKIP][227] ([i915#11520]) +5 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-tglu-1:       NOTRUN -> [SKIP][228] ([i915#11520]) +4 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-tglu:         NOTRUN -> [SKIP][229] ([i915#9683])
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg1:          NOTRUN -> [SKIP][230] ([i915#9683])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-primary-blt:
    - shard-rkl:          NOTRUN -> [SKIP][231] ([i915#1072] / [i915#14544] / [i915#9732])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_psr@fbc-pr-primary-blt.html

  * igt@kms_psr@fbc-pr-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][232] ([i915#1072] / [i915#9732]) +9 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_psr@fbc-pr-suspend.html

  * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#9688]) +1 other test skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-7/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html

  * igt@kms_psr@pr-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][234] ([i915#9732]) +15 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@kms_psr@pr-dpms.html

  * igt@kms_psr@psr-primary-blt:
    - shard-rkl:          NOTRUN -> [SKIP][235] ([i915#1072] / [i915#9732]) +6 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_psr@psr-primary-blt.html

  * igt@kms_psr@psr-sprite-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][236] ([i915#9732]) +7 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
    - shard-dg1:          NOTRUN -> [SKIP][237] ([i915#1072] / [i915#9732]) +18 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_psr@psr-sprite-mmap-cpu.html

  * igt@kms_psr@psr2-sprite-plane-onoff:
    - shard-glk:          NOTRUN -> [SKIP][238] +529 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk1/igt@kms_psr@psr2-sprite-plane-onoff.html

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

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-dg1:          NOTRUN -> [SKIP][240] ([i915#3555]) +3 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-18/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_setmode@basic:
    - shard-snb:          [PASS][241] -> [FAIL][242] ([i915#15106]) +2 other tests fail
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-snb4/igt@kms_setmode@basic.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-snb4/igt@kms_setmode@basic.html

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

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][244] ([i915#12276]) +1 other test incomplete
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_vrr@negative-basic:
    - shard-dg2:          [PASS][245] -> [SKIP][246] ([i915#3555] / [i915#9906])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-11/igt@kms_vrr@negative-basic.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-rkl:          NOTRUN -> [SKIP][247] ([i915#9906])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-tglu-1:       NOTRUN -> [SKIP][248] ([i915#9906])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - shard-dg2:          NOTRUN -> [SKIP][249] ([i915#2436])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@perf@gen8-unprivileged-single-ctx-counters.html

  * igt@prime_mmap@test_aperture_limit:
    - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#14121]) +1 other test skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-3/igt@prime_mmap@test_aperture_limit.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - shard-dg1:          NOTRUN -> [SKIP][251] ([i915#14121]) +1 other test skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-18/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

  * igt@prime_vgem@basic-fence-flip:
    - shard-dg1:          NOTRUN -> [SKIP][252] ([i915#3708]) +1 other test skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html
    - shard-dg2:          NOTRUN -> [SKIP][253] ([i915#3708])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-read:
    - shard-rkl:          NOTRUN -> [SKIP][254] ([i915#3291] / [i915#3708])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@prime_vgem@basic-read.html

  * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
    - shard-tglu:         NOTRUN -> [FAIL][255] ([i915#12910]) +19 other tests fail
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-dg1:          NOTRUN -> [SKIP][256] ([i915#4818])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@tools_test@sysfs_l3_parity.html
    - shard-dg2:          NOTRUN -> [SKIP][257] ([i915#4818])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@gem_exec_endless@dispatch:
    - shard-dg2:          [TIMEOUT][258] ([i915#3778] / [i915#7016]) -> [PASS][259] +1 other test pass
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-6/igt@gem_exec_endless@dispatch.html
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@gem_exec_endless@dispatch.html

  * igt@gem_exec_suspend@basic-s0@smem:
    - shard-rkl:          [INCOMPLETE][260] ([i915#13356]) -> [PASS][261] +1 other test pass
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@gem_exec_suspend@basic-s0@smem.html
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@gem_exec_suspend@basic-s0@smem.html

  * igt@gem_lmem_swapping@massive:
    - shard-dg2:          [FAIL][262] ([i915#15452]) -> [PASS][263] +1 other test pass
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-4/igt@gem_lmem_swapping@massive.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@gem_lmem_swapping@massive.html

  * igt@gem_softpin@noreloc-s3:
    - shard-rkl:          [INCOMPLETE][264] ([i915#13809]) -> [PASS][265]
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_softpin@noreloc-s3.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg1:          [ABORT][266] ([i915#15342]) -> [PASS][267]
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
    - shard-dg2:          [ABORT][268] ([i915#15342]) -> [PASS][269]
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-tglu:         [WARN][270] ([i915#13790] / [i915#2681]) -> [PASS][271] +1 other test pass
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence.html
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@i915_selftest@live@gem_contexts:
    - shard-dg1:          [ABORT][272] -> [PASS][273] +1 other test pass
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-18/igt@i915_selftest@live@gem_contexts.html
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@i915_selftest@live@gem_contexts.html

  * igt@i915_suspend@forcewake:
    - shard-rkl:          [ABORT][274] ([i915#15140]) -> [PASS][275]
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-1/igt@i915_suspend@forcewake.html
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@i915_suspend@forcewake.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-mtlp:         [FAIL][276] ([i915#5138]) -> [PASS][277] +1 other test pass
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_color@ctm-signed:
    - shard-dg1:          [DMESG-WARN][278] ([i915#4423]) -> [PASS][279]
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-13/igt@kms_color@ctm-signed.html
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_color@ctm-signed.html

  * igt@kms_cursor_crc@cursor-random-128x42:
    - shard-tglu:         [FAIL][280] ([i915#13566]) -> [PASS][281] +5 other tests pass
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-9/igt@kms_cursor_crc@cursor-random-128x42.html
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
    - shard-rkl:          [FAIL][282] ([i915#13566]) -> [PASS][283] +6 other tests pass
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html

  * igt@kms_dp_aux_dev:
    - shard-dg2:          [SKIP][284] ([i915#1257]) -> [PASS][285]
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-7/igt@kms_dp_aux_dev.html
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_dp_aux_dev.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][286] ([i915#13027]) -> [PASS][287] +1 other test pass
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
    - shard-tglu:         [FAIL][288] ([i915#13027]) -> [PASS][289] +1 other test pass
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-9/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
    - shard-dg2:          [FAIL][290] ([i915#6880]) -> [PASS][291] +1 other test pass
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-dg2:          [SKIP][292] ([i915#3555] / [i915#8228]) -> [PASS][293]
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-8/igt@kms_hdr@static-toggle-dpms.html
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
    - shard-rkl:          [SKIP][294] ([i915#3555] / [i915#8228]) -> [PASS][295]
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_hdr@static-toggle-dpms.html
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-dg2:          [SKIP][296] ([i915#15459]) -> [PASS][297] +1 other test pass
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2:          [SKIP][298] ([i915#6953] / [i915#9423]) -> [PASS][299]
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-rkl:          [SKIP][300] ([i915#6953]) -> [PASS][301]
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_setmode@basic:
    - shard-tglu:         [FAIL][302] ([i915#15106]) -> [PASS][303] +2 other tests pass
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-2/igt@kms_setmode@basic.html
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-3/igt@kms_setmode@basic.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-mtlp:         [FAIL][304] ([i915#15106]) -> [PASS][305] +2 other tests pass
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@perf@polling@0-rcs0:
    - shard-rkl:          [FAIL][306] ([i915#10538]) -> [PASS][307] +1 other test pass
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-2/igt@perf@polling@0-rcs0.html
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@perf@polling@0-rcs0.html

  * igt@perf_pmu@busy-double-start@vecs1:
    - shard-dg2:          [FAIL][308] ([i915#4349]) -> [PASS][309] +4 other tests pass
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html

  
#### Warnings ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-rkl:          [SKIP][310] ([i915#14544] / [i915#8411]) -> [SKIP][311] ([i915#8411])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@api_intel_bb@crc32:
    - shard-rkl:          [SKIP][312] ([i915#14544] / [i915#6230]) -> [SKIP][313] ([i915#6230])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@api_intel_bb@crc32.html
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@api_intel_bb@crc32.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-rkl:          [SKIP][314] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][315] ([i915#3555] / [i915#9323])
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-rkl:          [SKIP][316] ([i915#9323]) -> [SKIP][317] ([i915#14544] / [i915#9323])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_ccs@suspend-resume:
    - shard-rkl:          [SKIP][318] ([i915#14544] / [i915#9323]) -> [SKIP][319] ([i915#9323])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_ccs@suspend-resume.html
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_ccs@suspend-resume.html

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-rkl:          [SKIP][320] ([i915#6335]) -> [SKIP][321] ([i915#14544] / [i915#6335])
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-rkl:          [SKIP][322] ([i915#14544] / [i915#4525]) -> [SKIP][323] ([i915#4525]) +2 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
    - shard-rkl:          [SKIP][324] ([i915#14544] / [i915#3281]) -> [SKIP][325] ([i915#3281]) +10 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html

  * igt@gem_exec_reloc@basic-write-read:
    - shard-rkl:          [SKIP][326] ([i915#3281]) -> [SKIP][327] ([i915#14544] / [i915#3281]) +2 other tests skip
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@gem_exec_reloc@basic-write-read.html
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html

  * igt@gem_lmem_swapping@massive:
    - shard-rkl:          [SKIP][328] ([i915#4613]) -> [SKIP][329] ([i915#14544] / [i915#4613])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@gem_lmem_swapping@massive.html
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_lmem_swapping@massive.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-rkl:          [SKIP][330] ([i915#14544] / [i915#4613]) -> [SKIP][331] ([i915#4613]) +5 other tests skip
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-rkl:          [SKIP][332] ([i915#14544] / [i915#3282]) -> [SKIP][333] ([i915#3282]) +5 other tests skip
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-rkl:          [SKIP][334] ([i915#3282]) -> [SKIP][335] ([i915#14544] / [i915#3282]) +2 other tests skip
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-rkl:          [SKIP][336] ([i915#3297]) -> [SKIP][337] ([i915#14544] / [i915#3297]) +1 other test skip
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-rkl:          [SKIP][338] ([i915#14544] / [i915#3297]) -> [SKIP][339] ([i915#3297])
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@relocations:
    - shard-rkl:          [SKIP][340] ([i915#3281] / [i915#3297]) -> [SKIP][341] ([i915#14544] / [i915#3281] / [i915#3297])
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@gem_userptr_blits@relocations.html
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_userptr_blits@relocations.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-rkl:          [SKIP][342] ([i915#2527]) -> [SKIP][343] ([i915#14544] / [i915#2527]) +1 other test skip
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-8/igt@gen9_exec_parse@bb-start-out.html
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html

  * igt@gen9_exec_parse@unaligned-access:
    - shard-rkl:          [SKIP][344] ([i915#14544] / [i915#2527]) -> [SKIP][345] ([i915#2527]) +2 other tests skip
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@gen9_exec_parse@unaligned-access.html

  * igt@i915_pm_freq_api@freq-reset-multiple:
    - shard-rkl:          [SKIP][346] ([i915#14544] / [i915#8399]) -> [SKIP][347] ([i915#8399])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html

  * igt@i915_power@sanity:
    - shard-rkl:          [SKIP][348] ([i915#14544] / [i915#7984]) -> [SKIP][349] ([i915#7984])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@i915_power@sanity.html
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@i915_power@sanity.html

  * igt@i915_query@hwconfig_table:
    - shard-rkl:          [SKIP][350] ([i915#6245]) -> [SKIP][351] ([i915#14544] / [i915#6245])
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-4/igt@i915_query@hwconfig_table.html
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@i915_query@hwconfig_table.html

  * igt@intel_hwmon@hwmon-read:
    - shard-rkl:          [SKIP][352] ([i915#14544] / [i915#7707]) -> [SKIP][353] ([i915#7707])
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@intel_hwmon@hwmon-read.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-rkl:          [SKIP][354] ([i915#12454] / [i915#12712]) -> [SKIP][355] ([i915#12454] / [i915#12712] / [i915#14544])
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-rkl:          [SKIP][356] ([i915#1769] / [i915#3555]) -> [SKIP][357] ([i915#14544] / [i915#1769] / [i915#3555])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-rkl:          [SKIP][358] ([i915#5286]) -> [SKIP][359] ([i915#14544] / [i915#5286]) +3 other tests skip
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-rkl:          [SKIP][360] ([i915#14544] / [i915#5286]) -> [SKIP][361] ([i915#5286]) +4 other tests skip
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-rkl:          [SKIP][362] ([i915#3638]) -> [SKIP][363] ([i915#14544] / [i915#3638]) +1 other test skip
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-90.html
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-rkl:          [SKIP][364] ([i915#14544] / [i915#3638]) -> [SKIP][365] ([i915#3638])
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-rkl:          [SKIP][366] ([i915#14544]) -> [SKIP][367] +7 other tests skip
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][368] ([i915#14544] / [i915#6095]) -> [SKIP][369] ([i915#6095]) +11 other tests skip
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
    - shard-rkl:          [SKIP][370] ([i915#14098] / [i915#6095]) -> [SKIP][371] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][372] ([i915#6095]) -> [SKIP][373] ([i915#14544] / [i915#6095]) +4 other tests skip
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][374] ([i915#12805] / [i915#14544]) -> [SKIP][375] ([i915#12805])
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][376] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][377] ([i915#14098] / [i915#6095]) +17 other tests skip
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_cdclk@mode-transition:
    - shard-rkl:          [SKIP][378] ([i915#14544] / [i915#3742]) -> [SKIP][379] ([i915#3742])
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_cdclk@mode-transition.html
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-rkl:          [SKIP][380] ([i915#11151] / [i915#7828]) -> [SKIP][381] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd.html
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_chamelium_hpd@hdmi-hpd-fast:
    - shard-rkl:          [SKIP][382] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][383] ([i915#11151] / [i915#7828]) +5 other tests skip
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-rkl:          [SKIP][384] ([i915#3116]) -> [SKIP][385] ([i915#14544] / [i915#3116])
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-rkl:          [SKIP][386] ([i915#14544] / [i915#3116]) -> [SKIP][387] ([i915#3116]) +1 other test skip
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-rkl:          [SKIP][388] ([i915#3555]) -> [SKIP][389] ([i915#14544] / [i915#3555]) +6 other tests skip
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-rkl:          [SKIP][390] ([i915#13049] / [i915#14544]) -> [SKIP][391] ([i915#13049])
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-rkl:          [SKIP][392] -> [SKIP][393] ([i915#14544]) +8 other tests skip
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-rkl:          [SKIP][394] ([i915#14544] / [i915#4103]) -> [SKIP][395] ([i915#4103]) +1 other test skip
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-rkl:          [SKIP][396] ([i915#13749] / [i915#14544]) -> [SKIP][397] ([i915#13749])
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-rkl:          [SKIP][398] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][399] ([i915#3555] / [i915#3840])
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-rkl:          [SKIP][400] ([i915#3955]) -> [SKIP][401] ([i915#14544] / [i915#3955])
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-8/igt@kms_fbcon_fbt@psr-suspend.html
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@psr1:
    - shard-rkl:          [SKIP][402] ([i915#658]) -> [SKIP][403] ([i915#14544] / [i915#658])
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@kms_feature_discovery@psr1.html
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-rkl:          [SKIP][404] ([i915#14544] / [i915#9934]) -> [SKIP][405] ([i915#9934]) +3 other tests skip
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-glk:          [INCOMPLETE][406] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][407] ([i915#12745] / [i915#4839])
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [INCOMPLETE][408] ([i915#12314] / [i915#4839]) -> [INCOMPLETE][409] ([i915#4839])
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-rkl:          [SKIP][410] ([i915#9934]) -> [SKIP][411] ([i915#14544] / [i915#9934]) +4 other tests skip
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-rkl:          [SKIP][412] ([i915#2672] / [i915#3555]) -> [SKIP][413] ([i915#14544] / [i915#2672] / [i915#3555]) +2 other tests skip
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
    - shard-rkl:          [SKIP][414] ([i915#2672]) -> [SKIP][415] ([i915#14544] / [i915#2672]) +2 other tests skip
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-rkl:          [SKIP][416] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][417] ([i915#2672] / [i915#3555])
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-rkl:          [SKIP][418] ([i915#14544] / [i915#2672]) -> [SKIP][419] ([i915#2672])
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-dg1:          [SKIP][420] ([i915#2587] / [i915#2672] / [i915#3555]) -> [SKIP][421] ([i915#2587] / [i915#2672] / [i915#3555] / [i915#4423])
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/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-ytileccs-upscaling@pipe-a-valid-mode:
    - shard-dg1:          [SKIP][422] ([i915#2587] / [i915#2672]) -> [SKIP][423] ([i915#2587] / [i915#2672] / [i915#4423])
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-rkl:          [SKIP][424] ([i915#14544] / [i915#1825]) -> [SKIP][425] ([i915#1825]) +29 other tests skip
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-dg2:          [SKIP][426] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][427] ([i915#15102] / [i915#3458])
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][428] ([i915#15102] / [i915#3023]) -> [SKIP][429] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-rkl:          [SKIP][430] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][431] ([i915#15102] / [i915#3023]) +17 other tests skip
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][432] ([i915#1825]) -> [SKIP][433] ([i915#14544] / [i915#1825]) +17 other tests skip
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg1:          [SKIP][434] -> [SKIP][435] ([i915#4423])
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][436] ([i915#15102]) -> [SKIP][437] ([i915#14544] / [i915#15102]) +2 other tests skip
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
    - shard-rkl:          [SKIP][438] ([i915#14544] / [i915#15102]) -> [SKIP][439] ([i915#15102]) +5 other tests skip
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2:          [SKIP][440] ([i915#15102] / [i915#3458]) -> [SKIP][441] ([i915#10433] / [i915#15102] / [i915#3458]) +4 other tests skip
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-tglu:         [SKIP][442] ([i915#1187] / [i915#12713]) -> [SKIP][443] ([i915#12713])
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-rkl:          [SKIP][444] ([i915#14544] / [i915#15458]) -> [SKIP][445] ([i915#15458])
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-4tiled:
    - shard-rkl:          [SKIP][446] ([i915#14544] / [i915#14712]) -> [SKIP][447] ([i915#14712])
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-rkl:          [SKIP][448] ([i915#13958] / [i915#14544]) -> [SKIP][449] ([i915#13958])
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-rkl:          [SKIP][450] ([i915#5354]) -> [SKIP][451] ([i915#14544] / [i915#5354])
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-rkl:          [SKIP][452] ([i915#14544] / [i915#4281]) -> [SKIP][453] ([i915#4281])
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
    - shard-tglu:         [SKIP][454] ([i915#15128]) -> [SKIP][455] ([i915#4281])
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][456] ([i915#9340]) -> [SKIP][457] ([i915#3828])
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@package-g7:
    - shard-rkl:          [SKIP][458] ([i915#14544] / [i915#15403]) -> [SKIP][459] ([i915#15403])
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_pm_rpm@package-g7.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-rkl:          [SKIP][460] ([i915#6524]) -> [SKIP][461] ([i915#14544] / [i915#6524])
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-rkl:          [SKIP][462] ([i915#11520]) -> [SKIP][463] ([i915#11520] / [i915#14544]) +4 other tests skip
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-rkl:          [SKIP][464] ([i915#11520] / [i915#14544]) -> [SKIP][465] ([i915#11520]) +6 other tests skip
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr@pr-sprite-mmap-gtt:
    - shard-rkl:          [SKIP][466] ([i915#1072] / [i915#9732]) -> [SKIP][467] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_psr@pr-sprite-mmap-gtt.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_psr@pr-sprite-mmap-gtt.html

  * igt@kms_psr@psr2-cursor-mmap-gtt:
    - shard-rkl:          [SKIP][468] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][469] ([i915#1072] / [i915#9732]) +17 other tests skip
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_psr@psr2-cursor-mmap-gtt.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-rkl:          [SKIP][470] ([i915#14544] / [i915#5289]) -> [SKIP][471] ([i915#5289]) +1 other test skip
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-rkl:          [SKIP][472] ([i915#14544] / [i915#3555]) -> [SKIP][473] ([i915#3555]) +1 other test skip
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_vrr@lobf:
    - shard-rkl:          [SKIP][474] ([i915#11920] / [i915#14544]) -> [SKIP][475] ([i915#11920])
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_vrr@lobf.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_vrr@lobf.html

  * igt@kms_vrr@max-min:
    - shard-rkl:          [SKIP][476] ([i915#9906]) -> [SKIP][477] ([i915#14544] / [i915#9906])
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_vrr@max-min.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_vrr@max-min.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - shard-rkl:          [SKIP][478] ([i915#14544] / [i915#2436]) -> [SKIP][479] ([i915#2436])
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html

  * igt@perf@per-context-mode-unprivileged:
    - shard-rkl:          [SKIP][480] ([i915#14544] / [i915#2435]) -> [SKIP][481] ([i915#2435])
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html

  * igt@perf_pmu@rc6-all-gts:
    - shard-rkl:          [SKIP][482] ([i915#14544] / [i915#8516]) -> [SKIP][483] ([i915#8516])
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-rkl:          [SKIP][484] ([i915#9917]) -> [SKIP][485] ([i915#14544] / [i915#9917])
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-rkl:          [SKIP][486] ([i915#14544] / [i915#9917]) -> [SKIP][487] ([i915#9917])
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
  [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
  [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
  [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
  [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
  [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
  [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
  [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
  [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365
  [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15452]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15452
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
  [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
  [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016
  [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
  [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
  [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8670 -> IGTPW_14227

  CI-20190529: 20190529
  CI_DRM_17698: 605176fe40c828b491a1532367df157529895b87 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14227: 13b6d583b5c4295ae214e9134601e8205292c134 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8670: 8670

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for Discard wait_for_lmem_ready from fault injection test
  2025-12-17 13:14 [PATCH 0/1] Discard wait_for_lmem_ready from fault injection test Balasubramani Vivekanandan
                   ` (3 preceding siblings ...)
  2025-12-18  0:01 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-12-18 18:38 ` Patchwork
  2026-01-05  8:50   ` Vivekanandan, Balasubramani
  4 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2025-12-18 18:38 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: igt-dev

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

== Series Details ==

Series: Discard wait_for_lmem_ready from fault injection test
URL   : https://patchwork.freedesktop.org/series/159151/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8670_FULL -> XEIGTPW_14227_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_14227_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_14227_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 (2 -> 2)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-1:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-1.html

  * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][2] +25 other tests dmesg-fail
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7.html

  * igt@xe_exec_system_allocator@many-new-bo-map:
    - shard-bmg:          [PASS][3] -> [TIMEOUT][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@xe_exec_system_allocator@many-new-bo-map.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@xe_exec_system_allocator@many-new-bo-map.html

  
#### Warnings ####

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          [SKIP][5] ([Intel XE#6703]) -> [SKIP][6] +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@device_reset@unbind-reset-rebind:
    - shard-bmg:          [PASS][7] -> [SKIP][8] ([Intel XE#6815])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@device_reset@unbind-reset-rebind.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@device_reset@unbind-reset-rebind.html

  * igt@fbdev@unaligned-read:
    - shard-bmg:          [PASS][9] -> [SKIP][10] ([Intel XE#2134]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@fbdev@unaligned-read.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@fbdev@unaligned-read.html

  * igt@intel_hwmon@hwmon-read:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#1125])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@intel_hwmon@hwmon-read.html

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          [PASS][12] -> [SKIP][13] ([Intel XE#5177] / [Intel XE#6703])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@intel_hwmon@hwmon-write.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@intel_hwmon@hwmon-write.html

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-b-dp-2:
    - shard-bmg:          [PASS][14] -> [INCOMPLETE][15] ([Intel XE#4912]) +1 other test incomplete
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-dp-2.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-dp-2.html

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

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          [PASS][17] -> [DMESG-WARN][18] ([Intel XE#6766])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

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

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#1124]) +4 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#2191])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#367])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html

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

  * igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2887]) +9 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/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][25] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#3432])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#3432]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

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

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#306])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_chamelium_color@ctm-0-50.html

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

  * igt@kms_chamelium_frames@hdmi-crc-planes-random:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2252])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_chamelium_frames@hdmi-crc-planes-random.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#373]) +3 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2341]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@srm:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#3278]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2320]) +3 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-256x85.html

  * igt@kms_cursor_crc@cursor-random-256x85:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#1424]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_cursor_crc@cursor-random-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#2321])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-bmg:          [PASS][38] -> [SKIP][39] ([Intel XE#2291]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#309]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#1508])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [PASS][42] -> [SKIP][43] ([Intel XE#4302])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html

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

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#4331])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][46] ([Intel XE#2244])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@kms_dsc@dsc-with-bpc.html
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2244])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_dsc@dsc-with-bpc.html

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

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [PASS][49] -> [SKIP][50] ([Intel XE#2316]) +2 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_flip@2x-nonexisting-fb.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2293]) +6 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [FAIL][52] ([Intel XE#3106] / [Intel XE#4683]) +1 other test fail
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2293] / [Intel XE#2380])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

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

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

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#4141]) +8 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#6557] / [Intel XE#6703]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#651]) +4 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html

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

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

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

  * igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [ABORT][63] ([Intel XE#6740]) +1 other test abort
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#356])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#599])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_plane_lowres@tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2393])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#5021])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#6886]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#6886]) +3 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#1439] / [Intel XE#836])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-bmg:          [PASS][71] -> [SKIP][72] ([Intel XE#6693]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr@fbc-pr-no-drrs:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1406]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@kms_psr@fbc-pr-no-drrs.html

  * igt@kms_psr@pr-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_psr@pr-primary-render.html

  * igt@kms_psr@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#1406] / [Intel XE#6703]) +7 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_psr@psr-suspend.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2414])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#3414] / [Intel XE#3904])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#1435])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaler:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#6503]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaler.html

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

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#1091] / [Intel XE#2849])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#1447])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_configfs@survivability-mode:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#6010])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-7/igt@xe_configfs@survivability-mode.html

  * igt@xe_eudebug@basic-connect:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#4837]) +2 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@xe_eudebug@basic-connect.html

  * igt@xe_eudebug@basic-vm-access-faultable:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#4837]) +3 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@xe_eudebug@basic-vm-access-faultable.html

  * igt@xe_eudebug_online@interrupt-all:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@xe_eudebug_online@interrupt-all.html

  * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html

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

  * igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind:
    - shard-bmg:          [PASS][93] -> [SKIP][94] ([Intel XE#6557] / [Intel XE#6703]) +4 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind.html

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

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

  * igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race:
    - shard-bmg:          [PASS][97] -> [SKIP][98] ([Intel XE#6703]) +534 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#6874]) +13 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#6874]) +14 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem.html

  * igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#5007])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-execqueues-new-busy:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#6703]) +155 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_system_allocator@many-execqueues-new-busy.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#4943]) +6 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-5/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#4943]) +13 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#2833])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#2833])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html

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

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#2284] / [Intel XE#366])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0:
    - shard-lnl:          [PASS][109] -> [FAIL][110] ([Intel XE#6251])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-lnl:          NOTRUN -> [SKIP][111] ([Intel XE#4650])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#4733])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html

  * igt@xe_query@multigpu-query-invalid-query:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#944]) +2 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_query@multigpu-query-invalid-query.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#944])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@xe_query@multigpu-query-uc-fw-version-guc.html

  * igt@xe_sriov_auto_provisioning@exclusive-ranges:
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#4130])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@xe_sriov_auto_provisioning@exclusive-ranges.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-bmg:          [PASS][116] -> [FAIL][117] ([Intel XE#6569])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@xe_sriov_flr@flr-twice.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#4273])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-5/igt@xe_sriov_flr@flr-vfs-parallel.html

  * igt@xe_sriov_vram@vf-access-beyond:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#6376])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-5/igt@xe_sriov_vram@vf-access-beyond.html

  
#### Possible fixes ####

  * igt@fbdev@unaligned-write:
    - shard-bmg:          [SKIP][120] ([Intel XE#2134]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@fbdev@unaligned-write.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@fbdev@unaligned-write.html

  * igt@intel_hwmon@hwmon-read:
    - shard-bmg:          [SKIP][122] ([Intel XE#5177] / [Intel XE#6703]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@intel_hwmon@hwmon-read.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@intel_hwmon@hwmon-read.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [FAIL][124] ([Intel XE#6054]) -> [PASS][125] +3 other tests pass
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [INCOMPLETE][126] ([Intel XE#3862]) -> [PASS][127] +1 other test pass
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [SKIP][128] ([Intel XE#2316]) -> [PASS][129] +1 other test pass
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-lnl:          [FAIL][130] ([Intel XE#301]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [FAIL][132] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][133] +1 other test pass
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

  * igt@kms_flip@wf_vblank-ts-check:
    - shard-bmg:          [SKIP][134] ([Intel XE#6703]) -> [PASS][135] +530 other tests pass
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [FAIL][136] ([Intel XE#718]) -> [PASS][137]
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          [SKIP][138] ([Intel XE#6693]) -> [PASS][139] +1 other test pass
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_pm_rpm@i2c.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_pm_rpm@i2c.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-lnl:          [FAIL][140] ([Intel XE#6361]) -> [PASS][141] +2 other tests pass
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [FAIL][142] ([Intel XE#2142]) -> [PASS][143] +1 other test pass
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  * igt@xe_exec_system_allocator@once-mmap-race-nomemset:
    - shard-bmg:          [SKIP][144] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][145] +6 other tests pass
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html

  * igt@xe_module_load@reload:
    - shard-bmg:          [FAIL][146] -> [PASS][147]
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_module_load@reload.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_module_load@reload.html

  * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0:
    - shard-lnl:          [FAIL][148] ([Intel XE#6251]) -> [PASS][149] +1 other test pass
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#2233])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          [SKIP][152] ([Intel XE#6703]) -> [SKIP][153] ([Intel XE#2327]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-bmg:          [SKIP][154] ([Intel XE#2327]) -> [SKIP][155] ([Intel XE#6703]) +2 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-bmg:          [SKIP][156] ([Intel XE#6703]) -> [SKIP][157] ([Intel XE#1124]) +9 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          [SKIP][158] ([Intel XE#2328]) -> [SKIP][159] ([Intel XE#6703])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][160] ([Intel XE#1124]) -> [SKIP][161] ([Intel XE#6703]) +10 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][162] ([Intel XE#6703]) -> [SKIP][163] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          [SKIP][164] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][165] ([Intel XE#6703]) +2 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-2160x1440p:
    - shard-bmg:          [SKIP][166] ([Intel XE#6703]) -> [SKIP][167] ([Intel XE#367]) +2 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-bmg:          [SKIP][168] ([Intel XE#367]) -> [SKIP][169] ([Intel XE#6703])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#2887]) +11 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][172] ([Intel XE#6703]) -> [SKIP][173] ([Intel XE#2652] / [Intel XE#787])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
    - shard-bmg:          [SKIP][174] ([Intel XE#6703]) -> [SKIP][175] ([Intel XE#3432])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          [SKIP][176] ([Intel XE#2887]) -> [SKIP][177] ([Intel XE#6703]) +11 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][178] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][179] ([Intel XE#6703]) +1 other test skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          [SKIP][180] ([Intel XE#2724]) -> [SKIP][181] ([Intel XE#6703]) +1 other test skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          [SKIP][182] ([Intel XE#6703]) -> [SKIP][183] ([Intel XE#2724])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_cdclk@plane-scaling.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-bmg:          [SKIP][184] ([Intel XE#6703]) -> [SKIP][185] ([Intel XE#2325]) +4 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_chamelium_color@ctm-0-25.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@degamma:
    - shard-bmg:          [SKIP][186] ([Intel XE#2325]) -> [SKIP][187] ([Intel XE#6703])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@kms_chamelium_color@degamma.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-bmg:          [SKIP][188] ([Intel XE#2252]) -> [SKIP][189] ([Intel XE#6703]) +7 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-resolution-list.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-bmg:          [SKIP][190] ([Intel XE#6703]) -> [SKIP][191] ([Intel XE#2252]) +6 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_content_protection@dp-mst-suspend-resume:
    - shard-bmg:          [SKIP][192] ([Intel XE#6743]) -> [SKIP][193] ([Intel XE#6703])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_content_protection@dp-mst-suspend-resume.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_content_protection@dp-mst-suspend-resume.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][194] ([Intel XE#1178]) -> [SKIP][195] ([Intel XE#6703])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_content_protection@legacy.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][196] ([Intel XE#6707]) -> [SKIP][197] ([Intel XE#6703])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@kms_content_protection@uevent.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-bmg:          [SKIP][198] ([Intel XE#6703]) -> [SKIP][199] ([Intel XE#2321])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          [SKIP][200] ([Intel XE#6703]) -> [SKIP][201] ([Intel XE#2320]) +4 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-bmg:          [SKIP][202] ([Intel XE#2320]) -> [SKIP][203] ([Intel XE#6703]) +11 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-bmg:          [SKIP][204] ([Intel XE#2321]) -> [SKIP][205] ([Intel XE#6703])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x512.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][206] ([Intel XE#2286]) -> [SKIP][207] ([Intel XE#6703]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][208] ([Intel XE#6703]) -> [SKIP][209] ([Intel XE#1508])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-bmg:          [SKIP][210] ([Intel XE#6703]) -> [SKIP][211] ([Intel XE#4354])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-mst.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          [SKIP][212] ([Intel XE#6703]) -> [SKIP][213] ([Intel XE#4331])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-bmg:          [SKIP][214] ([Intel XE#6703]) -> [SKIP][215] ([Intel XE#2244])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_dsc@dsc-with-bpc-formats.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          [SKIP][216] ([Intel XE#2372]) -> [SKIP][217] ([Intel XE#6703])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_feature_discovery@chamelium.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-4x:
    - shard-bmg:          [SKIP][218] ([Intel XE#1138]) -> [SKIP][219] ([Intel XE#6703])
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@kms_feature_discovery@display-4x.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          [SKIP][220] ([Intel XE#6703]) -> [SKIP][221] ([Intel XE#2374])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_feature_discovery@psr2.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-bmg:          [SKIP][222] ([Intel XE#6703]) -> [SKIP][223] ([Intel XE#2316]) +1 other test skip
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [SKIP][224] ([Intel XE#2316]) -> [SKIP][225] ([Intel XE#6703]) +1 other test skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
    - shard-bmg:          [SKIP][226] ([Intel XE#6703]) -> [SKIP][227] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
    - shard-bmg:          [SKIP][228] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][229] ([Intel XE#6703]) +3 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][230] ([Intel XE#6703]) -> [SKIP][231] ([Intel XE#2311]) +22 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][232] ([Intel XE#2311]) -> [SKIP][233] ([Intel XE#6703]) +22 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][234] ([Intel XE#4141]) -> [SKIP][235] ([Intel XE#6703]) +14 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][236] ([Intel XE#2312]) -> [SKIP][237] ([Intel XE#4141]) +5 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][238] ([Intel XE#4141]) -> [SKIP][239] ([Intel XE#2312]) +1 other test skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][240] ([Intel XE#6703]) -> [SKIP][241] ([Intel XE#4141]) +12 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][242] ([Intel XE#2312]) -> [SKIP][243] ([Intel XE#6703]) +4 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][244] ([Intel XE#2312]) -> [SKIP][245] ([Intel XE#2311]) +6 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][246] ([Intel XE#2311]) -> [SKIP][247] ([Intel XE#2312]) +2 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
    - shard-bmg:          [SKIP][248] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][249] ([Intel XE#2311])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
    - shard-bmg:          [SKIP][250] ([Intel XE#2312]) -> [SKIP][251] ([Intel XE#2313]) +8 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][252] ([Intel XE#6703]) -> [SKIP][253] ([Intel XE#2312]) +8 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
    - shard-bmg:          [SKIP][254] ([Intel XE#6703]) -> [SKIP][255] ([Intel XE#2313]) +23 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          [SKIP][256] ([Intel XE#2350]) -> [SKIP][257] ([Intel XE#6703])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][258] ([Intel XE#2313]) -> [SKIP][259] ([Intel XE#6703]) +25 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][260] ([Intel XE#2313]) -> [SKIP][261] ([Intel XE#2312]) +1 other test skip
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-bmg:          [SKIP][262] ([Intel XE#6703]) -> [ABORT][263] ([Intel XE#6740]) +1 other test abort
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_hdr@bpc-switch-dpms.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][264] ([Intel XE#3544]) -> [SKIP][265] ([Intel XE#3374] / [Intel XE#3544])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [ABORT][266] ([Intel XE#6740]) -> [SKIP][267] ([Intel XE#1503])
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-bmg:          [ABORT][268] ([Intel XE#6740]) -> [SKIP][269] ([Intel XE#6703])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_hdr@invalid-metadata-sizes.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          [SKIP][270] -> [SKIP][271] ([Intel XE#6703]) +2 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          [SKIP][272] ([Intel XE#6703]) -> [SKIP][273] ([Intel XE#4329])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          [SKIP][274] ([Intel XE#6703]) -> [SKIP][275] ([Intel XE#2393])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_plane_lowres@tiling-yf.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75:
    - shard-bmg:          [SKIP][276] ([Intel XE#6703]) -> [SKIP][277] ([Intel XE#6886])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
    - shard-bmg:          [SKIP][278] ([Intel XE#6886]) -> [SKIP][279] ([Intel XE#6703])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          [SKIP][280] ([Intel XE#1439] / [Intel XE#836]) -> [SKIP][281] ([Intel XE#6693])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-bmg:          [SKIP][282] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][283] ([Intel XE#6693])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@package-g7:
    - shard-bmg:          [SKIP][284] ([Intel XE#6693]) -> [SKIP][285] ([Intel XE#6814])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_pm_rpm@package-g7.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_pm_rpm@package-g7.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][286] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][287] ([Intel XE#1406] / [Intel XE#6703]) +3 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          [SKIP][288] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][289] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-pr-primary-page-flip:
    - shard-bmg:          [SKIP][290] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][291] ([Intel XE#1406] / [Intel XE#6703]) +10 other tests skip
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@kms_psr@fbc-pr-primary-page-flip.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_psr@fbc-pr-primary-page-flip.html

  * igt@kms_psr@fbc-psr-suspend:
    - shard-bmg:          [SKIP][292] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][293] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_psr@fbc-psr-suspend.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_psr@fbc-psr-suspend.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          [SKIP][294] ([Intel XE#6703]) -> [SKIP][295] ([Intel XE#2330])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-bmg:          [SKIP][296] ([Intel XE#6703]) -> [SKIP][297] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-bmg:          [SKIP][298] ([Intel XE#2330]) -> [SKIP][299] ([Intel XE#6703])
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          [SKIP][300] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][301] ([Intel XE#6703]) +5 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          [SKIP][302] ([Intel XE#6703]) -> [SKIP][303] ([Intel XE#1435])
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-bmg:          [SKIP][304] ([Intel XE#1435]) -> [SKIP][305] ([Intel XE#6703])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_sharpness_filter@filter-basic:
    - shard-bmg:          [SKIP][306] ([Intel XE#6503]) -> [SKIP][307] ([Intel XE#6703]) +1 other test skip
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_sharpness_filter@filter-basic.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_sharpness_filter@filter-basic.html

  * igt@kms_sharpness_filter@invalid-plane-with-filter:
    - shard-bmg:          [SKIP][308] ([Intel XE#6703]) -> [SKIP][309] ([Intel XE#6503]) +1 other test skip
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_sharpness_filter@invalid-plane-with-filter.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_sharpness_filter@invalid-plane-with-filter.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][310] ([Intel XE#2426]) -> [SKIP][311] ([Intel XE#6703])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          [SKIP][312] ([Intel XE#6703]) -> [SKIP][313] ([Intel XE#1499]) +1 other test skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_vrr@flip-basic.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-bmg:          [SKIP][314] ([Intel XE#1499]) -> [SKIP][315] ([Intel XE#6703]) +1 other test skip
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@kms_vrr@flip-basic-fastset.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_vrr@flip-basic-fastset.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-bmg:          [SKIP][316] ([Intel XE#6703]) -> [SKIP][317] ([Intel XE#6599])
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_compute@ccs-mode-basic.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
    - shard-bmg:          [SKIP][318] ([Intel XE#4837]) -> [SKIP][319] ([Intel XE#6557] / [Intel XE#6703])
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html

  * igt@xe_eudebug@vm-bind-clear:
    - shard-bmg:          [SKIP][320] ([Intel XE#4837]) -> [SKIP][321] ([Intel XE#6703]) +8 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@xe_eudebug@vm-bind-clear.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_eudebug@vm-bind-clear.html

  * igt@xe_eudebug@vma-ufence:
    - shard-bmg:          [SKIP][322] ([Intel XE#6703]) -> [SKIP][323] ([Intel XE#4837]) +9 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_eudebug@vma-ufence.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@xe_eudebug@vma-ufence.html

  * igt@xe_eudebug_online@pagefault-read-stress:
    - shard-bmg:          [SKIP][324] ([Intel XE#6665] / [Intel XE#6681]) -> [SKIP][325] ([Intel XE#6703])
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@xe_eudebug_online@pagefault-read-stress.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_eudebug_online@pagefault-read-stress.html

  * igt@xe_eudebug_online@pagefault-write:
    - shard-bmg:          [SKIP][326] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][327] ([Intel XE#6703]) +3 other tests skip
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@xe_eudebug_online@pagefault-write.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_eudebug_online@pagefault-write.html

  * igt@xe_eudebug_online@single-step-one:
    - shard-bmg:          [SKIP][328] ([Intel XE#6703]) -> [SKIP][329] ([Intel XE#4837] / [Intel XE#6665]) +6 other tests skip
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_eudebug_online@single-step-one.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@xe_eudebug_online@single-step-one.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          [SKIP][330] ([Intel XE#6703]) -> [SKIP][331] ([Intel XE#2322]) +6 other tests skip
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - shard-bmg:          [SKIP][332] ([Intel XE#2322]) -> [SKIP][333] ([Intel XE#6703]) +8 other tests skip
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_multi_queue@many-queues-basic-smem:
    - shard-bmg:          [SKIP][334] ([Intel XE#6703]) -> [SKIP][335] ([Intel XE#6874]) +26 other tests skip
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_multi_queue@many-queues-basic-smem.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-basic-smem.html

  * igt@xe_exec_multi_queue@one-queue-priority-smem:
    - shard-bmg:          [SKIP][336] ([Intel XE#6874]) -> [SKIP][337] ([Intel XE#6703]) +30 other tests skip
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@xe_exec_multi_queue@one-queue-priority-smem.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-priority-smem.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
    - shard-bmg:          [SKIP][338] ([Intel XE#6703]) -> [SKIP][339] ([Intel XE#5007])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-remap-dontunmap:
    - shard-bmg:          [SKIP][340] ([Intel XE#6703]) -> [FAIL][341] ([Intel XE#5625])
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-remap-dontunmap.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-remap-dontunmap.html

  * igt@xe_exec_system_allocator@process-many-large-mmap-free-huge-nomemset:
    - shard-bmg:          [SKIP][342] ([Intel XE#6703]) -> [SKIP][343] ([Intel XE#4943]) +19 other tests skip
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-mmap-free-huge-nomemset.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@xe_exec_system_allocator@process-many-large-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset:
    - shard-bmg:          [SKIP][344] ([Intel XE#4943]) -> [SKIP][345] ([Intel XE#6703]) +19 other tests skip
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html

  * igt@xe_mmap@small-bar:
    - shard-bmg:          [SKIP][346] ([Intel XE#6703]) -> [SKIP][347] ([Intel XE#586])
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_mmap@small-bar.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_mmap@small-bar.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-bmg:          [SKIP][348] ([Intel XE#6703]) -> [SKIP][349] ([Intel XE#2248])
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_pm@d3cold-i2c:
    - shard-bmg:          [SKIP][350] ([Intel XE#6703]) -> [SKIP][351] ([Intel XE#5694])
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_pm@d3cold-i2c.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-bmg:          [SKIP][352] ([Intel XE#6703]) -> [SKIP][353] ([Intel XE#2284]) +1 other test skip
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pxp@display-black-pxp-fb:
    - shard-bmg:          [SKIP][354] ([Intel XE#6703]) -> [SKIP][355] ([Intel XE#4733])
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_pxp@display-black-pxp-fb.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_pxp@display-black-pxp-fb.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
    - shard-bmg:          [SKIP][356] ([Intel XE#4733]) -> [SKIP][357] ([Intel XE#6703]) +2 other tests skip
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-bmg:          [SKIP][358] ([Intel XE#6703]) -> [SKIP][359] ([Intel XE#944]) +2 other tests skip
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_query@multigpu-query-invalid-extension.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-bmg:          [SKIP][360] ([Intel XE#944]) -> [SKIP][361] ([Intel XE#6703]) +2 other tests skip
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@xe_query@multigpu-query-uc-fw-version-huc.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          [SKIP][362] ([Intel XE#6557] / [Intel XE#6703]) -> [FAIL][363] ([Intel XE#6569])
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_sriov_flr@flr-each-isolation.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          [FAIL][364] ([Intel XE#6569]) -> [FAIL][365] ([Intel XE#5937])
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@xe_sriov_flr@flr-vf1-clear.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html

  
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [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#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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
  [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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4912
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
  [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
  [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
  [Intel XE#6743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6743
  [Intel XE#6766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6766
  [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
  [Intel XE#6815]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6815
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8670 -> IGTPW_14227

  IGTPW_14227: 13b6d583b5c4295ae214e9134601e8205292c134 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8670: 8670
  xe-4259-605176fe40c828b491a1532367df157529895b87: 605176fe40c828b491a1532367df157529895b87

== Logs ==

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

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

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

* Re: ✗ Xe.CI.Full: failure for Discard wait_for_lmem_ready from fault injection test
  2025-12-18 18:38 ` ✗ Xe.CI.Full: " Patchwork
@ 2026-01-05  8:50   ` Vivekanandan, Balasubramani
  0 siblings, 0 replies; 9+ messages in thread
From: Vivekanandan, Balasubramani @ 2026-01-05  8:50 UTC (permalink / raw)
  To: igt-dev

On 18.12.2025 18:38, Patchwork wrote:
> == Series Details ==
> 
> Series: Discard wait_for_lmem_ready from fault injection test
> URL   : https://patchwork.freedesktop.org/series/159151/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from XEIGT_8670_FULL -> XEIGTPW_14227_FULL
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with XEIGTPW_14227_FULL absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in XEIGTPW_14227_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 (2 -> 2)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in XEIGTPW_14227_FULL:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-1:
>     - shard-bmg:          NOTRUN -> [DMESG-WARN][1]
>    [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-1.html
> 
>   * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7:
>     - shard-bmg:          NOTRUN -> [DMESG-FAIL][2] +25 other tests dmesg-fail
>    [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7.html
> 
>   * igt@xe_exec_system_allocator@many-new-bo-map:
>     - shard-bmg:          [PASS][3] -> [TIMEOUT][4]
>    [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@xe_exec_system_allocator@many-new-bo-map.html
>    [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@xe_exec_system_allocator@many-new-bo-map.html
> 
>   
> #### Warnings ####
> 
>   * igt@kms_joiner@basic-ultra-joiner:
>     - shard-bmg:          [SKIP][5] ([Intel XE#6703]) -> [SKIP][6] +1 other test skip
>    [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html
>    [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html

No test other than xe_fault_injection is affected by this patch. So all
the above failures can be ignored.

Regards,
Bala

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in XEIGTPW_14227_FULL that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@device_reset@unbind-reset-rebind:
>     - shard-bmg:          [PASS][7] -> [SKIP][8] ([Intel XE#6815])
>    [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@device_reset@unbind-reset-rebind.html
>    [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@device_reset@unbind-reset-rebind.html
> 
>   * igt@fbdev@unaligned-read:
>     - shard-bmg:          [PASS][9] -> [SKIP][10] ([Intel XE#2134]) +1 other test skip
>    [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@fbdev@unaligned-read.html
>    [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@fbdev@unaligned-read.html
> 
>   * igt@intel_hwmon@hwmon-read:
>     - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#1125])
>    [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@intel_hwmon@hwmon-read.html
> 
>   * igt@intel_hwmon@hwmon-write:
>     - shard-bmg:          [PASS][12] -> [SKIP][13] ([Intel XE#5177] / [Intel XE#6703])
>    [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@intel_hwmon@hwmon-write.html
>    [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
> 
>   * igt@kms_async_flips@async-flip-suspend-resume@pipe-b-dp-2:
>     - shard-bmg:          [PASS][14] -> [INCOMPLETE][15] ([Intel XE#4912]) +1 other test incomplete
>    [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-dp-2.html
>    [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-dp-2.html
> 
>   * igt@kms_big_fb@linear-8bpp-rotate-270:
>     - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#1407]) +1 other test skip
>    [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>     - shard-bmg:          [PASS][17] -> [DMESG-WARN][18] ([Intel XE#6766])
>    [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>    [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@y-tiled-32bpp-rotate-0:
>     - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#1124]) +3 other tests skip
>    [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
> 
>   * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
>     - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#1124]) +4 other tests skip
>    [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
> 
>   * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
>     - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#2191])
>    [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
> 
>   * igt@kms_bw@linear-tiling-3-displays-1920x1080p:
>     - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#367])
>    [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
> 
>   * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
>     - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#2887]) +4 other tests skip
>    [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
> 
>   * igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
>     - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2887]) +9 other tests skip
>    [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/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][25] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
>    [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
>     - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#3432])
>    [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
> 
>   * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
>     - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#3432]) +1 other test skip
>    [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
> 
>   * igt@kms_cdclk@plane-scaling:
>     - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#4416]) +3 other tests skip
>    [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_cdclk@plane-scaling.html
> 
>   * igt@kms_chamelium_color@ctm-0-50:
>     - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#306])
>    [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_chamelium_color@ctm-0-50.html
> 
>   * igt@kms_chamelium_color@ctm-0-75:
>     - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2325])
>    [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_chamelium_color@ctm-0-75.html
> 
>   * igt@kms_chamelium_frames@hdmi-crc-planes-random:
>     - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2252])
>    [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_chamelium_frames@hdmi-crc-planes-random.html
> 
>   * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
>     - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#373]) +3 other tests skip
>    [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
> 
>   * igt@kms_content_protection@content-type-change:
>     - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2341]) +1 other test skip
>    [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_content_protection@content-type-change.html
> 
>   * igt@kms_content_protection@srm:
>     - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#3278]) +1 other test skip
>    [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_content_protection@srm.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-256x85:
>     - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2320]) +3 other tests skip
>    [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-256x85.html
> 
>   * igt@kms_cursor_crc@cursor-random-256x85:
>     - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#1424]) +1 other test skip
>    [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_cursor_crc@cursor-random-256x85.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-512x512:
>     - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#2321])
>    [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
>     - shard-bmg:          [PASS][38] -> [SKIP][39] ([Intel XE#2291]) +1 other test skip
>    [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
>    [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
>     - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#309]) +1 other test skip
>    [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
> 
>   * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
>     - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#1508])
>    [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
> 
>   * igt@kms_display_modes@extended-mode-basic:
>     - shard-bmg:          [PASS][42] -> [SKIP][43] ([Intel XE#4302])
>    [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
>    [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html
> 
>   * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
>     - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#1340])
>    [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_dp_linktrain_fallback@dsc-fallback:
>     - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#4331])
>    [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
> 
>   * igt@kms_dsc@dsc-with-bpc:
>     - shard-lnl:          NOTRUN -> [SKIP][46] ([Intel XE#2244])
>    [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@kms_dsc@dsc-with-bpc.html
>     - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2244])
>    [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_dsc@dsc-with-bpc.html
> 
>   * igt@kms_flip@2x-flip-vs-rmfb:
>     - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#1421]) +3 other tests skip
>    [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb.html
> 
>   * igt@kms_flip@2x-nonexisting-fb:
>     - shard-bmg:          [PASS][49] -> [SKIP][50] ([Intel XE#2316]) +2 other tests skip
>    [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_flip@2x-nonexisting-fb.html
>    [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
>     - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2293]) +6 other tests skip
>    [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode:
>     - shard-lnl:          NOTRUN -> [FAIL][52] ([Intel XE#3106] / [Intel XE#4683]) +1 other test fail
>    [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
>     - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2293] / [Intel XE#2380])
>    [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>     - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
>    [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
>     - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#1401]) +1 other test skip
>    [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
>     - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#656]) +15 other tests skip
>    [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#4141]) +8 other tests skip
>    [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#6557] / [Intel XE#6703]) +2 other tests skip
>    [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
>     - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#651]) +4 other tests skip
>    [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2312]) +2 other tests skip
>    [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
>     - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2311]) +8 other tests skip
>    [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
>     - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2313]) +11 other tests skip
>    [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
> 
>   * igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2:
>     - shard-bmg:          NOTRUN -> [ABORT][63] ([Intel XE#6740]) +1 other test abort
>    [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html
> 
>   * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>     - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#356])
>    [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> 
>   * igt@kms_plane_lowres@tiling-y:
>     - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#599])
>    [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_plane_lowres@tiling-y.html
>     - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2393])
>    [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_plane_lowres@tiling-y.html
> 
>   * igt@kms_plane_multiple@2x-tiling-y:
>     - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#5021])
>    [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html
> 
>   * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
>     - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#6886]) +1 other test skip
>    [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
>     - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#6886]) +3 other tests skip
>    [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
> 
>   * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
>     - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#1439] / [Intel XE#836])
>    [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
>     - shard-bmg:          [PASS][71] -> [SKIP][72] ([Intel XE#6693]) +1 other test skip
>    [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
>    [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
>     - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
>    [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
>     - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
>    [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
>     - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
>    [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
> 
>   * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
>     - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip
>    [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
> 
>   * igt@kms_psr@fbc-pr-no-drrs:
>     - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1406]) +2 other tests skip
>    [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@kms_psr@fbc-pr-no-drrs.html
> 
>   * igt@kms_psr@pr-primary-render:
>     - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
>    [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_psr@pr-primary-render.html
> 
>   * igt@kms_psr@psr-suspend:
>     - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#1406] / [Intel XE#6703]) +7 other tests skip
>    [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_psr@psr-suspend.html
> 
>   * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>     - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2414])
>    [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
>     - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#3414] / [Intel XE#3904])
>    [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
> 
>   * igt@kms_setmode@basic-clone-single-crtc:
>     - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#1435])
>    [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@kms_setmode@basic-clone-single-crtc.html
> 
>   * igt@kms_sharpness_filter@invalid-filter-with-scaler:
>     - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#6503]) +1 other test skip
>    [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaler.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#2426])
>    [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@sriov_basic@enable-vfs-autoprobe-off:
>     - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#1091] / [Intel XE#2849])
>    [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
> 
>   * igt@xe_compute@ccs-mode-basic:
>     - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#1447])
>    [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@xe_compute@ccs-mode-basic.html
> 
>   * igt@xe_configfs@survivability-mode:
>     - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#6010])
>    [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-7/igt@xe_configfs@survivability-mode.html
> 
>   * igt@xe_eudebug@basic-connect:
>     - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#4837]) +2 other tests skip
>    [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@xe_eudebug@basic-connect.html
> 
>   * igt@xe_eudebug@basic-vm-access-faultable:
>     - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#4837]) +3 other tests skip
>    [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@xe_eudebug@basic-vm-access-faultable.html
> 
>   * igt@xe_eudebug_online@interrupt-all:
>     - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
>    [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@xe_eudebug_online@interrupt-all.html
> 
>   * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
>     - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
>    [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html
> 
>   * igt@xe_evict@evict-beng-cm-threads-small:
>     - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#688]) +4 other tests skip
>    [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@xe_evict@evict-beng-cm-threads-small.html
> 
>   * igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind:
>     - shard-bmg:          [PASS][93] -> [SKIP][94] ([Intel XE#6557] / [Intel XE#6703]) +4 other tests skip
>    [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind.html
>    [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind.html
> 
>   * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
>     - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#2322]) +2 other tests skip
>    [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
> 
>   * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
>     - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#1392]) +3 other tests skip
>    [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
> 
>   * igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race:
>     - shard-bmg:          [PASS][97] -> [SKIP][98] ([Intel XE#6703]) +534 other tests skip
>    [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html
>    [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html
> 
>   * igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority:
>     - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#6874]) +13 other tests skip
>    [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority.html
> 
>   * igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem:
>     - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#6874]) +14 other tests skip
>    [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem.html
> 
>   * igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset:
>     - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#5007])
>    [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset.html
> 
>   * igt@xe_exec_system_allocator@many-execqueues-new-busy:
>     - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#6703]) +155 other tests skip
>    [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_system_allocator@many-execqueues-new-busy.html
> 
>   * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-huge-nomemset:
>     - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#4943]) +6 other tests skip
>    [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-5/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-huge-nomemset.html
> 
>   * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge:
>     - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#4943]) +13 other tests skip
>    [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html
> 
>   * igt@xe_live_ktest@xe_eudebug:
>     - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#2833])
>    [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html
>     - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#2833])
>    [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html
> 
>   * igt@xe_oa@oa-tlb-invalidate:
>     - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#2248])
>    [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-5/igt@xe_oa@oa-tlb-invalidate.html
> 
>   * igt@xe_pm@s4-d3cold-basic-exec:
>     - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#2284] / [Intel XE#366])
>    [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@xe_pm@s4-d3cold-basic-exec.html
> 
>   * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0:
>     - shard-lnl:          [PASS][109] -> [FAIL][110] ([Intel XE#6251])
>    [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
>    [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
> 
>   * igt@xe_pmu@fn-engine-activity-sched-if-idle:
>     - shard-lnl:          NOTRUN -> [SKIP][111] ([Intel XE#4650])
>    [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
> 
>   * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
>     - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#4733])
>    [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
> 
>   * igt@xe_query@multigpu-query-invalid-query:
>     - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#944]) +2 other tests skip
>    [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_query@multigpu-query-invalid-query.html
> 
>   * igt@xe_query@multigpu-query-uc-fw-version-guc:
>     - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#944])
>    [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-3/igt@xe_query@multigpu-query-uc-fw-version-guc.html
> 
>   * igt@xe_sriov_auto_provisioning@exclusive-ranges:
>     - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#4130])
>    [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-1/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
> 
>   * igt@xe_sriov_flr@flr-twice:
>     - shard-bmg:          [PASS][116] -> [FAIL][117] ([Intel XE#6569])
>    [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html
>    [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@xe_sriov_flr@flr-twice.html
> 
>   * igt@xe_sriov_flr@flr-vfs-parallel:
>     - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#4273])
>    [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-5/igt@xe_sriov_flr@flr-vfs-parallel.html
> 
>   * igt@xe_sriov_vram@vf-access-beyond:
>     - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#6376])
>    [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-5/igt@xe_sriov_vram@vf-access-beyond.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@fbdev@unaligned-write:
>     - shard-bmg:          [SKIP][120] ([Intel XE#2134]) -> [PASS][121]
>    [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@fbdev@unaligned-write.html
>    [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@fbdev@unaligned-write.html
> 
>   * igt@intel_hwmon@hwmon-read:
>     - shard-bmg:          [SKIP][122] ([Intel XE#5177] / [Intel XE#6703]) -> [PASS][123]
>    [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@intel_hwmon@hwmon-read.html
>    [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@intel_hwmon@hwmon-read.html
> 
>   * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
>     - shard-lnl:          [FAIL][124] ([Intel XE#6054]) -> [PASS][125] +3 other tests pass
>    [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
>    [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>     - shard-bmg:          [INCOMPLETE][126] ([Intel XE#3862]) -> [PASS][127] +1 other test pass
>    [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
>    [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
> 
>   * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
>     - shard-bmg:          [SKIP][128] ([Intel XE#2316]) -> [PASS][129] +1 other test pass
>    [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
>    [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
>     - shard-lnl:          [FAIL][130] ([Intel XE#301]) -> [PASS][131]
>    [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
>    [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
>     - shard-lnl:          [FAIL][132] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][133] +1 other test pass
>    [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
>    [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
> 
>   * igt@kms_flip@wf_vblank-ts-check:
>     - shard-bmg:          [SKIP][134] ([Intel XE#6703]) -> [PASS][135] +530 other tests pass
>    [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html
>    [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check.html
> 
>   * igt@kms_pm_dc@dc6-dpms:
>     - shard-lnl:          [FAIL][136] ([Intel XE#718]) -> [PASS][137]
>    [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
>    [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
> 
>   * igt@kms_pm_rpm@i2c:
>     - shard-bmg:          [SKIP][138] ([Intel XE#6693]) -> [PASS][139] +1 other test pass
>    [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_pm_rpm@i2c.html
>    [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_pm_rpm@i2c.html
> 
>   * igt@kms_setmode@basic@pipe-b-edp-1:
>     - shard-lnl:          [FAIL][140] ([Intel XE#6361]) -> [PASS][141] +2 other tests pass
>    [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
>    [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
> 
>   * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
>     - shard-lnl:          [FAIL][142] ([Intel XE#2142]) -> [PASS][143] +1 other test pass
>    [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
>    [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
> 
>   * igt@xe_exec_system_allocator@once-mmap-race-nomemset:
>     - shard-bmg:          [SKIP][144] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][145] +6 other tests pass
>    [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
>    [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
> 
>   * igt@xe_module_load@reload:
>     - shard-bmg:          [FAIL][146] -> [PASS][147]
>    [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_module_load@reload.html
>    [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_module_load@reload.html
> 
>   * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0:
>     - shard-lnl:          [FAIL][148] ([Intel XE#6251]) -> [PASS][149] +1 other test pass
>    [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html
>    [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html
> 
>   
> #### Warnings ####
> 
>   * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>     - shard-bmg:          [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#2233])
>    [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>    [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
> 
>   * igt@kms_big_fb@linear-32bpp-rotate-270:
>     - shard-bmg:          [SKIP][152] ([Intel XE#6703]) -> [SKIP][153] ([Intel XE#2327]) +2 other tests skip
>    [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
>    [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html
> 
>   * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
>     - shard-bmg:          [SKIP][154] ([Intel XE#2327]) -> [SKIP][155] ([Intel XE#6703]) +2 other tests skip
>    [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
>    [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
>     - shard-bmg:          [SKIP][156] ([Intel XE#6703]) -> [SKIP][157] ([Intel XE#1124]) +9 other tests skip
>    [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
>    [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb:
>     - shard-bmg:          [SKIP][158] ([Intel XE#2328]) -> [SKIP][159] ([Intel XE#6703])
>    [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb.html
>    [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>     - shard-bmg:          [SKIP][160] ([Intel XE#1124]) -> [SKIP][161] ([Intel XE#6703]) +10 other tests skip
>    [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>    [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 
>   * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
>     - shard-bmg:          [SKIP][162] ([Intel XE#6703]) -> [SKIP][163] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
>    [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
>    [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
> 
>   * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
>     - shard-bmg:          [SKIP][164] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][165] ([Intel XE#6703]) +2 other tests skip
>    [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
>    [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
> 
>   * igt@kms_bw@linear-tiling-1-displays-2160x1440p:
>     - shard-bmg:          [SKIP][166] ([Intel XE#6703]) -> [SKIP][167] ([Intel XE#367]) +2 other tests skip
>    [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
>    [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
> 
>   * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
>     - shard-bmg:          [SKIP][168] ([Intel XE#367]) -> [SKIP][169] ([Intel XE#6703])
>    [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
>    [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
> 
>   * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
>     - shard-bmg:          [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#2887]) +11 other tests skip
>    [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
>    [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
>     - shard-bmg:          [SKIP][172] ([Intel XE#6703]) -> [SKIP][173] ([Intel XE#2652] / [Intel XE#787])
>    [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
>    [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
> 
>   * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
>     - shard-bmg:          [SKIP][174] ([Intel XE#6703]) -> [SKIP][175] ([Intel XE#3432])
>    [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
>    [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
>     - shard-bmg:          [SKIP][176] ([Intel XE#2887]) -> [SKIP][177] ([Intel XE#6703]) +11 other tests skip
>    [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
>    [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
>     - shard-bmg:          [SKIP][178] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][179] ([Intel XE#6703]) +1 other test skip
>    [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
>    [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
> 
>   * igt@kms_cdclk@mode-transition-all-outputs:
>     - shard-bmg:          [SKIP][180] ([Intel XE#2724]) -> [SKIP][181] ([Intel XE#6703]) +1 other test skip
>    [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html
>    [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
> 
>   * igt@kms_cdclk@plane-scaling:
>     - shard-bmg:          [SKIP][182] ([Intel XE#6703]) -> [SKIP][183] ([Intel XE#2724])
>    [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_cdclk@plane-scaling.html
>    [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_cdclk@plane-scaling.html
> 
>   * igt@kms_chamelium_color@ctm-0-25:
>     - shard-bmg:          [SKIP][184] ([Intel XE#6703]) -> [SKIP][185] ([Intel XE#2325]) +4 other tests skip
>    [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_chamelium_color@ctm-0-25.html
>    [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_chamelium_color@ctm-0-25.html
> 
>   * igt@kms_chamelium_color@degamma:
>     - shard-bmg:          [SKIP][186] ([Intel XE#2325]) -> [SKIP][187] ([Intel XE#6703])
>    [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@kms_chamelium_color@degamma.html
>    [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_chamelium_color@degamma.html
> 
>   * igt@kms_chamelium_edid@dp-edid-resolution-list:
>     - shard-bmg:          [SKIP][188] ([Intel XE#2252]) -> [SKIP][189] ([Intel XE#6703]) +7 other tests skip
>    [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-resolution-list.html
>    [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html
> 
>   * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
>     - shard-bmg:          [SKIP][190] ([Intel XE#6703]) -> [SKIP][191] ([Intel XE#2252]) +6 other tests skip
>    [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
>    [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
> 
>   * igt@kms_content_protection@dp-mst-suspend-resume:
>     - shard-bmg:          [SKIP][192] ([Intel XE#6743]) -> [SKIP][193] ([Intel XE#6703])
>    [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_content_protection@dp-mst-suspend-resume.html
>    [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_content_protection@dp-mst-suspend-resume.html
> 
>   * igt@kms_content_protection@legacy:
>     - shard-bmg:          [FAIL][194] ([Intel XE#1178]) -> [SKIP][195] ([Intel XE#6703])
>    [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_content_protection@legacy.html
>    [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_content_protection@legacy.html
> 
>   * igt@kms_content_protection@uevent:
>     - shard-bmg:          [FAIL][196] ([Intel XE#6707]) -> [SKIP][197] ([Intel XE#6703])
>    [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@kms_content_protection@uevent.html
>    [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_content_protection@uevent.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-512x170:
>     - shard-bmg:          [SKIP][198] ([Intel XE#6703]) -> [SKIP][199] ([Intel XE#2321])
>    [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
>    [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-max-size:
>     - shard-bmg:          [SKIP][200] ([Intel XE#6703]) -> [SKIP][201] ([Intel XE#2320]) +4 other tests skip
>    [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
>    [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
> 
>   * igt@kms_cursor_crc@cursor-random-32x32:
>     - shard-bmg:          [SKIP][202] ([Intel XE#2320]) -> [SKIP][203] ([Intel XE#6703]) +11 other tests skip
>    [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html
>    [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html
> 
>   * igt@kms_cursor_crc@cursor-random-512x512:
>     - shard-bmg:          [SKIP][204] ([Intel XE#2321]) -> [SKIP][205] ([Intel XE#6703])
>    [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x512.html
>    [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
>     - shard-bmg:          [SKIP][206] ([Intel XE#2286]) -> [SKIP][207] ([Intel XE#6703]) +1 other test skip
>    [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
>    [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>     - shard-bmg:          [SKIP][208] ([Intel XE#6703]) -> [SKIP][209] ([Intel XE#1508])
>    [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
>    [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
> 
>   * igt@kms_dp_link_training@non-uhbr-mst:
>     - shard-bmg:          [SKIP][210] ([Intel XE#6703]) -> [SKIP][211] ([Intel XE#4354])
>    [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-mst.html
>    [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_dp_link_training@non-uhbr-mst.html
> 
>   * igt@kms_dp_linktrain_fallback@dsc-fallback:
>     - shard-bmg:          [SKIP][212] ([Intel XE#6703]) -> [SKIP][213] ([Intel XE#4331])
>    [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
>    [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
> 
>   * igt@kms_dsc@dsc-with-bpc-formats:
>     - shard-bmg:          [SKIP][214] ([Intel XE#6703]) -> [SKIP][215] ([Intel XE#2244])
>    [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_dsc@dsc-with-bpc-formats.html
>    [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@kms_dsc@dsc-with-bpc-formats.html
> 
>   * igt@kms_feature_discovery@chamelium:
>     - shard-bmg:          [SKIP][216] ([Intel XE#2372]) -> [SKIP][217] ([Intel XE#6703])
>    [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_feature_discovery@chamelium.html
>    [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_feature_discovery@chamelium.html
> 
>   * igt@kms_feature_discovery@display-4x:
>     - shard-bmg:          [SKIP][218] ([Intel XE#1138]) -> [SKIP][219] ([Intel XE#6703])
>    [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@kms_feature_discovery@display-4x.html
>    [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
> 
>   * igt@kms_feature_discovery@psr2:
>     - shard-bmg:          [SKIP][220] ([Intel XE#6703]) -> [SKIP][221] ([Intel XE#2374])
>    [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_feature_discovery@psr2.html
>    [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_feature_discovery@psr2.html
> 
>   * igt@kms_flip@2x-blocking-wf_vblank:
>     - shard-bmg:          [SKIP][222] ([Intel XE#6703]) -> [SKIP][223] ([Intel XE#2316]) +1 other test skip
>    [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html
>    [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank:
>     - shard-bmg:          [SKIP][224] ([Intel XE#2316]) -> [SKIP][225] ([Intel XE#6703]) +1 other test skip
>    [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
>    [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
>     - shard-bmg:          [SKIP][226] ([Intel XE#6703]) -> [SKIP][227] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
>    [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
>    [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
>     - shard-bmg:          [SKIP][228] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][229] ([Intel XE#6703]) +3 other tests skip
>    [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
>    [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
>     - shard-bmg:          [SKIP][230] ([Intel XE#6703]) -> [SKIP][231] ([Intel XE#2311]) +22 other tests skip
>    [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
>    [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
>     - shard-bmg:          [SKIP][232] ([Intel XE#2311]) -> [SKIP][233] ([Intel XE#6703]) +22 other tests skip
>    [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
>    [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
>     - shard-bmg:          [SKIP][234] ([Intel XE#4141]) -> [SKIP][235] ([Intel XE#6703]) +14 other tests skip
>    [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
>    [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
>     - shard-bmg:          [SKIP][236] ([Intel XE#2312]) -> [SKIP][237] ([Intel XE#4141]) +5 other tests skip
>    [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
>    [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
>     - shard-bmg:          [SKIP][238] ([Intel XE#4141]) -> [SKIP][239] ([Intel XE#2312]) +1 other test skip
>    [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
>    [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
>     - shard-bmg:          [SKIP][240] ([Intel XE#6703]) -> [SKIP][241] ([Intel XE#4141]) +12 other tests skip
>    [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
>    [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
>     - shard-bmg:          [SKIP][242] ([Intel XE#2312]) -> [SKIP][243] ([Intel XE#6703]) +4 other tests skip
>    [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
>    [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
>     - shard-bmg:          [SKIP][244] ([Intel XE#2312]) -> [SKIP][245] ([Intel XE#2311]) +6 other tests skip
>    [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
>    [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
>     - shard-bmg:          [SKIP][246] ([Intel XE#2311]) -> [SKIP][247] ([Intel XE#2312]) +2 other tests skip
>    [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
>    [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
>     - shard-bmg:          [SKIP][248] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][249] ([Intel XE#2311])
>    [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
>    [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
>     - shard-bmg:          [SKIP][250] ([Intel XE#2312]) -> [SKIP][251] ([Intel XE#2313]) +8 other tests skip
>    [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
>    [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
>     - shard-bmg:          [SKIP][252] ([Intel XE#6703]) -> [SKIP][253] ([Intel XE#2312]) +8 other tests skip
>    [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
>    [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
>     - shard-bmg:          [SKIP][254] ([Intel XE#6703]) -> [SKIP][255] ([Intel XE#2313]) +23 other tests skip
>    [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
>    [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@plane-fbc-rte:
>     - shard-bmg:          [SKIP][256] ([Intel XE#2350]) -> [SKIP][257] ([Intel XE#6703])
>    [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
>    [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
>     - shard-bmg:          [SKIP][258] ([Intel XE#2313]) -> [SKIP][259] ([Intel XE#6703]) +25 other tests skip
>    [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
>    [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
>     - shard-bmg:          [SKIP][260] ([Intel XE#2313]) -> [SKIP][261] ([Intel XE#2312]) +1 other test skip
>    [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
>    [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_hdr@bpc-switch-dpms:
>     - shard-bmg:          [SKIP][262] ([Intel XE#6703]) -> [ABORT][263] ([Intel XE#6740]) +1 other test abort
>    [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_hdr@bpc-switch-dpms.html
>    [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@kms_hdr@bpc-switch-dpms.html
> 
>   * igt@kms_hdr@brightness-with-hdr:
>     - shard-bmg:          [SKIP][264] ([Intel XE#3544]) -> [SKIP][265] ([Intel XE#3374] / [Intel XE#3544])
>    [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
>    [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
> 
>   * igt@kms_hdr@invalid-hdr:
>     - shard-bmg:          [ABORT][266] ([Intel XE#6740]) -> [SKIP][267] ([Intel XE#1503])
>    [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
>    [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
> 
>   * igt@kms_hdr@invalid-metadata-sizes:
>     - shard-bmg:          [ABORT][268] ([Intel XE#6740]) -> [SKIP][269] ([Intel XE#6703])
>    [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_hdr@invalid-metadata-sizes.html
>    [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html
> 
>   * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
>     - shard-bmg:          [SKIP][270] -> [SKIP][271] ([Intel XE#6703]) +2 other tests skip
>    [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
>    [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
> 
>   * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
>     - shard-bmg:          [SKIP][272] ([Intel XE#6703]) -> [SKIP][273] ([Intel XE#4329])
>    [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
>    [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
> 
>   * igt@kms_plane_lowres@tiling-yf:
>     - shard-bmg:          [SKIP][274] ([Intel XE#6703]) -> [SKIP][275] ([Intel XE#2393])
>    [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_plane_lowres@tiling-yf.html
>    [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-75:
>     - shard-bmg:          [SKIP][276] ([Intel XE#6703]) -> [SKIP][277] ([Intel XE#6886])
>    [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
>    [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
> 
>   * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
>     - shard-bmg:          [SKIP][278] ([Intel XE#6886]) -> [SKIP][279] ([Intel XE#6703])
>    [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
>    [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
> 
>   * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
>     - shard-bmg:          [SKIP][280] ([Intel XE#1439] / [Intel XE#836]) -> [SKIP][281] ([Intel XE#6693])
>    [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
>    [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-lpsp:
>     - shard-bmg:          [SKIP][282] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][283] ([Intel XE#6693])
>    [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp.html
>    [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp.html
> 
>   * igt@kms_pm_rpm@package-g7:
>     - shard-bmg:          [SKIP][284] ([Intel XE#6693]) -> [SKIP][285] ([Intel XE#6814])
>    [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_pm_rpm@package-g7.html
>    [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_pm_rpm@package-g7.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
>     - shard-bmg:          [SKIP][286] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][287] ([Intel XE#1406] / [Intel XE#6703]) +3 other tests skip
>    [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
>    [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
>     - shard-bmg:          [SKIP][288] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][289] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip
>    [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
>    [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
> 
>   * igt@kms_psr@fbc-pr-primary-page-flip:
>     - shard-bmg:          [SKIP][290] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][291] ([Intel XE#1406] / [Intel XE#6703]) +10 other tests skip
>    [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@kms_psr@fbc-pr-primary-page-flip.html
>    [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_psr@fbc-pr-primary-page-flip.html
> 
>   * igt@kms_psr@fbc-psr-suspend:
>     - shard-bmg:          [SKIP][292] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][293] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
>    [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_psr@fbc-psr-suspend.html
>    [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@kms_psr@fbc-psr-suspend.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
>     - shard-bmg:          [SKIP][294] ([Intel XE#6703]) -> [SKIP][295] ([Intel XE#2330])
>    [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
>    [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
>     - shard-bmg:          [SKIP][296] ([Intel XE#6703]) -> [SKIP][297] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
>    [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
>    [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
> 
>   * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>     - shard-bmg:          [SKIP][298] ([Intel XE#2330]) -> [SKIP][299] ([Intel XE#6703])
>    [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
>    [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
> 
>   * igt@kms_rotation_crc@sprite-rotation-90:
>     - shard-bmg:          [SKIP][300] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][301] ([Intel XE#6703]) +5 other tests skip
>    [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html
>    [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html
> 
>   * igt@kms_setmode@basic-clone-single-crtc:
>     - shard-bmg:          [SKIP][302] ([Intel XE#6703]) -> [SKIP][303] ([Intel XE#1435])
>    [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html
>    [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html
> 
>   * igt@kms_setmode@invalid-clone-exclusive-crtc:
>     - shard-bmg:          [SKIP][304] ([Intel XE#1435]) -> [SKIP][305] ([Intel XE#6703])
>    [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
>    [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html
> 
>   * igt@kms_sharpness_filter@filter-basic:
>     - shard-bmg:          [SKIP][306] ([Intel XE#6503]) -> [SKIP][307] ([Intel XE#6703]) +1 other test skip
>    [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@kms_sharpness_filter@filter-basic.html
>    [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_sharpness_filter@filter-basic.html
> 
>   * igt@kms_sharpness_filter@invalid-plane-with-filter:
>     - shard-bmg:          [SKIP][308] ([Intel XE#6703]) -> [SKIP][309] ([Intel XE#6503]) +1 other test skip
>    [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_sharpness_filter@invalid-plane-with-filter.html
>    [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@kms_sharpness_filter@invalid-plane-with-filter.html
> 
>   * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>     - shard-bmg:          [SKIP][310] ([Intel XE#2426]) -> [SKIP][311] ([Intel XE#6703])
>    [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
>    [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
> 
>   * igt@kms_vrr@flip-basic:
>     - shard-bmg:          [SKIP][312] ([Intel XE#6703]) -> [SKIP][313] ([Intel XE#1499]) +1 other test skip
>    [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@kms_vrr@flip-basic.html
>    [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@kms_vrr@flip-basic.html
> 
>   * igt@kms_vrr@flip-basic-fastset:
>     - shard-bmg:          [SKIP][314] ([Intel XE#1499]) -> [SKIP][315] ([Intel XE#6703]) +1 other test skip
>    [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-2/igt@kms_vrr@flip-basic-fastset.html
>    [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@kms_vrr@flip-basic-fastset.html
> 
>   * igt@xe_compute@ccs-mode-basic:
>     - shard-bmg:          [SKIP][316] ([Intel XE#6703]) -> [SKIP][317] ([Intel XE#6599])
>    [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_compute@ccs-mode-basic.html
>    [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
> 
>   * igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
>     - shard-bmg:          [SKIP][318] ([Intel XE#4837]) -> [SKIP][319] ([Intel XE#6557] / [Intel XE#6703])
>    [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
>    [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
> 
>   * igt@xe_eudebug@vm-bind-clear:
>     - shard-bmg:          [SKIP][320] ([Intel XE#4837]) -> [SKIP][321] ([Intel XE#6703]) +8 other tests skip
>    [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@xe_eudebug@vm-bind-clear.html
>    [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_eudebug@vm-bind-clear.html
> 
>   * igt@xe_eudebug@vma-ufence:
>     - shard-bmg:          [SKIP][322] ([Intel XE#6703]) -> [SKIP][323] ([Intel XE#4837]) +9 other tests skip
>    [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_eudebug@vma-ufence.html
>    [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-9/igt@xe_eudebug@vma-ufence.html
> 
>   * igt@xe_eudebug_online@pagefault-read-stress:
>     - shard-bmg:          [SKIP][324] ([Intel XE#6665] / [Intel XE#6681]) -> [SKIP][325] ([Intel XE#6703])
>    [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@xe_eudebug_online@pagefault-read-stress.html
>    [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_eudebug_online@pagefault-read-stress.html
> 
>   * igt@xe_eudebug_online@pagefault-write:
>     - shard-bmg:          [SKIP][326] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][327] ([Intel XE#6703]) +3 other tests skip
>    [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@xe_eudebug_online@pagefault-write.html
>    [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_eudebug_online@pagefault-write.html
> 
>   * igt@xe_eudebug_online@single-step-one:
>     - shard-bmg:          [SKIP][328] ([Intel XE#6703]) -> [SKIP][329] ([Intel XE#4837] / [Intel XE#6665]) +6 other tests skip
>    [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_eudebug_online@single-step-one.html
>    [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-8/igt@xe_eudebug_online@single-step-one.html
> 
>   * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
>     - shard-bmg:          [SKIP][330] ([Intel XE#6703]) -> [SKIP][331] ([Intel XE#2322]) +6 other tests skip
>    [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
>    [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
> 
>   * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
>     - shard-bmg:          [SKIP][332] ([Intel XE#2322]) -> [SKIP][333] ([Intel XE#6703]) +8 other tests skip
>    [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
>    [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
> 
>   * igt@xe_exec_multi_queue@many-queues-basic-smem:
>     - shard-bmg:          [SKIP][334] ([Intel XE#6703]) -> [SKIP][335] ([Intel XE#6874]) +26 other tests skip
>    [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_multi_queue@many-queues-basic-smem.html
>    [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-basic-smem.html
> 
>   * igt@xe_exec_multi_queue@one-queue-priority-smem:
>     - shard-bmg:          [SKIP][336] ([Intel XE#6874]) -> [SKIP][337] ([Intel XE#6703]) +30 other tests skip
>    [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@xe_exec_multi_queue@one-queue-priority-smem.html
>    [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-priority-smem.html
> 
>   * igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
>     - shard-bmg:          [SKIP][338] ([Intel XE#6703]) -> [SKIP][339] ([Intel XE#5007])
>    [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
>    [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
> 
>   * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-remap-dontunmap:
>     - shard-bmg:          [SKIP][340] ([Intel XE#6703]) -> [FAIL][341] ([Intel XE#5625])
>    [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-remap-dontunmap.html
>    [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-remap-dontunmap.html
> 
>   * igt@xe_exec_system_allocator@process-many-large-mmap-free-huge-nomemset:
>     - shard-bmg:          [SKIP][342] ([Intel XE#6703]) -> [SKIP][343] ([Intel XE#4943]) +19 other tests skip
>    [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-mmap-free-huge-nomemset.html
>    [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@xe_exec_system_allocator@process-many-large-mmap-free-huge-nomemset.html
> 
>   * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset:
>     - shard-bmg:          [SKIP][344] ([Intel XE#4943]) -> [SKIP][345] ([Intel XE#6703]) +19 other tests skip
>    [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html
>    [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html
> 
>   * igt@xe_mmap@small-bar:
>     - shard-bmg:          [SKIP][346] ([Intel XE#6703]) -> [SKIP][347] ([Intel XE#586])
>    [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_mmap@small-bar.html
>    [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_mmap@small-bar.html
> 
>   * igt@xe_oa@oa-tlb-invalidate:
>     - shard-bmg:          [SKIP][348] ([Intel XE#6703]) -> [SKIP][349] ([Intel XE#2248])
>    [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html
>    [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html
> 
>   * igt@xe_pm@d3cold-i2c:
>     - shard-bmg:          [SKIP][350] ([Intel XE#6703]) -> [SKIP][351] ([Intel XE#5694])
>    [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_pm@d3cold-i2c.html
>    [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_pm@d3cold-i2c.html
> 
>   * igt@xe_pm@d3cold-multiple-execs:
>     - shard-bmg:          [SKIP][352] ([Intel XE#6703]) -> [SKIP][353] ([Intel XE#2284]) +1 other test skip
>    [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html
>    [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@xe_pm@d3cold-multiple-execs.html
> 
>   * igt@xe_pxp@display-black-pxp-fb:
>     - shard-bmg:          [SKIP][354] ([Intel XE#6703]) -> [SKIP][355] ([Intel XE#4733])
>    [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_pxp@display-black-pxp-fb.html
>    [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_pxp@display-black-pxp-fb.html
> 
>   * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
>     - shard-bmg:          [SKIP][356] ([Intel XE#4733]) -> [SKIP][357] ([Intel XE#6703]) +2 other tests skip
>    [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-8/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
>    [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
> 
>   * igt@xe_query@multigpu-query-invalid-extension:
>     - shard-bmg:          [SKIP][358] ([Intel XE#6703]) -> [SKIP][359] ([Intel XE#944]) +2 other tests skip
>    [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_query@multigpu-query-invalid-extension.html
>    [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-10/igt@xe_query@multigpu-query-invalid-extension.html
> 
>   * igt@xe_query@multigpu-query-uc-fw-version-huc:
>     - shard-bmg:          [SKIP][360] ([Intel XE#944]) -> [SKIP][361] ([Intel XE#6703]) +2 other tests skip
>    [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-3/igt@xe_query@multigpu-query-uc-fw-version-huc.html
>    [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-huc.html
> 
>   * igt@xe_sriov_flr@flr-each-isolation:
>     - shard-bmg:          [SKIP][362] ([Intel XE#6557] / [Intel XE#6703]) -> [FAIL][363] ([Intel XE#6569])
>    [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html
>    [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-1/igt@xe_sriov_flr@flr-each-isolation.html
> 
>   * igt@xe_sriov_flr@flr-vf1-clear:
>     - shard-bmg:          [FAIL][364] ([Intel XE#6569]) -> [FAIL][365] ([Intel XE#5937])
>    [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8670/shard-bmg-9/igt@xe_sriov_flr@flr-vf1-clear.html
>    [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
> 
>   
>   [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
>   [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
>   [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
>   [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
>   [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
>   [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
>   [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
>   [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
>   [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
>   [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
>   [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
>   [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
>   [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
>   [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
>   [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
>   [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
>   [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
>   [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
>   [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
>   [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
>   [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
>   [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
>   [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
>   [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#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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
>   [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
>   [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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
>   [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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
>   [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
>   [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
>   [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
>   [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
>   [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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
>   [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
>   [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
>   [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
>   [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
>   [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
>   [Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
>   [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
>   [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
>   [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
>   [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
>   [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
>   [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
>   [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
>   [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
>   [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
>   [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
>   [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
>   [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
>   [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
>   [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
>   [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
>   [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
>   [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
>   [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
>   [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
>   [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
>   [Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
>   [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
>   [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
>   [Intel XE#4912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4912
>   [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
>   [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
>   [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
>   [Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
>   [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
>   [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
>   [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
>   [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
>   [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
>   [Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
>   [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
>   [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
>   [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
>   [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
>   [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
>   [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
>   [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
>   [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
>   [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
>   [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
>   [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
>   [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
>   [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
>   [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
>   [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
>   [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
>   [Intel XE#6743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6743
>   [Intel XE#6766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6766
>   [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
>   [Intel XE#6815]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6815
>   [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
>   [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
>   [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
>   [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
>   [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
>   [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
>   [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
> 
> 
> Build changes
> -------------
> 
>   * IGT: IGT_8670 -> IGTPW_14227
> 
>   IGTPW_14227: 13b6d583b5c4295ae214e9134601e8205292c134 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   IGT_8670: 8670
>   xe-4259-605176fe40c828b491a1532367df157529895b87: 605176fe40c828b491a1532367df157529895b87
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14227/index.html

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

* Re: ✗ i915.CI.Full: failure for Discard wait_for_lmem_ready from fault injection test
  2025-12-18  0:01 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-01-05  8:51   ` Vivekanandan, Balasubramani
  0 siblings, 0 replies; 9+ messages in thread
From: Vivekanandan, Balasubramani @ 2026-01-05  8:51 UTC (permalink / raw)
  To: igt-dev

On 18.12.2025 00:01, Patchwork wrote:
> == Series Details ==
> 
> Series: Discard wait_for_lmem_ready from fault injection test
> URL   : https://patchwork.freedesktop.org/series/159151/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_8670_full -> IGTPW_14227_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_14227_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_14227_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_14227/index.html
> 
> Participating hosts (9 -> 9)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_14227_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_exec_suspend@basic-s3-devices@smem:
>     - shard-rkl:          [PASS][1] -> [ABORT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@gem_exec_suspend@basic-s3-devices@smem.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices@smem.html
> 
>   * igt@kms_joiner@basic-big-joiner:
>     - shard-tglu:         NOTRUN -> [SKIP][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_joiner@basic-big-joiner.html
> 

No test other than xe_fault_injection is affected by this patch. So all
the above failures can be ignored.

Regards,
Bala

>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_14227_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@device_reset@unbind-cold-reset-rebind:
>     - shard-tglu-1:       NOTRUN -> [SKIP][4] ([i915#11078])
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
> 
>   * igt@gem_ccs@block-multicopy-inplace:
>     - shard-dg1:          NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@gem_ccs@block-multicopy-inplace.html
> 
>   * igt@gem_ccs@ctrl-surf-copy-new-ctx:
>     - shard-tglu:         NOTRUN -> [SKIP][6] ([i915#9323])
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
> 
>   * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
>     - shard-dg2:          [PASS][7] -> [INCOMPLETE][8] ([i915#13356])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
> 
>   * igt@gem_create@create-ext-cpu-access-sanity-check:
>     - shard-rkl:          NOTRUN -> [SKIP][9] ([i915#6335])
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
> 
>   * igt@gem_ctx_persistence@heartbeat-many:
>     - shard-dg1:          NOTRUN -> [SKIP][10] ([i915#8555]) +1 other test skip
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-many.html
> 
>   * igt@gem_ctx_sseu@invalid-sseu:
>     - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#280])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html
>     - shard-rkl:          NOTRUN -> [SKIP][12] ([i915#280]) +1 other test skip
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html
>     - shard-dg1:          NOTRUN -> [SKIP][13] ([i915#280])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@gem_ctx_sseu@invalid-sseu.html
>     - shard-tglu:         NOTRUN -> [SKIP][14] ([i915#280])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-10/igt@gem_ctx_sseu@invalid-sseu.html
>     - shard-mtlp:         NOTRUN -> [SKIP][15] ([i915#280])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-7/igt@gem_ctx_sseu@invalid-sseu.html
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][16] ([i915#13390])
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk9/igt@gem_eio@in-flight-suspend.html
> 
>   * igt@gem_exec_balancer@bonded-pair:
>     - shard-dg2:          NOTRUN -> [SKIP][17] ([i915#4771])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-3/igt@gem_exec_balancer@bonded-pair.html
>     - shard-dg1:          NOTRUN -> [SKIP][18] ([i915#4771])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@gem_exec_balancer@bonded-pair.html
> 
>   * igt@gem_exec_balancer@noheartbeat:
>     - shard-dg2:          NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html
>     - shard-mtlp:         NOTRUN -> [SKIP][20] ([i915#8555])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html
> 
>   * igt@gem_exec_balancer@parallel:
>     - shard-tglu:         NOTRUN -> [SKIP][21] ([i915#4525])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-9/igt@gem_exec_balancer@parallel.html
> 
>   * igt@gem_exec_balancer@parallel-balancer:
>     - shard-tglu-1:       NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
> 
>   * igt@gem_exec_balancer@parallel-ordering:
>     - shard-rkl:          NOTRUN -> [SKIP][23] ([i915#4525])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@gem_exec_balancer@parallel-ordering.html
> 
>   * igt@gem_exec_capture@capture-recoverable:
>     - shard-tglu:         NOTRUN -> [SKIP][24] ([i915#6344])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@gem_exec_capture@capture-recoverable.html
> 
>   * igt@gem_exec_fence@submit3:
>     - shard-dg2:          NOTRUN -> [SKIP][25] ([i915#4812])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gem_exec_fence@submit3.html
>     - shard-dg1:          NOTRUN -> [SKIP][26] ([i915#4812]) +1 other test skip
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@gem_exec_fence@submit3.html
> 
>   * igt@gem_exec_flush@basic-uc-rw-default:
>     - shard-dg1:          NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +3 other tests skip
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-13/igt@gem_exec_flush@basic-uc-rw-default.html
> 
>   * igt@gem_exec_flush@basic-wb-set-default:
>     - shard-dg2:          NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@gem_exec_flush@basic-wb-set-default.html
> 
>   * igt@gem_exec_params@rsvd2-dirt:
>     - shard-dg2:          NOTRUN -> [SKIP][29] ([i915#5107])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html
> 
>   * igt@gem_exec_reloc@basic-cpu-read:
>     - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#3281]) +6 other tests skip
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-read.html
> 
>   * igt@gem_exec_reloc@basic-gtt-cpu-active:
>     - shard-rkl:          NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html
>     - shard-mtlp:         NOTRUN -> [SKIP][32] ([i915#3281])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html
> 
>   * igt@gem_exec_reloc@basic-write-gtt-active:
>     - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#3281]) +10 other tests skip
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-14/igt@gem_exec_reloc@basic-write-gtt-active.html
> 
>   * igt@gem_exec_schedule@preempt-queue-chain:
>     - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html
> 
>   * igt@gem_exec_suspend@basic-s3-devices:
>     - shard-rkl:          [PASS][35] -> [ABORT][36] ([i915#15131])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@gem_exec_suspend@basic-s3-devices.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices.html
> 
>   * igt@gem_fence_thrash@bo-write-verify-x:
>     - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#4860])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-x.html
> 
>   * igt@gem_lmem_swapping@heavy-random:
>     - shard-tglu:         NOTRUN -> [SKIP][38] ([i915#4613]) +1 other test skip
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-5/igt@gem_lmem_swapping@heavy-random.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-multi:
>     - shard-rkl:          NOTRUN -> [SKIP][39] ([i915#4613])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-multi.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-random-ccs:
>     - shard-tglu-1:       NOTRUN -> [SKIP][40] ([i915#4613]) +1 other test skip
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
> 
>   * igt@gem_lmem_swapping@random:
>     - shard-glk:          NOTRUN -> [SKIP][41] ([i915#4613]) +4 other tests skip
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk2/igt@gem_lmem_swapping@random.html
> 
>   * igt@gem_lmem_swapping@verify-random-ccs:
>     - shard-dg1:          NOTRUN -> [SKIP][42] ([i915#12193]) +1 other test skip
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs.html
> 
>   * igt@gem_lmem_swapping@verify-random-ccs@lmem0:
>     - shard-dg1:          NOTRUN -> [SKIP][43] ([i915#4565]) +1 other test skip
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
> 
>   * igt@gem_media_vme:
>     - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#284])
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@gem_media_vme.html
>     - shard-dg1:          NOTRUN -> [SKIP][45] ([i915#284])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-13/igt@gem_media_vme.html
> 
>   * igt@gem_mmap_gtt@big-copy:
>     - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#4077]) +4 other tests skip
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gem_mmap_gtt@big-copy.html
> 
>   * igt@gem_mmap_gtt@coherency:
>     - shard-rkl:          NOTRUN -> [SKIP][47] ([i915#14544])
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_mmap_gtt@coherency.html
> 
>   * igt@gem_partial_pwrite_pread@reads-uncached:
>     - shard-dg2:          NOTRUN -> [SKIP][48] ([i915#3282]) +5 other tests skip
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gem_partial_pwrite_pread@reads-uncached.html
>     - shard-rkl:          NOTRUN -> [SKIP][49] ([i915#14544] / [i915#3282])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html
> 
>   * igt@gem_pread@display:
>     - shard-rkl:          NOTRUN -> [SKIP][50] ([i915#3282])
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@gem_pread@display.html
> 
>   * igt@gem_pread@exhaustion:
>     - shard-glk:          NOTRUN -> [WARN][51] ([i915#2658])
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk2/igt@gem_pread@exhaustion.html
> 
>   * igt@gem_pwrite@basic-exhaustion:
>     - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#3282]) +3 other tests skip
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@gem_pwrite@basic-exhaustion.html
> 
>   * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
>     - shard-dg2:          NOTRUN -> [SKIP][53] ([i915#4270])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
>     - shard-dg1:          NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-18/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
> 
>   * igt@gem_readwrite@write-bad-handle:
>     - shard-mtlp:         NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-4/igt@gem_readwrite@write-bad-handle.html
> 
>   * igt@gem_render_copy@y-tiled-ccs-to-linear:
>     - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) +4 other tests skip
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-linear.html
> 
>   * igt@gem_userptr_blits@access-control:
>     - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#3297])
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@gem_userptr_blits@access-control.html
> 
>   * igt@gem_userptr_blits@coherency-unsync:
>     - shard-rkl:          NOTRUN -> [SKIP][58] ([i915#3297])
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-tglu:         NOTRUN -> [SKIP][59] ([i915#3297] / [i915#3323])
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
>     - shard-dg1:          NOTRUN -> [SKIP][60] ([i915#3297] / [i915#4880]) +1 other test skip
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
>     - shard-dg2:          NOTRUN -> [SKIP][61] ([i915#3297] / [i915#4880])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
> 
>   * igt@gem_workarounds@suspend-resume-context:
>     - shard-glk10:        NOTRUN -> [INCOMPLETE][62] ([i915#13356])
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@gem_workarounds@suspend-resume-context.html
> 
>   * igt@gen9_exec_parse@allowed-single:
>     - shard-tglu-1:       NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856]) +1 other test skip
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html
> 
>   * igt@gen9_exec_parse@batch-zero-length:
>     - shard-tglu:         NOTRUN -> [SKIP][64] ([i915#2527] / [i915#2856]) +1 other test skip
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-10/igt@gen9_exec_parse@batch-zero-length.html
> 
>   * igt@gen9_exec_parse@bb-secure:
>     - shard-rkl:          NOTRUN -> [SKIP][65] ([i915#2527])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@gen9_exec_parse@bb-secure.html
> 
>   * igt@gen9_exec_parse@cmd-crossing-page:
>     - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#2856])
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@gen9_exec_parse@cmd-crossing-page.html
> 
>   * igt@gen9_exec_parse@unaligned-jump:
>     - shard-dg1:          NOTRUN -> [SKIP][67] ([i915#2527]) +1 other test skip
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@gen9_exec_parse@unaligned-jump.html
> 
>   * igt@i915_drm_fdinfo@busy-hang@vcs0:
>     - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#14073]) +5 other tests skip
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@i915_drm_fdinfo@busy-hang@vcs0.html
> 
>   * igt@i915_pm_freq_api@freq-reset:
>     - shard-tglu-1:       NOTRUN -> [SKIP][69] ([i915#8399])
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
> 
>   * igt@i915_pm_rps@waitboost:
>     - shard-mtlp:         [PASS][70] -> [FAIL][71] ([i915#15365])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-mtlp-3/igt@i915_pm_rps@waitboost.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-2/igt@i915_pm_rps@waitboost.html
> 
>   * igt@i915_selftest@live@workarounds:
>     - shard-mtlp:         [PASS][72] -> [DMESG-FAIL][73] ([i915#12061]) +1 other test dmesg-fail
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-mtlp-8/igt@i915_selftest@live@workarounds.html
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
> 
>   * igt@i915_suspend@basic-s3-without-i915:
>     - shard-tglu:         NOTRUN -> [INCOMPLETE][74] ([i915#4817] / [i915#7443])
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-10/igt@i915_suspend@basic-s3-without-i915.html
> 
>   * igt@i915_suspend@fence-restore-untiled:
>     - shard-rkl:          NOTRUN -> [INCOMPLETE][75] ([i915#4817])
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
> 
>   * igt@i915_suspend@forcewake:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][76] ([i915#4817]) +1 other test incomplete
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk5/igt@i915_suspend@forcewake.html
> 
>   * igt@i915_suspend@sysfs-reader:
>     - shard-rkl:          [PASS][77] -> [INCOMPLETE][78] ([i915#4817])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@i915_suspend@sysfs-reader.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@i915_suspend@sysfs-reader.html
> 
>   * igt@intel_hwmon@hwmon-write:
>     - shard-tglu-1:       NOTRUN -> [SKIP][79] ([i915#7707])
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
> 
>   * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
>     - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#4212])
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
>     - shard-dg1:          NOTRUN -> [SKIP][81] ([i915#4212]) +1 other test skip
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
> 
>   * igt@kms_addfb_basic@invalid-set-prop-any:
>     - shard-dg1:          NOTRUN -> [DMESG-WARN][82] ([i915#4423])
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_addfb_basic@invalid-set-prop-any.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>     - shard-tglu-1:       NOTRUN -> [SKIP][83] ([i915#1769] / [i915#3555])
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> 
>   * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
>     - shard-rkl:          NOTRUN -> [SKIP][84] ([i915#5286])
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
> 
>   * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
>     - shard-tglu-1:       NOTRUN -> [SKIP][85] ([i915#5286]) +1 other test skip
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
>     - shard-dg1:          NOTRUN -> [SKIP][86] ([i915#4538] / [i915#5286]) +5 other tests skip
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
> 
>   * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
>     - shard-tglu:         NOTRUN -> [SKIP][87] ([i915#5286]) +3 other tests skip
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@linear-16bpp-rotate-90:
>     - shard-rkl:          NOTRUN -> [SKIP][88] ([i915#3638])
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
> 
>   * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
>     - shard-dg2:          NOTRUN -> [SKIP][89]
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
>     - shard-dg1:          NOTRUN -> [SKIP][90] ([i915#3638]) +1 other test skip
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
>     - shard-dg2:          NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5190]) +3 other tests skip
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-addfb:
>     - shard-dg2:          NOTRUN -> [SKIP][92] ([i915#5190])
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb.html
> 
>   * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
>     - shard-dg1:          NOTRUN -> [SKIP][93] ([i915#4538]) +3 other tests skip
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
> 
>   * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-d-dp-3:
>     - shard-dg2:          NOTRUN -> [SKIP][94] ([i915#6095]) +61 other tests skip
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-d-dp-3.html
> 
>   * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
>     - shard-rkl:          NOTRUN -> [SKIP][95] ([i915#12313])
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
> 
>   * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
>     - shard-dg2:          NOTRUN -> [SKIP][96] ([i915#10307] / [i915#6095]) +118 other tests skip
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
> 
>   * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3:
>     - shard-dg1:          NOTRUN -> [SKIP][97] ([i915#6095]) +156 other tests skip
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-13/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3.html
> 
>   * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
>     - shard-tglu:         NOTRUN -> [SKIP][98] ([i915#6095]) +69 other tests skip
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
> 
>   * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
>     - shard-rkl:          NOTRUN -> [SKIP][99] ([i915#14098] / [i915#6095]) +36 other tests skip
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
> 
>   * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
>     - shard-tglu-1:       NOTRUN -> [SKIP][100] ([i915#12313])
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
>     - shard-dg1:          NOTRUN -> [SKIP][101] ([i915#12313])
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
>     - shard-rkl:          NOTRUN -> [SKIP][102] ([i915#14544] / [i915#6095]) +8 other tests skip
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
>     - shard-rkl:          NOTRUN -> [SKIP][103] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
>     - shard-tglu-1:       NOTRUN -> [SKIP][104] ([i915#6095]) +24 other tests skip
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
> 
>   * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
>     - shard-rkl:          NOTRUN -> [SKIP][105] ([i915#6095]) +64 other tests skip
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html
> 
>   * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][106] ([i915#6095]) +4 other tests skip
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-5/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
>     - shard-tglu:         NOTRUN -> [SKIP][107] ([i915#12313])
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][108] ([i915#13783]) +3 other tests skip
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
> 
>   * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
>     - shard-tglu:         NOTRUN -> [SKIP][109] ([i915#11151] / [i915#7828]) +8 other tests skip
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
>     - shard-mtlp:         NOTRUN -> [SKIP][110] ([i915#11151] / [i915#7828])
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
>     - shard-rkl:          NOTRUN -> [SKIP][111] ([i915#11151] / [i915#14544] / [i915#7828])
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
> 
>   * igt@kms_chamelium_frames@hdmi-crc-fast:
>     - shard-tglu-1:       NOTRUN -> [SKIP][112] ([i915#11151] / [i915#7828]) +3 other tests skip
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
> 
>   * igt@kms_chamelium_frames@hdmi-crc-single:
>     - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#11151] / [i915#7828]) +7 other tests skip
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_chamelium_frames@hdmi-crc-single.html
> 
>   * igt@kms_chamelium_frames@vga-frame-dump:
>     - shard-rkl:          NOTRUN -> [SKIP][114] ([i915#11151] / [i915#7828]) +4 other tests skip
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_chamelium_frames@vga-frame-dump.html
> 
>   * igt@kms_chamelium_hpd@hdmi-hpd:
>     - shard-dg2:          NOTRUN -> [SKIP][115] ([i915#11151] / [i915#7828]) +3 other tests skip
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_chamelium_hpd@hdmi-hpd.html
> 
>   * igt@kms_content_protection@atomic:
>     - shard-tglu:         NOTRUN -> [SKIP][116] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-10/igt@kms_content_protection@atomic.html
> 
>   * igt@kms_content_protection@dp-mst-lic-type-1:
>     - shard-dg2:          NOTRUN -> [SKIP][117] ([i915#3299]) +1 other test skip
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
> 
>   * igt@kms_content_protection@dp-mst-type-1:
>     - shard-dg1:          NOTRUN -> [SKIP][118] ([i915#3299]) +1 other test skip
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_content_protection@dp-mst-type-1.html
> 
>   * igt@kms_content_protection@legacy:
>     - shard-tglu-1:       NOTRUN -> [SKIP][119] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_content_protection@legacy.html
> 
>   * igt@kms_content_protection@lic-type-1:
>     - shard-dg2:          NOTRUN -> [SKIP][120] ([i915#6944] / [i915#9424])
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_content_protection@lic-type-1.html
>     - shard-dg1:          NOTRUN -> [SKIP][121] ([i915#6944] / [i915#9424])
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_content_protection@lic-type-1.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-512x512:
>     - shard-rkl:          NOTRUN -> [SKIP][122] ([i915#13049])
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-max-size:
>     - shard-dg2:          NOTRUN -> [SKIP][123] ([i915#3555])
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-max-size.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-32x10:
>     - shard-tglu-1:       NOTRUN -> [SKIP][124] ([i915#3555]) +2 other tests skip
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-512x170:
>     - shard-tglu:         NOTRUN -> [SKIP][125] ([i915#13049])
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
> 
>   * igt@kms_cursor_crc@cursor-random-512x512:
>     - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#13049]) +1 other test skip
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
>     - shard-dg1:          NOTRUN -> [SKIP][127] ([i915#13049]) +3 other tests skip
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
>     - shard-tglu:         NOTRUN -> [SKIP][128] ([i915#3555]) +2 other tests skip
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-256x85:
>     - shard-tglu:         NOTRUN -> [FAIL][129] ([i915#13566]) +1 other test fail
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-64x21:
>     - shard-mtlp:         NOTRUN -> [SKIP][130] ([i915#8814])
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
>     - shard-rkl:          NOTRUN -> [SKIP][131] ([i915#4103]) +1 other test skip
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
>     - shard-dg2:          NOTRUN -> [SKIP][132] ([i915#13046] / [i915#5354])
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
>     - shard-rkl:          NOTRUN -> [SKIP][133] +9 other tests skip
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
> 
>   * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
>     - shard-tglu:         NOTRUN -> [SKIP][134] ([i915#9067])
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
>     - shard-dg2:          NOTRUN -> [SKIP][135] ([i915#4103] / [i915#4213])
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
>     - shard-dg1:          NOTRUN -> [SKIP][136] ([i915#4103] / [i915#4213])
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>     - shard-dg1:          NOTRUN -> [SKIP][137] ([i915#9723])
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-18/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
>     - shard-dg2:          NOTRUN -> [SKIP][138] ([i915#9833])
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
> 
>   * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
>     - shard-rkl:          NOTRUN -> [SKIP][139] ([i915#3804])
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
> 
>   * igt@kms_dp_aux_dev:
>     - shard-tglu:         NOTRUN -> [SKIP][140] ([i915#1257])
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@kms_dp_aux_dev.html
> 
>   * igt@kms_dp_link_training@non-uhbr-sst:
>     - shard-dg2:          [PASS][141] -> [SKIP][142] ([i915#13749])
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-sst.html
>     - shard-tglu:         NOTRUN -> [SKIP][143] ([i915#13749])
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-sst.html
> 
>   * igt@kms_dp_link_training@uhbr-sst:
>     - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#13748])
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-2/igt@kms_dp_link_training@uhbr-sst.html
> 
>   * igt@kms_dp_linktrain_fallback@dp-fallback:
>     - shard-dg1:          NOTRUN -> [SKIP][145] ([i915#13707])
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html
> 
>   * igt@kms_dp_linktrain_fallback@dsc-fallback:
>     - shard-tglu-1:       NOTRUN -> [SKIP][146] ([i915#13707])
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
> 
>   * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
>     - shard-rkl:          NOTRUN -> [SKIP][147] ([i915#14544] / [i915#3840])
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
> 
>   * igt@kms_dsc@dsc-with-output-formats:
>     - shard-tglu:         NOTRUN -> [SKIP][148] ([i915#3555] / [i915#3840])
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-5/igt@kms_dsc@dsc-with-output-formats.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][149] ([i915#9878])
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk6/igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_feature_discovery@display-3x:
>     - shard-dg1:          NOTRUN -> [SKIP][150] ([i915#1839])
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_feature_discovery@display-3x.html
> 
>   * igt@kms_feature_discovery@dp-mst:
>     - shard-tglu-1:       NOTRUN -> [SKIP][151] ([i915#9337])
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
> 
>   * igt@kms_flip@2x-absolute-wf_vblank:
>     - shard-rkl:          NOTRUN -> [SKIP][152] ([i915#9934]) +1 other test skip
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_flip@2x-absolute-wf_vblank.html
> 
>   * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
>     - shard-mtlp:         NOTRUN -> [SKIP][153] ([i915#3637] / [i915#9934])
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][154] ([i915#9934]) +1 other test skip
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
>     - shard-tglu-1:       NOTRUN -> [SKIP][155] ([i915#3637] / [i915#9934]) +1 other test skip
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
> 
>   * igt@kms_flip@2x-flip-vs-dpms:
>     - shard-rkl:          NOTRUN -> [SKIP][156] ([i915#14544] / [i915#9934]) +2 other tests skip
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
> 
>   * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
>     - shard-tglu:         NOTRUN -> [SKIP][157] ([i915#3637] / [i915#9934]) +7 other tests skip
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-fences:
>     - shard-dg1:          NOTRUN -> [SKIP][158] ([i915#8381])
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences.html
> 
>   * igt@kms_flip@2x-flip-vs-suspend:
>     - shard-glk10:        NOTRUN -> [INCOMPLETE][159] ([i915#12745] / [i915#4839])
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_flip@2x-flip-vs-suspend.html
> 
>   * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
>     - shard-glk10:        NOTRUN -> [INCOMPLETE][160] ([i915#4839])
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_flip@2x-modeset-vs-vblank-race:
>     - shard-dg1:          NOTRUN -> [SKIP][161] ([i915#9934]) +3 other tests skip
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-14/igt@kms_flip@2x-modeset-vs-vblank-race.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][162] ([i915#12745] / [i915#4839] / [i915#6113])
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk1/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][163] ([i915#12745] / [i915#6113])
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
>     - shard-tglu:         NOTRUN -> [SKIP][164] ([i915#2672] / [i915#3555])
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
>     - shard-rkl:          NOTRUN -> [SKIP][165] ([i915#2672]) +2 other tests skip
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
>     - shard-tglu-1:       NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672]) +3 other tests skip
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
>     - shard-dg2:          NOTRUN -> [SKIP][167] ([i915#2672] / [i915#3555]) +1 other test skip
>    [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
>     - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#2672]) +1 other test skip
>    [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
>     - shard-dg1:          NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672]) +5 other tests skip
>    [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
>     - shard-tglu:         NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672] / [i915#3555])
>    [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
>     - shard-tglu:         NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672]) +1 other test skip
>    [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
>     - shard-tglu-1:       NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672] / [i915#3555])
>    [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
>     - shard-rkl:          NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555]) +2 other tests skip
>    [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
>     - shard-tglu-1:       NOTRUN -> [SKIP][174] ([i915#2672] / [i915#3555]) +2 other tests skip
>    [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
>     - shard-dg1:          NOTRUN -> [SKIP][175] ([i915#2672] / [i915#3555]) +5 other tests skip
>    [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu:
>     - shard-mtlp:         NOTRUN -> [SKIP][176] ([i915#1825]) +2 other tests skip
>    [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
>     - shard-dg1:          NOTRUN -> [SKIP][177] +28 other tests skip
>    [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
>     - shard-tglu-1:       NOTRUN -> [SKIP][178] +26 other tests skip
>    [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
>     - shard-dg1:          NOTRUN -> [SKIP][179] ([i915#8708]) +12 other tests skip
>    [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
>     - shard-dg2:          NOTRUN -> [SKIP][180] ([i915#15102] / [i915#3458]) +4 other tests skip
>    [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
>     - shard-rkl:          NOTRUN -> [SKIP][181] ([i915#1825]) +18 other tests skip
>    [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
>     - shard-snb:          NOTRUN -> [SKIP][182] +10 other tests skip
>    [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
>     - shard-tglu:         NOTRUN -> [SKIP][183] +50 other tests skip
>    [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
>     - shard-rkl:          NOTRUN -> [SKIP][184] ([i915#14544] / [i915#1825]) +1 other test skip
>    [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
>     - shard-tglu-1:       NOTRUN -> [SKIP][185] ([i915#15102]) +8 other tests skip
>    [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
>     - shard-dg1:          NOTRUN -> [SKIP][186] ([i915#15102]) +3 other tests skip
>    [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
>     - shard-tglu:         NOTRUN -> [SKIP][187] ([i915#15102]) +18 other tests skip
>    [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
>     - shard-rkl:          NOTRUN -> [SKIP][188] ([i915#15102])
>    [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
>     - shard-dg2:          NOTRUN -> [SKIP][189] ([i915#15102]) +3 other tests skip
>    [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
>     - shard-dg2:          NOTRUN -> [SKIP][190] ([i915#8708]) +7 other tests skip
>    [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
>     - shard-dg1:          NOTRUN -> [SKIP][191] ([i915#15102] / [i915#3458]) +11 other tests skip
>    [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
>     - shard-glk10:        NOTRUN -> [SKIP][192] +57 other tests skip
>    [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
>     - shard-dg2:          NOTRUN -> [SKIP][193] ([i915#5354]) +17 other tests skip
>    [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
>     - shard-rkl:          NOTRUN -> [SKIP][194] ([i915#15102] / [i915#3023]) +4 other tests skip
>    [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
> 
>   * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
>     - shard-rkl:          NOTRUN -> [SKIP][195] ([i915#14544] / [i915#15102] / [i915#3023])
>    [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
> 
>   * igt@kms_hdr@bpc-switch-dpms:
>     - shard-tglu:         NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228]) +2 other tests skip
>    [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-4/igt@kms_hdr@bpc-switch-dpms.html
> 
>   * igt@kms_hdr@invalid-metadata-sizes:
>     - shard-rkl:          NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) +1 other test skip
>    [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_hdr@invalid-metadata-sizes.html
> 
>   * igt@kms_hdr@static-swap:
>     - shard-tglu-1:       NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228])
>    [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_hdr@static-swap.html
> 
>   * igt@kms_joiner@basic-force-ultra-joiner:
>     - shard-dg1:          NOTRUN -> [SKIP][199] ([i915#15458])
>    [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_joiner@basic-force-ultra-joiner.html
> 
>   * igt@kms_joiner@basic-ultra-joiner:
>     - shard-tglu:         NOTRUN -> [SKIP][200] ([i915#15458])
>    [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@kms_joiner@basic-ultra-joiner.html
> 
>   * igt@kms_joiner@invalid-modeset-big-joiner:
>     - shard-tglu:         NOTRUN -> [SKIP][201] ([i915#15460])
>    [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_joiner@invalid-modeset-big-joiner.html
> 
>   * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
>     - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#14712])
>    [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
> 
>   * igt@kms_plane_alpha_blend@alpha-basic:
>     - shard-glk10:        NOTRUN -> [FAIL][203] ([i915#12178])
>    [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
>     - shard-glk10:        NOTRUN -> [FAIL][204] ([i915#7862]) +1 other test fail
>    [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
> 
>   * igt@kms_plane_multiple@2x-tiling-4:
>     - shard-tglu-1:       NOTRUN -> [SKIP][205] ([i915#13958])
>    [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html
> 
>   * igt@kms_plane_multiple@2x-tiling-yf:
>     - shard-dg1:          NOTRUN -> [SKIP][206] ([i915#13958])
>    [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-yf.html
>     - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#13958])
>    [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-yf.html
> 
>   * igt@kms_plane_multiple@tiling-yf:
>     - shard-dg1:          NOTRUN -> [SKIP][208] ([i915#14259])
>    [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
>     - shard-dg1:          NOTRUN -> [SKIP][209] ([i915#15329]) +4 other tests skip
>    [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
> 
>   * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
>     - shard-tglu:         NOTRUN -> [SKIP][210] ([i915#15329] / [i915#3555])
>    [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
> 
>   * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
>     - shard-tglu:         NOTRUN -> [SKIP][211] ([i915#15329]) +3 other tests skip
>    [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
> 
>   * igt@kms_pm_backlight@fade:
>     - shard-rkl:          NOTRUN -> [SKIP][212] ([i915#5354])
>    [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_pm_backlight@fade.html
> 
>   * igt@kms_pm_lpsp@screens-disabled:
>     - shard-tglu:         NOTRUN -> [SKIP][213] ([i915#8430])
>    [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_pm_lpsp@screens-disabled.html
> 
>   * igt@kms_pm_rpm@cursor:
>     - shard-dg1:          NOTRUN -> [SKIP][214] ([i915#4077]) +6 other tests skip
>    [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_pm_rpm@cursor.html
> 
>   * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
>     - shard-rkl:          [PASS][215] -> [SKIP][216] ([i915#15073]) +3 other tests skip
>    [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
>    [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-lpsp:
>     - shard-dg2:          [PASS][217] -> [SKIP][218] ([i915#15073])
>    [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
>    [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-non-lpsp:
>     - shard-tglu-1:       NOTRUN -> [SKIP][219] ([i915#15073])
>    [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
> 
>   * igt@kms_prime@basic-modeset-hybrid:
>     - shard-rkl:          NOTRUN -> [SKIP][220] ([i915#6524])
>    [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html
> 
>   * igt@kms_prime@d3hot:
>     - shard-dg1:          NOTRUN -> [SKIP][221] ([i915#6524])
>    [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_prime@d3hot.html
> 
>   * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
>     - shard-glk10:        NOTRUN -> [SKIP][222] ([i915#11520]) +1 other test skip
>    [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
> 
>   * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
>     - shard-glk:          NOTRUN -> [SKIP][223] ([i915#11520]) +13 other tests skip
>    [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
>     - shard-rkl:          NOTRUN -> [SKIP][224] ([i915#11520]) +3 other tests skip
>    [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
>     - shard-dg2:          NOTRUN -> [SKIP][225] ([i915#11520]) +2 other tests skip
>    [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
>     - shard-dg1:          NOTRUN -> [SKIP][226] ([i915#11520]) +5 other tests skip
>    [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
>     - shard-tglu:         NOTRUN -> [SKIP][227] ([i915#11520]) +5 other tests skip
>    [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
>     - shard-tglu-1:       NOTRUN -> [SKIP][228] ([i915#11520]) +4 other tests skip
>    [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
> 
>   * igt@kms_psr2_su@page_flip-nv12:
>     - shard-tglu:         NOTRUN -> [SKIP][229] ([i915#9683])
>    [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-7/igt@kms_psr2_su@page_flip-nv12.html
> 
>   * igt@kms_psr2_su@page_flip-p010:
>     - shard-dg1:          NOTRUN -> [SKIP][230] ([i915#9683])
>    [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-16/igt@kms_psr2_su@page_flip-p010.html
> 
>   * igt@kms_psr@fbc-pr-primary-blt:
>     - shard-rkl:          NOTRUN -> [SKIP][231] ([i915#1072] / [i915#14544] / [i915#9732])
>    [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_psr@fbc-pr-primary-blt.html
> 
>   * igt@kms_psr@fbc-pr-suspend:
>     - shard-dg2:          NOTRUN -> [SKIP][232] ([i915#1072] / [i915#9732]) +9 other tests skip
>    [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_psr@fbc-pr-suspend.html
> 
>   * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#9688]) +1 other test skip
>    [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-7/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html
> 
>   * igt@kms_psr@pr-dpms:
>     - shard-tglu:         NOTRUN -> [SKIP][234] ([i915#9732]) +15 other tests skip
>    [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@kms_psr@pr-dpms.html
> 
>   * igt@kms_psr@psr-primary-blt:
>     - shard-rkl:          NOTRUN -> [SKIP][235] ([i915#1072] / [i915#9732]) +6 other tests skip
>    [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_psr@psr-primary-blt.html
> 
>   * igt@kms_psr@psr-sprite-mmap-cpu:
>     - shard-tglu-1:       NOTRUN -> [SKIP][236] ([i915#9732]) +7 other tests skip
>    [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
>     - shard-dg1:          NOTRUN -> [SKIP][237] ([i915#1072] / [i915#9732]) +18 other tests skip
>    [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_psr@psr-sprite-mmap-cpu.html
> 
>   * igt@kms_psr@psr2-sprite-plane-onoff:
>     - shard-glk:          NOTRUN -> [SKIP][238] +529 other tests skip
>    [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk1/igt@kms_psr@psr2-sprite-plane-onoff.html
> 
>   * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>     - shard-rkl:          NOTRUN -> [SKIP][239] ([i915#5289])
>    [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
> 
>   * igt@kms_scaling_modes@scaling-mode-center:
>     - shard-dg1:          NOTRUN -> [SKIP][240] ([i915#3555]) +3 other tests skip
>    [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-18/igt@kms_scaling_modes@scaling-mode-center.html
> 
>   * igt@kms_setmode@basic:
>     - shard-snb:          [PASS][241] -> [FAIL][242] ([i915#15106]) +2 other tests fail
>    [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-snb4/igt@kms_setmode@basic.html
>    [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-snb4/igt@kms_setmode@basic.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-dg1:          NOTRUN -> [SKIP][243] ([i915#8623])
>    [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
>     - shard-glk:          NOTRUN -> [INCOMPLETE][244] ([i915#12276]) +1 other test incomplete
>    [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_vrr@negative-basic:
>     - shard-dg2:          [PASS][245] -> [SKIP][246] ([i915#3555] / [i915#9906])
>    [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-11/igt@kms_vrr@negative-basic.html
>    [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_vrr@negative-basic.html
> 
>   * igt@kms_vrr@seamless-rr-switch-vrr:
>     - shard-rkl:          NOTRUN -> [SKIP][247] ([i915#9906])
>    [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html
>     - shard-tglu-1:       NOTRUN -> [SKIP][248] ([i915#9906])
>    [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
> 
>   * igt@perf@gen8-unprivileged-single-ctx-counters:
>     - shard-dg2:          NOTRUN -> [SKIP][249] ([i915#2436])
>    [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
> 
>   * igt@prime_mmap@test_aperture_limit:
>     - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#14121]) +1 other test skip
>    [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-3/igt@prime_mmap@test_aperture_limit.html
> 
>   * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
>     - shard-dg1:          NOTRUN -> [SKIP][251] ([i915#14121]) +1 other test skip
>    [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-18/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
> 
>   * igt@prime_vgem@basic-fence-flip:
>     - shard-dg1:          NOTRUN -> [SKIP][252] ([i915#3708]) +1 other test skip
>    [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html
>     - shard-dg2:          NOTRUN -> [SKIP][253] ([i915#3708])
>    [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@prime_vgem@basic-fence-flip.html
> 
>   * igt@prime_vgem@basic-read:
>     - shard-rkl:          NOTRUN -> [SKIP][254] ([i915#3291] / [i915#3708])
>    [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@prime_vgem@basic-read.html
> 
>   * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
>     - shard-tglu:         NOTRUN -> [FAIL][255] ([i915#12910]) +19 other tests fail
>    [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> 
>   * igt@tools_test@sysfs_l3_parity:
>     - shard-dg1:          NOTRUN -> [SKIP][256] ([i915#4818])
>    [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-12/igt@tools_test@sysfs_l3_parity.html
>     - shard-dg2:          NOTRUN -> [SKIP][257] ([i915#4818])
>    [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_exec_endless@dispatch:
>     - shard-dg2:          [TIMEOUT][258] ([i915#3778] / [i915#7016]) -> [PASS][259] +1 other test pass
>    [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-6/igt@gem_exec_endless@dispatch.html
>    [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@gem_exec_endless@dispatch.html
> 
>   * igt@gem_exec_suspend@basic-s0@smem:
>     - shard-rkl:          [INCOMPLETE][260] ([i915#13356]) -> [PASS][261] +1 other test pass
>    [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@gem_exec_suspend@basic-s0@smem.html
>    [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@gem_exec_suspend@basic-s0@smem.html
> 
>   * igt@gem_lmem_swapping@massive:
>     - shard-dg2:          [FAIL][262] ([i915#15452]) -> [PASS][263] +1 other test pass
>    [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-4/igt@gem_lmem_swapping@massive.html
>    [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@gem_lmem_swapping@massive.html
> 
>   * igt@gem_softpin@noreloc-s3:
>     - shard-rkl:          [INCOMPLETE][264] ([i915#13809]) -> [PASS][265]
>    [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
>    [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_softpin@noreloc-s3.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-dg1:          [ABORT][266] ([i915#15342]) -> [PASS][267]
>    [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
>    [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
>     - shard-dg2:          [ABORT][268] ([i915#15342]) -> [PASS][269]
>    [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
>    [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_pm_rc6_residency@rc6-fence:
>     - shard-tglu:         [WARN][270] ([i915#13790] / [i915#2681]) -> [PASS][271] +1 other test pass
>    [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence.html
>    [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
> 
>   * igt@i915_selftest@live@gem_contexts:
>     - shard-dg1:          [ABORT][272] -> [PASS][273] +1 other test pass
>    [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-18/igt@i915_selftest@live@gem_contexts.html
>    [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-19/igt@i915_selftest@live@gem_contexts.html
> 
>   * igt@i915_suspend@forcewake:
>     - shard-rkl:          [ABORT][274] ([i915#15140]) -> [PASS][275]
>    [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-1/igt@i915_suspend@forcewake.html
>    [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@i915_suspend@forcewake.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>     - shard-mtlp:         [FAIL][276] ([i915#5138]) -> [PASS][277] +1 other test pass
>    [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
>    [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
> 
>   * igt@kms_color@ctm-signed:
>     - shard-dg1:          [DMESG-WARN][278] ([i915#4423]) -> [PASS][279]
>    [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-13/igt@kms_color@ctm-signed.html
>    [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_color@ctm-signed.html
> 
>   * igt@kms_cursor_crc@cursor-random-128x42:
>     - shard-tglu:         [FAIL][280] ([i915#13566]) -> [PASS][281] +5 other tests pass
>    [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-9/igt@kms_cursor_crc@cursor-random-128x42.html
>    [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
>     - shard-rkl:          [FAIL][282] ([i915#13566]) -> [PASS][283] +6 other tests pass
>    [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
>    [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
> 
>   * igt@kms_dp_aux_dev:
>     - shard-dg2:          [SKIP][284] ([i915#1257]) -> [PASS][285]
>    [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-7/igt@kms_dp_aux_dev.html
>    [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_dp_aux_dev.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
>     - shard-glk:          [FAIL][286] ([i915#13027]) -> [PASS][287] +1 other test pass
>    [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
>    [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
>     - shard-tglu:         [FAIL][288] ([i915#13027]) -> [PASS][289] +1 other test pass
>    [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
>    [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-9/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
>     - shard-dg2:          [FAIL][290] ([i915#6880]) -> [PASS][291] +1 other test pass
>    [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
>    [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
> 
>   * igt@kms_hdr@static-toggle-dpms:
>     - shard-dg2:          [SKIP][292] ([i915#3555] / [i915#8228]) -> [PASS][293]
>    [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-8/igt@kms_hdr@static-toggle-dpms.html
>    [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
>     - shard-rkl:          [SKIP][294] ([i915#3555] / [i915#8228]) -> [PASS][295]
>    [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_hdr@static-toggle-dpms.html
>    [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html
> 
>   * igt@kms_joiner@invalid-modeset-force-big-joiner:
>     - shard-dg2:          [SKIP][296] ([i915#15459]) -> [PASS][297] +1 other test pass
>    [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
>    [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
> 
>   * igt@kms_plane_scaling@intel-max-src-size:
>     - shard-dg2:          [SKIP][298] ([i915#6953] / [i915#9423]) -> [PASS][299]
>    [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html
>    [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
>     - shard-rkl:          [SKIP][300] ([i915#6953]) -> [PASS][301]
>    [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html
>    [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
> 
>   * igt@kms_setmode@basic:
>     - shard-tglu:         [FAIL][302] ([i915#15106]) -> [PASS][303] +2 other tests pass
>    [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-2/igt@kms_setmode@basic.html
>    [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-3/igt@kms_setmode@basic.html
> 
>   * igt@kms_setmode@basic@pipe-b-edp-1:
>     - shard-mtlp:         [FAIL][304] ([i915#15106]) -> [PASS][305] +2 other tests pass
>    [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html
>    [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html
> 
>   * igt@perf@polling@0-rcs0:
>     - shard-rkl:          [FAIL][306] ([i915#10538]) -> [PASS][307] +1 other test pass
>    [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-2/igt@perf@polling@0-rcs0.html
>    [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@perf@polling@0-rcs0.html
> 
>   * igt@perf_pmu@busy-double-start@vecs1:
>     - shard-dg2:          [FAIL][308] ([i915#4349]) -> [PASS][309] +4 other tests pass
>    [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
>    [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
> 
>   
> #### Warnings ####
> 
>   * igt@api_intel_bb@blit-reloc-purge-cache:
>     - shard-rkl:          [SKIP][310] ([i915#14544] / [i915#8411]) -> [SKIP][311] ([i915#8411])
>    [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html
>    [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html
> 
>   * igt@api_intel_bb@crc32:
>     - shard-rkl:          [SKIP][312] ([i915#14544] / [i915#6230]) -> [SKIP][313] ([i915#6230])
>    [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@api_intel_bb@crc32.html
>    [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@api_intel_bb@crc32.html
> 
>   * igt@gem_ccs@block-copy-compressed:
>     - shard-rkl:          [SKIP][314] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][315] ([i915#3555] / [i915#9323])
>    [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
>    [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html
> 
>   * igt@gem_ccs@block-multicopy-compressed:
>     - shard-rkl:          [SKIP][316] ([i915#9323]) -> [SKIP][317] ([i915#14544] / [i915#9323])
>    [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html
>    [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
> 
>   * igt@gem_ccs@suspend-resume:
>     - shard-rkl:          [SKIP][318] ([i915#14544] / [i915#9323]) -> [SKIP][319] ([i915#9323])
>    [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_ccs@suspend-resume.html
>    [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_ccs@suspend-resume.html
> 
>   * igt@gem_create@create-ext-cpu-access-big:
>     - shard-rkl:          [SKIP][320] ([i915#6335]) -> [SKIP][321] ([i915#14544] / [i915#6335])
>    [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html
>    [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
> 
>   * igt@gem_exec_balancer@parallel-balancer:
>     - shard-rkl:          [SKIP][322] ([i915#14544] / [i915#4525]) -> [SKIP][323] ([i915#4525]) +2 other tests skip
>    [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
>    [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
> 
>   * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
>     - shard-rkl:          [SKIP][324] ([i915#14544] / [i915#3281]) -> [SKIP][325] ([i915#3281]) +10 other tests skip
>    [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
>    [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
> 
>   * igt@gem_exec_reloc@basic-write-read:
>     - shard-rkl:          [SKIP][326] ([i915#3281]) -> [SKIP][327] ([i915#14544] / [i915#3281]) +2 other tests skip
>    [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@gem_exec_reloc@basic-write-read.html
>    [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
> 
>   * igt@gem_lmem_swapping@massive:
>     - shard-rkl:          [SKIP][328] ([i915#4613]) -> [SKIP][329] ([i915#14544] / [i915#4613])
>    [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@gem_lmem_swapping@massive.html
>    [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_lmem_swapping@massive.html
> 
>   * igt@gem_lmem_swapping@parallel-random-verify-ccs:
>     - shard-rkl:          [SKIP][330] ([i915#14544] / [i915#4613]) -> [SKIP][331] ([i915#4613]) +5 other tests skip
>    [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
>    [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
> 
>   * igt@gem_pwrite@basic-exhaustion:
>     - shard-rkl:          [SKIP][332] ([i915#14544] / [i915#3282]) -> [SKIP][333] ([i915#3282]) +5 other tests skip
>    [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html
>    [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html
> 
>   * igt@gem_set_tiling_vs_pwrite:
>     - shard-rkl:          [SKIP][334] ([i915#3282]) -> [SKIP][335] ([i915#14544] / [i915#3282]) +2 other tests skip
>    [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html
>    [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
> 
>   * igt@gem_userptr_blits@dmabuf-unsync:
>     - shard-rkl:          [SKIP][336] ([i915#3297]) -> [SKIP][337] ([i915#14544] / [i915#3297]) +1 other test skip
>    [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html
>    [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
> 
>   * igt@gem_userptr_blits@readonly-pwrite-unsync:
>     - shard-rkl:          [SKIP][338] ([i915#14544] / [i915#3297]) -> [SKIP][339] ([i915#3297])
>    [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
>    [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html
> 
>   * igt@gem_userptr_blits@relocations:
>     - shard-rkl:          [SKIP][340] ([i915#3281] / [i915#3297]) -> [SKIP][341] ([i915#14544] / [i915#3281] / [i915#3297])
>    [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@gem_userptr_blits@relocations.html
>    [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gem_userptr_blits@relocations.html
> 
>   * igt@gen9_exec_parse@bb-start-out:
>     - shard-rkl:          [SKIP][342] ([i915#2527]) -> [SKIP][343] ([i915#14544] / [i915#2527]) +1 other test skip
>    [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-8/igt@gen9_exec_parse@bb-start-out.html
>    [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html
> 
>   * igt@gen9_exec_parse@unaligned-access:
>     - shard-rkl:          [SKIP][344] ([i915#14544] / [i915#2527]) -> [SKIP][345] ([i915#2527]) +2 other tests skip
>    [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html
>    [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@gen9_exec_parse@unaligned-access.html
> 
>   * igt@i915_pm_freq_api@freq-reset-multiple:
>     - shard-rkl:          [SKIP][346] ([i915#14544] / [i915#8399]) -> [SKIP][347] ([i915#8399])
>    [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
>    [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html
> 
>   * igt@i915_power@sanity:
>     - shard-rkl:          [SKIP][348] ([i915#14544] / [i915#7984]) -> [SKIP][349] ([i915#7984])
>    [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@i915_power@sanity.html
>    [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@i915_power@sanity.html
> 
>   * igt@i915_query@hwconfig_table:
>     - shard-rkl:          [SKIP][350] ([i915#6245]) -> [SKIP][351] ([i915#14544] / [i915#6245])
>    [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-4/igt@i915_query@hwconfig_table.html
>    [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@i915_query@hwconfig_table.html
> 
>   * igt@intel_hwmon@hwmon-read:
>     - shard-rkl:          [SKIP][352] ([i915#14544] / [i915#7707]) -> [SKIP][353] ([i915#7707])
>    [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
>    [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@intel_hwmon@hwmon-read.html
> 
>   * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
>     - shard-rkl:          [SKIP][354] ([i915#12454] / [i915#12712]) -> [SKIP][355] ([i915#12454] / [i915#12712] / [i915#14544])
>    [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
>    [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
>     - shard-rkl:          [SKIP][356] ([i915#1769] / [i915#3555]) -> [SKIP][357] ([i915#14544] / [i915#1769] / [i915#3555])
>    [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>    [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
> 
>   * igt@kms_big_fb@4-tiled-addfb:
>     - shard-rkl:          [SKIP][358] ([i915#5286]) -> [SKIP][359] ([i915#14544] / [i915#5286]) +3 other tests skip
>    [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
>    [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>     - shard-rkl:          [SKIP][360] ([i915#14544] / [i915#5286]) -> [SKIP][361] ([i915#5286]) +4 other tests skip
>    [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
>    [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
> 
>   * igt@kms_big_fb@linear-32bpp-rotate-90:
>     - shard-rkl:          [SKIP][362] ([i915#3638]) -> [SKIP][363] ([i915#14544] / [i915#3638]) +1 other test skip
>    [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-90.html
>    [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
> 
>   * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
>     - shard-rkl:          [SKIP][364] ([i915#14544] / [i915#3638]) -> [SKIP][365] ([i915#3638])
>    [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
>    [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>     - shard-rkl:          [SKIP][366] ([i915#14544]) -> [SKIP][367] +7 other tests skip
>    [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>    [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> 
>   * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
>     - shard-rkl:          [SKIP][368] ([i915#14544] / [i915#6095]) -> [SKIP][369] ([i915#6095]) +11 other tests skip
>    [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
>    [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
> 
>   * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
>     - shard-rkl:          [SKIP][370] ([i915#14098] / [i915#6095]) -> [SKIP][371] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
>    [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
>    [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
> 
>   * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2:
>     - shard-rkl:          [SKIP][372] ([i915#6095]) -> [SKIP][373] ([i915#14544] / [i915#6095]) +4 other tests skip
>    [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html
>    [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
>     - shard-rkl:          [SKIP][374] ([i915#12805] / [i915#14544]) -> [SKIP][375] ([i915#12805])
>    [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
>    [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
>     - shard-rkl:          [SKIP][376] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][377] ([i915#14098] / [i915#6095]) +17 other tests skip
>    [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
>    [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
> 
>   * igt@kms_cdclk@mode-transition:
>     - shard-rkl:          [SKIP][378] ([i915#14544] / [i915#3742]) -> [SKIP][379] ([i915#3742])
>    [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_cdclk@mode-transition.html
>    [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_cdclk@mode-transition.html
> 
>   * igt@kms_chamelium_hpd@dp-hpd:
>     - shard-rkl:          [SKIP][380] ([i915#11151] / [i915#7828]) -> [SKIP][381] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
>    [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd.html
>    [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html
> 
>   * igt@kms_chamelium_hpd@hdmi-hpd-fast:
>     - shard-rkl:          [SKIP][382] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][383] ([i915#11151] / [i915#7828]) +5 other tests skip
>    [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
>    [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
> 
>   * igt@kms_content_protection@dp-mst-lic-type-0:
>     - shard-rkl:          [SKIP][384] ([i915#3116]) -> [SKIP][385] ([i915#14544] / [i915#3116])
>    [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html
>    [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
> 
>   * igt@kms_content_protection@dp-mst-type-0:
>     - shard-rkl:          [SKIP][386] ([i915#14544] / [i915#3116]) -> [SKIP][387] ([i915#3116]) +1 other test skip
>    [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
>    [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-32x32:
>     - shard-rkl:          [SKIP][388] ([i915#3555]) -> [SKIP][389] ([i915#14544] / [i915#3555]) +6 other tests skip
>    [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
>    [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
> 
>   * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
>     - shard-rkl:          [SKIP][390] ([i915#13049] / [i915#14544]) -> [SKIP][391] ([i915#13049])
>    [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
>    [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
>     - shard-rkl:          [SKIP][392] -> [SKIP][393] ([i915#14544]) +8 other tests skip
>    [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
>    [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
>     - shard-rkl:          [SKIP][394] ([i915#14544] / [i915#4103]) -> [SKIP][395] ([i915#4103]) +1 other test skip
>    [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
>    [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_dp_link_training@non-uhbr-mst:
>     - shard-rkl:          [SKIP][396] ([i915#13749] / [i915#14544]) -> [SKIP][397] ([i915#13749])
>    [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html
>    [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-mst.html
> 
>   * igt@kms_dsc@dsc-with-formats:
>     - shard-rkl:          [SKIP][398] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][399] ([i915#3555] / [i915#3840])
>    [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
>    [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html
> 
>   * igt@kms_fbcon_fbt@psr-suspend:
>     - shard-rkl:          [SKIP][400] ([i915#3955]) -> [SKIP][401] ([i915#14544] / [i915#3955])
>    [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-8/igt@kms_fbcon_fbt@psr-suspend.html
>    [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
> 
>   * igt@kms_feature_discovery@psr1:
>     - shard-rkl:          [SKIP][402] ([i915#658]) -> [SKIP][403] ([i915#14544] / [i915#658])
>    [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@kms_feature_discovery@psr1.html
>    [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_feature_discovery@psr1.html
> 
>   * igt@kms_flip@2x-blocking-wf_vblank:
>     - shard-rkl:          [SKIP][404] ([i915#14544] / [i915#9934]) -> [SKIP][405] ([i915#9934]) +3 other tests skip
>    [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html
>    [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_flip@2x-blocking-wf_vblank.html
> 
>   * igt@kms_flip@2x-flip-vs-suspend-interruptible:
>     - shard-glk:          [INCOMPLETE][406] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][407] ([i915#12745] / [i915#4839])
>    [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
>    [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
>     - shard-glk:          [INCOMPLETE][408] ([i915#12314] / [i915#4839]) -> [INCOMPLETE][409] ([i915#4839])
>    [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
>    [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
>     - shard-rkl:          [SKIP][410] ([i915#9934]) -> [SKIP][411] ([i915#14544] / [i915#9934]) +4 other tests skip
>    [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
>    [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
>     - shard-rkl:          [SKIP][412] ([i915#2672] / [i915#3555]) -> [SKIP][413] ([i915#14544] / [i915#2672] / [i915#3555]) +2 other tests skip
>    [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
>    [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
>     - shard-rkl:          [SKIP][414] ([i915#2672]) -> [SKIP][415] ([i915#14544] / [i915#2672]) +2 other tests skip
>    [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
>    [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
>     - shard-rkl:          [SKIP][416] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][417] ([i915#2672] / [i915#3555])
>    [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
>    [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
>     - shard-rkl:          [SKIP][418] ([i915#14544] / [i915#2672]) -> [SKIP][419] ([i915#2672])
>    [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
>    [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
>     - shard-dg1:          [SKIP][420] ([i915#2587] / [i915#2672] / [i915#3555]) -> [SKIP][421] ([i915#2587] / [i915#2672] / [i915#3555] / [i915#4423])
>    [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
>    [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/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-ytileccs-upscaling@pipe-a-valid-mode:
>     - shard-dg1:          [SKIP][422] ([i915#2587] / [i915#2672]) -> [SKIP][423] ([i915#2587] / [i915#2672] / [i915#4423])
>    [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
>    [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
>     - shard-rkl:          [SKIP][424] ([i915#14544] / [i915#1825]) -> [SKIP][425] ([i915#1825]) +29 other tests skip
>    [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
>    [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
>     - shard-dg2:          [SKIP][426] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][427] ([i915#15102] / [i915#3458])
>    [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
>    [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
>     - shard-rkl:          [SKIP][428] ([i915#15102] / [i915#3023]) -> [SKIP][429] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
>    [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
>    [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
>     - shard-rkl:          [SKIP][430] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][431] ([i915#15102] / [i915#3023]) +17 other tests skip
>    [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
>    [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
>     - shard-rkl:          [SKIP][432] ([i915#1825]) -> [SKIP][433] ([i915#14544] / [i915#1825]) +17 other tests skip
>    [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
>    [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
>     - shard-dg1:          [SKIP][434] -> [SKIP][435] ([i915#4423])
>    [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
>    [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
>     - shard-rkl:          [SKIP][436] ([i915#15102]) -> [SKIP][437] ([i915#14544] / [i915#15102]) +2 other tests skip
>    [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
>    [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
>     - shard-rkl:          [SKIP][438] ([i915#14544] / [i915#15102]) -> [SKIP][439] ([i915#15102]) +5 other tests skip
>    [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
>    [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
>     - shard-dg2:          [SKIP][440] ([i915#15102] / [i915#3458]) -> [SKIP][441] ([i915#10433] / [i915#15102] / [i915#3458]) +4 other tests skip
>    [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
>    [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
> 
>   * igt@kms_hdr@brightness-with-hdr:
>     - shard-tglu:         [SKIP][442] ([i915#1187] / [i915#12713]) -> [SKIP][443] ([i915#12713])
>    [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
>    [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-8/igt@kms_hdr@brightness-with-hdr.html
> 
>   * igt@kms_joiner@invalid-modeset-ultra-joiner:
>     - shard-rkl:          [SKIP][444] ([i915#14544] / [i915#15458]) -> [SKIP][445] ([i915#15458])
>    [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
>    [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
> 
>   * igt@kms_pipe_stress@stress-xrgb8888-4tiled:
>     - shard-rkl:          [SKIP][446] ([i915#14544] / [i915#14712]) -> [SKIP][447] ([i915#14712])
>    [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
>    [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
> 
>   * igt@kms_plane_multiple@2x-tiling-4:
>     - shard-rkl:          [SKIP][448] ([i915#13958] / [i915#14544]) -> [SKIP][449] ([i915#13958])
>    [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
>    [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html
> 
>   * igt@kms_pm_backlight@bad-brightness:
>     - shard-rkl:          [SKIP][450] ([i915#5354]) -> [SKIP][451] ([i915#14544] / [i915#5354])
>    [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html
>    [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
> 
>   * igt@kms_pm_dc@dc9-dpms:
>     - shard-rkl:          [SKIP][452] ([i915#14544] / [i915#4281]) -> [SKIP][453] ([i915#4281])
>    [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
>    [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
>     - shard-tglu:         [SKIP][454] ([i915#15128]) -> [SKIP][455] ([i915#4281])
>    [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
>    [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
> 
>   * igt@kms_pm_lpsp@kms-lpsp:
>     - shard-rkl:          [SKIP][456] ([i915#9340]) -> [SKIP][457] ([i915#3828])
>    [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
>    [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
> 
>   * igt@kms_pm_rpm@package-g7:
>     - shard-rkl:          [SKIP][458] ([i915#14544] / [i915#15403]) -> [SKIP][459] ([i915#15403])
>    [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
>    [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_pm_rpm@package-g7.html
> 
>   * igt@kms_prime@basic-crc-hybrid:
>     - shard-rkl:          [SKIP][460] ([i915#6524]) -> [SKIP][461] ([i915#14544] / [i915#6524])
>    [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html
>    [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
> 
>   * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
>     - shard-rkl:          [SKIP][462] ([i915#11520]) -> [SKIP][463] ([i915#11520] / [i915#14544]) +4 other tests skip
>    [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
>    [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
>     - shard-rkl:          [SKIP][464] ([i915#11520] / [i915#14544]) -> [SKIP][465] ([i915#11520]) +6 other tests skip
>    [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
>    [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
> 
>   * igt@kms_psr@pr-sprite-mmap-gtt:
>     - shard-rkl:          [SKIP][466] ([i915#1072] / [i915#9732]) -> [SKIP][467] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip
>    [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@kms_psr@pr-sprite-mmap-gtt.html
>    [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_psr@pr-sprite-mmap-gtt.html
> 
>   * igt@kms_psr@psr2-cursor-mmap-gtt:
>     - shard-rkl:          [SKIP][468] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][469] ([i915#1072] / [i915#9732]) +17 other tests skip
>    [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
>    [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-8/igt@kms_psr@psr2-cursor-mmap-gtt.html
> 
>   * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
>     - shard-rkl:          [SKIP][470] ([i915#14544] / [i915#5289]) -> [SKIP][471] ([i915#5289]) +1 other test skip
>    [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
>    [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
> 
>   * igt@kms_setmode@invalid-clone-exclusive-crtc:
>     - shard-rkl:          [SKIP][472] ([i915#14544] / [i915#3555]) -> [SKIP][473] ([i915#3555]) +1 other test skip
>    [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
>    [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
> 
>   * igt@kms_vrr@lobf:
>     - shard-rkl:          [SKIP][474] ([i915#11920] / [i915#14544]) -> [SKIP][475] ([i915#11920])
>    [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@kms_vrr@lobf.html
>    [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-4/igt@kms_vrr@lobf.html
> 
>   * igt@kms_vrr@max-min:
>     - shard-rkl:          [SKIP][476] ([i915#9906]) -> [SKIP][477] ([i915#14544] / [i915#9906])
>    [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-7/igt@kms_vrr@max-min.html
>    [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@kms_vrr@max-min.html
> 
>   * igt@perf@gen8-unprivileged-single-ctx-counters:
>     - shard-rkl:          [SKIP][478] ([i915#14544] / [i915#2436]) -> [SKIP][479] ([i915#2436])
>    [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
>    [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
> 
>   * igt@perf@per-context-mode-unprivileged:
>     - shard-rkl:          [SKIP][480] ([i915#14544] / [i915#2435]) -> [SKIP][481] ([i915#2435])
>    [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
>    [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html
> 
>   * igt@perf_pmu@rc6-all-gts:
>     - shard-rkl:          [SKIP][482] ([i915#14544] / [i915#8516]) -> [SKIP][483] ([i915#8516])
>    [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
>    [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html
> 
>   * igt@sriov_basic@enable-vfs-autoprobe-on:
>     - shard-rkl:          [SKIP][484] ([i915#9917]) -> [SKIP][485] ([i915#14544] / [i915#9917])
>    [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-on.html
>    [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
> 
>   * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
>     - shard-rkl:          [SKIP][486] ([i915#14544] / [i915#9917]) -> [SKIP][487] ([i915#9917])
>    [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8670/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
>    [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/shard-rkl-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
> 
>   
>   [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
>   [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
>   [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
>   [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
>   [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
>   [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
>   [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
>   [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
>   [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
>   [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
>   [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
>   [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
>   [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
>   [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
>   [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
>   [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
>   [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
>   [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
>   [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
>   [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
>   [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
>   [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
>   [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
>   [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
>   [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
>   [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
>   [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
>   [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
>   [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
>   [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
>   [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
>   [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
>   [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
>   [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
>   [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
>   [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
>   [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
>   [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
>   [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
>   [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
>   [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
>   [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
>   [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
>   [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
>   [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
>   [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
>   [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
>   [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
>   [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
>   [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365
>   [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
>   [i915#15452]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15452
>   [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
>   [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
>   [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
>   [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
>   [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
>   [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
>   [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
>   [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
>   [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
>   [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
>   [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
>   [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
>   [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
>   [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
>   [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
>   [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
>   [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
>   [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
>   [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
>   [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
>   [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
>   [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
>   [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
>   [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
>   [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
>   [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
>   [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
>   [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
>   [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
>   [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
>   [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
>   [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
>   [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
>   [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
>   [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
>   [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
>   [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
>   [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
>   [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
>   [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
>   [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
>   [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
>   [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
>   [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
>   [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
>   [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
>   [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
>   [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
>   [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
>   [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
>   [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
>   [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
>   [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
>   [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
>   [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
>   [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
>   [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
>   [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
>   [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
>   [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
>   [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
>   [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
>   [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
>   [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
>   [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
>   [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
>   [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
>   [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
>   [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
>   [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
>   [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
>   [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
>   [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
>   [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
>   [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016
>   [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
>   [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
>   [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
>   [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
>   [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
>   [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
>   [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
>   [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
>   [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
>   [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
>   [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
>   [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
>   [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
>   [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
>   [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
>   [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
>   [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
>   [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
>   [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
>   [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
>   [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
>   [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
>   [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
>   [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
>   [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
>   [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
>   [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
>   [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
>   [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
>   [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
>   [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
>   [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
>   [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_8670 -> IGTPW_14227
> 
>   CI-20190529: 20190529
>   CI_DRM_17698: 605176fe40c828b491a1532367df157529895b87 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_14227: 13b6d583b5c4295ae214e9134601e8205292c134 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   IGT_8670: 8670
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14227/index.html

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

end of thread, other threads:[~2026-01-05  8:52 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-17 13:14 [PATCH 0/1] Discard wait_for_lmem_ready from fault injection test Balasubramani Vivekanandan
2025-12-17 13:14 ` [PATCH 1/1] tests/xe/xe_fault_injection: Remove probe function wait_for_lmem_ready Balasubramani Vivekanandan
2025-12-17 13:16   ` Francois Dugast
2025-12-17 19:19 ` ✓ i915.CI.BAT: success for Discard wait_for_lmem_ready from fault injection test Patchwork
2025-12-17 19:20 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-18  0:01 ` ✗ i915.CI.Full: failure " Patchwork
2026-01-05  8:51   ` Vivekanandan, Balasubramani
2025-12-18 18:38 ` ✗ Xe.CI.Full: " Patchwork
2026-01-05  8:50   ` Vivekanandan, Balasubramani

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