Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 i-g-t] tests/intel/xe_exec_reset: Add mocs reset test
@ 2024-11-27 10:38 nakshtra.goyal
  2024-11-27 13:25 ` ✗ i915.CI.BAT: failure for tests/intel/xe_exec_reset: Add mocs reset test (rev7) Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: nakshtra.goyal @ 2024-11-27 10:38 UTC (permalink / raw)
  To: igt-dev, ramadevi.gandi; +Cc: matthew.d.roper

From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>

Check mocs configuration over GT reset.

v2: Address review comments. (Matt Roper)
v3: Correcting documentation for functionality and changing suspend resume
to gt reset,adding required header. (Matt Roper)
v7: correcting s-o-b and comments (Nakshtra)

Cc: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Signed-off-by: Nakshtra Goyal <nakshtra.goyal@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
---
 tests/intel/xe_exec_reset.c | 44 +++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
index 43ef1e334..a3eaf8bbf 100644
--- a/tests/intel/xe_exec_reset.c
+++ b/tests/intel/xe_exec_reset.c
@@ -12,6 +12,8 @@
  * Test category: functionality test
  */
 
+#include <fcntl.h>
+
 #include "igt.h"
 #include "lib/igt_syncobj.h"
 #include "lib/intel_reg.h"
@@ -715,6 +717,44 @@ gt_reset(int fd, int n_threads, int n_sec)
 	free(threads);
 }
 
+/**
+ * SUBTEST: gt-mocs-reset
+ * Description: Validate mocs register contents over GT reset
+ * Test category: mocs
+ *
+ */
+static void
+gt_mocs_reset(int fd, int gt)
+{
+	char path[256];
+
+	/* Mocs debugfs contents before and after GT reset.
+	 * Allocate memory to store 10k characters sufficient enough
+	 * to store global mocs and lncf mocs data.
+	 */
+	char *mocs_content_pre = (char *)malloc(10000 * sizeof(char));
+	char *mocs_contents_post = (char *)malloc(10000 * sizeof(char));
+
+	igt_assert(mocs_content_pre);
+	igt_assert(mocs_contents_post);
+
+	sprintf(path, "gt%d/mocs", gt);
+	igt_assert(igt_debugfs_exists(fd, path, O_RDONLY));
+	igt_debugfs_dump(fd, path);
+	igt_debugfs_read(fd, path, mocs_content_pre);
+
+	xe_force_gt_reset_sync(fd, gt);
+
+	igt_assert(igt_debugfs_exists(fd, path, O_RDONLY));
+	igt_debugfs_dump(fd, path);
+	igt_debugfs_read(fd, path, mocs_contents_post);
+
+	igt_assert(strcmp(mocs_content_pre, mocs_contents_post) == 0);
+
+	free(mocs_content_pre);
+	free(mocs_contents_post);
+}
+
 igt_main
 {
 	struct drm_xe_engine_class_instance *hwe;
@@ -820,6 +860,10 @@ igt_main
 	igt_subtest("gt-reset-stress")
 		gt_reset(fd, 4, 1);
 
+	igt_subtest("gt-mocs-reset")
+		xe_for_each_gt(fd, gt)
+			gt_mocs_reset(fd, gt);
+
 	igt_fixture
 		drm_close_driver(fd);
 }
-- 
2.34.1


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

* ✗ i915.CI.BAT: failure for tests/intel/xe_exec_reset: Add mocs reset test (rev7)
  2024-11-27 10:38 [PATCH v7 i-g-t] tests/intel/xe_exec_reset: Add mocs reset test nakshtra.goyal
@ 2024-11-27 13:25 ` Patchwork
  2024-11-27 13:28 ` ✓ Xe.CI.BAT: success " Patchwork
  2024-11-27 16:50 ` ✗ Xe.CI.Full: failure " Patchwork
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-11-27 13:25 UTC (permalink / raw)
  To: janga.rahul.kumar; +Cc: igt-dev

== Series Details ==

Series: tests/intel/xe_exec_reset: Add mocs reset test (rev7)
URL   : https://patchwork.freedesktop.org/series/140575/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8127 -> IGTPW_12207
====================================================

Summary
-------

  **FAILURE**

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

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

  Missing    (2): fi-snb-2520m bat-jsl-3 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8109u:       [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8127/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12207/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html

  * igt@kms_flip@basic-flip-vs-dpms@a-dp1:
    - fi-kbl-7567u:       [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8127/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12207/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [PASS][5] -> [ABORT][6] ([i915#12061]) +1 other test abort
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8127/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12207/bat-arlh-3/igt@i915_selftest@live@workarounds.html

  * igt@kms_flip@basic-flip-vs-dpms:
    - fi-kbl-7567u:       [PASS][7] -> [DMESG-WARN][8] ([i915#12920])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8127/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12207/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms.html

  
#### Possible fixes ####

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

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

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
    - bat-dg2-11:         [SKIP][15] ([i915#9197]) -> [PASS][16] +3 other tests pass
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8127/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12207/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
    - fi-kbl-7567u:       [DMESG-WARN][17] ([i915#12926]) -> [PASS][18] +1 other test pass
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8127/fi-kbl-7567u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12207/fi-kbl-7567u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1:
    - fi-kbl-7567u:       [DMESG-WARN][19] ([i915#12920]) -> [PASS][20] +1 other test pass
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8127/fi-kbl-7567u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12207/fi-kbl-7567u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1.html

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

  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
  [i915#12920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12920
  [i915#12926]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12926
  [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8127 -> IGTPW_12207
  * Linux: CI_DRM_15749 -> CI_DRM_15753

  CI-20190529: 20190529
  CI_DRM_15749: 739a2506c44a0be22cc842d2c625a05ed21c1198 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_15753: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12207: 0bbedc56a0a00983d9d5b8e018fa6f18fbc4166d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

* ✓ Xe.CI.BAT: success for tests/intel/xe_exec_reset: Add mocs reset test (rev7)
  2024-11-27 10:38 [PATCH v7 i-g-t] tests/intel/xe_exec_reset: Add mocs reset test nakshtra.goyal
  2024-11-27 13:25 ` ✗ i915.CI.BAT: failure for tests/intel/xe_exec_reset: Add mocs reset test (rev7) Patchwork
@ 2024-11-27 13:28 ` Patchwork
  2024-11-27 16:50 ` ✗ Xe.CI.Full: failure " Patchwork
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-11-27 13:28 UTC (permalink / raw)
  To: janga.rahul.kumar; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_exec_reset: Add mocs reset test (rev7)
URL   : https://patchwork.freedesktop.org/series/140575/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8127_BAT -> XEIGTPW_12207_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

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

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


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

  * IGT: IGT_8127 -> IGTPW_12207
  * Linux: xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198 -> xe-2285-4e5e3c93cf642f47374ed6e003f0a55b8af0f25b

  IGTPW_12207: 0bbedc56a0a00983d9d5b8e018fa6f18fbc4166d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198: 739a2506c44a0be22cc842d2c625a05ed21c1198
  xe-2285-4e5e3c93cf642f47374ed6e003f0a55b8af0f25b: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for tests/intel/xe_exec_reset: Add mocs reset test (rev7)
  2024-11-27 10:38 [PATCH v7 i-g-t] tests/intel/xe_exec_reset: Add mocs reset test nakshtra.goyal
  2024-11-27 13:25 ` ✗ i915.CI.BAT: failure for tests/intel/xe_exec_reset: Add mocs reset test (rev7) Patchwork
  2024-11-27 13:28 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2024-11-27 16:50 ` Patchwork
  2024-11-28 11:26   ` Goyal, Nakshtra
  2 siblings, 1 reply; 5+ messages in thread
From: Patchwork @ 2024-11-27 16:50 UTC (permalink / raw)
  To: janga.rahul.kumar; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_exec_reset: Add mocs reset test (rev7)
URL   : https://patchwork.freedesktop.org/series/140575/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8127_full -> XEIGTPW_12207_full
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

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

  * igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][3]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a6-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][4]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-bmg:          [PASS][5] -> [DMESG-WARN][6] +3 other tests dmesg-warn
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][7] +1 other test dmesg-warn
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b.html

  
#### Warnings ####

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][8] ([Intel XE#2423]) -> [DMESG-WARN][9] +1 other test dmesg-warn
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-dg2-set2:     [SKIP][10] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@xe_module_load@reload-no-display:
    - shard-bmg:          [FAIL][12] -> [DMESG-WARN][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_module_load@reload-no-display.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_module_load@reload-no-display.html

  
New tests
---------

  New tests have been introduced between XEIGT_8127_full and XEIGTPW_12207_full:

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

  * igt@xe_exec_reset@gt-mocs-reset:
    - Statuses : 2 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.06] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_getclient:
    - shard-dg2-set2:     [PASS][14] -> [SKIP][15] ([Intel XE#2423])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@core_getclient.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@core_getclient.html

  * igt@core_hotunplug@hotrebind:
    - shard-bmg:          [PASS][16] -> [INCOMPLETE][17] ([Intel XE#3468])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@core_hotunplug@hotrebind.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@core_hotunplug@hotrebind.html

  * igt@core_hotunplug@hotreplug-lateclose:
    - shard-dg2-set2:     [PASS][18] -> [SKIP][19] ([Intel XE#1885]) +2 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@core_hotunplug@hotreplug-lateclose.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html

  * igt@core_hotunplug@unplug-rescan:
    - shard-bmg:          [PASS][20] -> [SKIP][21] ([Intel XE#1885]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@core_hotunplug@unplug-rescan.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@core_hotunplug@unplug-rescan.html

  * igt@core_setmaster@master-drop-set-shared-fd:
    - shard-dg2-set2:     [PASS][22] -> [SKIP][23] ([Intel XE#3453])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html

  * igt@core_setmaster@master-drop-set-user:
    - shard-bmg:          [PASS][24] -> [FAIL][25] ([Intel XE#3339])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@core_setmaster@master-drop-set-user.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@core_setmaster@master-drop-set-user.html

  * igt@fbdev@read:
    - shard-dg2-set2:     [PASS][26] -> [SKIP][27] ([Intel XE#2134])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@fbdev@read.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@fbdev@read.html
    - shard-bmg:          [PASS][28] -> [SKIP][29] ([Intel XE#2134]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@fbdev@read.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@fbdev@read.html

  * igt@kms_addfb_basic@bad-pitch-128:
    - shard-bmg:          [PASS][30] -> [DMESG-WARN][31] ([Intel XE#1727])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_addfb_basic@bad-pitch-128.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_addfb_basic@bad-pitch-128.html

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

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3:
    - shard-bmg:          [PASS][34] -> [DMESG-WARN][35] ([Intel XE#3468]) +24 other tests dmesg-warn
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html

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

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

  * igt@kms_atomic_transition@plane-all-transition@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][39] ([Intel XE#3468]) +7 other tests dmesg-warn
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_atomic_transition@plane-all-transition@pipe-b-dp-2.html

  * igt@kms_big_fb@linear-16bpp-rotate-180:
    - shard-bmg:          [PASS][40] -> [SKIP][41] ([Intel XE#2136]) +23 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_big_fb@linear-16bpp-rotate-180.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#1124])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

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

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

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][46] ([Intel XE#616]) +7 other tests fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html

  * igt@kms_cdclk@mode-transition@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#314]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html

  * igt@kms_chamelium_frames@hdmi-crc-single:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2252])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_chamelium_frames@hdmi-crc-single.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [FAIL][51] ([Intel XE#1178]) +2 other tests fail
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_content_protection@legacy.html

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

  * igt@kms_content_protection@uevent@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][53] ([Intel XE#1188])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_content_protection@uevent@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2320])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
    - shard-lnl:          [PASS][55] -> [DMESG-WARN][56] ([Intel XE#2932]) +2 other tests dmesg-warn
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html

  * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-a-dp-2:
    - shard-bmg:          [PASS][57] -> [DMESG-FAIL][58] ([Intel XE#3468]) +7 other tests dmesg-fail
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_cursor_edge_walk@64x64-left-edge@pipe-a-dp-2.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_cursor_edge_walk@64x64-left-edge@pipe-a-dp-2.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-dg2-set2:     [PASS][59] -> [SKIP][60] ([Intel XE#2423] / [i915#2575]) +90 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2286])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

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

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2244])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html

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

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

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

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][67] -> [INCOMPLETE][68] ([Intel XE#2597])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
    - shard-bmg:          [PASS][69] -> [INCOMPLETE][70] ([Intel XE#2597] / [Intel XE#2635])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html

  * igt@kms_flip@plain-flip-ts-check@a-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][71] ([Intel XE#2882]) +1 other test fail
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_flip@plain-flip-ts-check@a-dp2.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible:
    - shard-lnl:          [PASS][72] -> [FAIL][73] ([Intel XE#3149] / [Intel XE#886])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
    - shard-bmg:          [PASS][74] -> [FAIL][75] ([Intel XE#2882]) +1 other test fail
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1:
    - shard-lnl:          [PASS][76] -> [FAIL][77] ([Intel XE#886]) +2 other tests fail
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
    - shard-bmg:          [PASS][78] -> [INCOMPLETE][79] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test incomplete
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
    - shard-dg2-set2:     [PASS][80] -> [SKIP][81] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#2293] / [Intel XE#2380])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html

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

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

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#2136]) +19 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#2136]) +2 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
    - shard-dg2-set2:     [PASS][87] -> [SKIP][88] ([Intel XE#2136]) +24 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#2311]) +2 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-bmg:          NOTRUN -> [FAIL][90] ([Intel XE#2333]) +2 other tests fail
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#2313]) +1 other test skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_mmap_write_crc@main@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][92] ([Intel XE#3468])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_mmap_write_crc@main@pipe-a-dp-2.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][93] ([Intel XE#877])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-hdmi-a-3.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][94] ([Intel XE#361])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][95] ([Intel XE#1727])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html

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

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

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

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [PASS][99] -> [FAIL][100] ([Intel XE#718])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_rpm@cursor-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][101] ([Intel XE#2446])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_pm_rpm@cursor-dpms.html

  * igt@kms_pm_rpm@legacy-planes@plane-50:
    - shard-bmg:          [PASS][102] -> [DMESG-WARN][103] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-warn
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_pm_rpm@legacy-planes@plane-50.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_pm_rpm@legacy-planes@plane-50.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg2-set2:     [PASS][104] -> [SKIP][105] ([Intel XE#2446]) +4 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-bmg:          [PASS][106] -> [SKIP][107] ([Intel XE#2446]) +2 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][108] ([Intel XE#1489])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@psr2-no-drrs:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_psr@psr2-no-drrs.html

  * igt@kms_sequence@get-idle:
    - shard-bmg:          [PASS][110] -> [SKIP][111] ([Intel XE#2423]) +97 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_sequence@get-idle.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_sequence@get-idle.html

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

  * igt@kms_writeback@writeback-check-output:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#2423]) +8 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_writeback@writeback-check-output.html

  * igt@xe_eudebug_online@interrupt-other:
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#2905])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_eudebug_online@interrupt-other.html

  * igt@xe_evict@evict-threads-large:
    - shard-bmg:          [PASS][115] -> [INCOMPLETE][116] ([Intel XE#1473] / [Intel XE#3468])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_evict@evict-threads-large.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_evict@evict-threads-large.html

  * igt@xe_exec_balancer@many-parallel-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][117] ([Intel XE#1130]) +11 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-no-exec-basic:
    - shard-dg2-set2:     [PASS][118] -> [SKIP][119] ([Intel XE#1130]) +169 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-basic.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-basic.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][120] ([Intel XE#2322]) +1 other test skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html

  * igt@xe_exec_basic@twice-userptr-invalidate:
    - shard-dg2-set2:     NOTRUN -> [SKIP][121] ([Intel XE#1130]) +9 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@xe_exec_basic@twice-userptr-invalidate.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-bmg:          [PASS][122] -> [SKIP][123] ([Intel XE#1130]) +230 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
    - shard-bmg:          [PASS][124] -> [DMESG-WARN][125] ([Intel XE#3467])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html

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

  * igt@xe_live_ktest@xe_migrate:
    - shard-bmg:          [PASS][127] -> [SKIP][128] ([Intel XE#1192])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_live_ktest@xe_migrate.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html

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

  * igt@xe_oa@mmio-triggered-reports:
    - shard-lnl:          [PASS][130] -> [FAIL][131] ([Intel XE#2249])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html

  * igt@xe_oa@mmio-triggered-reports@ccs-0:
    - shard-lnl:          NOTRUN -> [FAIL][132] ([Intel XE#2249])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@xe_oa@mmio-triggered-reports@ccs-0.html

  * igt@xe_oa@mmio-triggered-reports@rcs-0:
    - shard-bmg:          NOTRUN -> [FAIL][133] ([Intel XE#2249])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_oa@mmio-triggered-reports@rcs-0.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     NOTRUN -> [SKIP][134] ([Intel XE#2284] / [Intel XE#366])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@d3hot-basic:
    - shard-dg2-set2:     [PASS][135] -> [DMESG-WARN][136] ([Intel XE#3468])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_pm@d3hot-basic.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_pm@d3hot-basic.html

  * igt@xe_pm@s2idle-multiple-execs:
    - shard-bmg:          [PASS][137] -> [DMESG-WARN][138] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_pm@s2idle-multiple-execs.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_pm@s2idle-multiple-execs.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][139] ([Intel XE#2284])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_pm@s4-d3cold-basic-exec.html

  
#### Possible fixes ####

  * igt@core_getversion@all-cards:
    - shard-dg2-set2:     [FAIL][140] ([Intel XE#3440]) -> [PASS][141] +1 other test pass
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@core_getversion@all-cards.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@core_getversion@all-cards.html

  * igt@core_hotunplug@hotunplug-rescan:
    - shard-bmg:          [SKIP][142] ([Intel XE#1885]) -> [PASS][143] +1 other test pass
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@core_hotunplug@hotunplug-rescan.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html

  * igt@fbdev@unaligned-read:
    - shard-bmg:          [SKIP][144] ([Intel XE#2134]) -> [PASS][145]
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@fbdev@unaligned-read.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@fbdev@unaligned-read.html

  * igt@kms_addfb_basic@bad-pitch-999:
    - shard-bmg:          [SKIP][146] ([Intel XE#2423]) -> [PASS][147] +104 other tests pass
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-999.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_addfb_basic@bad-pitch-999.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [SKIP][150] ([Intel XE#2136]) -> [PASS][151] +22 other tests pass
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_cdclk@mode-transition:
    - shard-dg2-set2:     [SKIP][152] ([Intel XE#2136]) -> [PASS][153] +22 other tests pass
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_cdclk@mode-transition.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_cdclk@mode-transition.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-bmg:          [INCOMPLETE][154] ([Intel XE#3468]) -> [PASS][155] +1 other test pass
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
    - shard-dg2-set2:     [SKIP][156] ([Intel XE#2423] / [i915#2575]) -> [PASS][157] +57 other tests pass
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [DMESG-FAIL][158] ([Intel XE#3468]) -> [PASS][159] +2 other tests pass
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [SKIP][160] ([Intel XE#3009]) -> [PASS][161]
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_dp_aux_dev.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_dp_aux_dev.html

  * igt@kms_draw_crc@fill-fb:
    - shard-dg2-set2:     [SKIP][162] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][163] +4 other tests pass
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_draw_crc@fill-fb.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_draw_crc@fill-fb.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-dg2-set2:     [INCOMPLETE][164] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][165]
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_fbcon_fbt@fbc-suspend.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
    - shard-bmg:          [DMESG-WARN][166] ([Intel XE#3468]) -> [PASS][167] +26 other tests pass
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html

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

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][170] ([Intel XE#3012]) -> [PASS][171]
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_pm_rpm@cursor:
    - shard-bmg:          [SKIP][172] ([Intel XE#2446]) -> [PASS][173]
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_pm_rpm@cursor.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_pm_rpm@cursor.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#2446]) -> [PASS][175] +1 other test pass
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_pm_rpm@dpms-lpsp.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_psr@fbc-psr2-cursor-render@edp-1:
    - shard-lnl:          [FAIL][176] -> [PASS][177] +1 other test pass
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
    - shard-lnl:          [FAIL][178] ([Intel XE#899]) -> [PASS][179] +3 other tests pass
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-dg2-set2:     [TIMEOUT][180] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][181]
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
    - shard-dg2-set2:     [SKIP][182] ([Intel XE#1130]) -> [PASS][183] +102 other tests pass
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html

  * igt@xe_exec_balancer@twice-parallel-userptr-invalidate:
    - shard-bmg:          [DMESG-WARN][184] ([Intel XE#1727]) -> [PASS][185] +2 other tests pass
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_exec_balancer@twice-parallel-userptr-invalidate.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_exec_balancer@twice-parallel-userptr-invalidate.html

  * igt@xe_exec_basic@many-bindexecqueue-rebind:
    - shard-bmg:          [SKIP][186] ([Intel XE#1130]) -> [PASS][187] +225 other tests pass
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_exec_basic@many-bindexecqueue-rebind.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
    - shard-bmg:          [DMESG-WARN][188] ([Intel XE#3343]) -> [PASS][189]
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
    - shard-bmg:          [DMESG-WARN][190] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][191]
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
    - shard-bmg:          [DMESG-WARN][192] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][193]
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html

  * igt@xe_live_ktest@xe_bo:
    - shard-bmg:          [SKIP][194] ([Intel XE#1192]) -> [PASS][195]
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_live_ktest@xe_bo.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_live_ktest@xe_bo.html

  * igt@xe_module_load@reload:
    - shard-bmg:          [FAIL][196] -> [PASS][197]
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_module_load@reload.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@xe_module_load@reload.html

  * igt@xe_module_load@unload:
    - shard-bmg:          [DMESG-WARN][198] -> [PASS][199] +1 other test pass
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_module_load@unload.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_module_load@unload.html

  * igt@xe_pm@d3hot-mocs:
    - shard-bmg:          [DMESG-WARN][200] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][201] +7 other tests pass
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_pm@d3hot-mocs.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_pm@d3hot-mocs.html

  * igt@xe_pm_residency@gt-c6-freeze:
    - shard-lnl:          [DMESG-WARN][202] ([Intel XE#3088]) -> [PASS][203] +1 other test pass
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-8/igt@xe_pm_residency@gt-c6-freeze.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@xe_pm_residency@gt-c6-freeze.html

  
#### Warnings ####

  * igt@core_hotunplug@hotunplug-rescan:
    - shard-dg2-set2:     [DMESG-WARN][204] ([Intel XE#3468]) -> [SKIP][205] ([Intel XE#1885])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@core_hotunplug@hotunplug-rescan.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html

  * igt@fbdev@write:
    - shard-bmg:          [DMESG-WARN][206] ([Intel XE#3468]) -> [SKIP][207] ([Intel XE#2134])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@fbdev@write.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@fbdev@write.html

  * igt@kms_3d:
    - shard-bmg:          [DMESG-WARN][208] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][209] ([Intel XE#2423])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_3d.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_3d.html

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

  * igt@kms_async_flips@invalid-async-flip:
    - shard-bmg:          [SKIP][212] ([Intel XE#2423]) -> [SKIP][213] ([Intel XE#873])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_async_flips@invalid-async-flip.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-bmg:          [SKIP][214] ([Intel XE#2385]) -> [SKIP][215] ([Intel XE#2423])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-bmg:          [INCOMPLETE][216] ([Intel XE#1727] / [Intel XE#2613]) -> [SKIP][217] ([Intel XE#2423])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          [SKIP][218] ([Intel XE#2423]) -> [SKIP][219] ([Intel XE#2370])
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-bmg:          [SKIP][220] ([Intel XE#2370]) -> [SKIP][221] ([Intel XE#2423])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][222] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][223] ([Intel XE#316])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-bmg:          [SKIP][224] ([Intel XE#2327]) -> [SKIP][225] ([Intel XE#2136]) +1 other test skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          [SKIP][228] ([Intel XE#2136]) -> [DMESG-WARN][229] ([Intel XE#3468])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][230] ([Intel XE#2136]) -> [SKIP][231] ([Intel XE#316]) +3 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-270.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-bmg:          [SKIP][232] ([Intel XE#2136]) -> [SKIP][233] ([Intel XE#2327]) +4 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@linear-64bpp-rotate-270.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
    - shard-bmg:          [DMESG-WARN][234] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][235] ([Intel XE#2136])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][236] ([Intel XE#316]) -> [SKIP][237] ([Intel XE#2136]) +1 other test skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-bmg:          [DMESG-WARN][238] ([Intel XE#3468]) -> [SKIP][239] ([Intel XE#2136])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-0:
    - shard-dg2-set2:     [SKIP][240] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][241] ([Intel XE#1124]) +3 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
    - shard-bmg:          [SKIP][242] ([Intel XE#2136]) -> [SKIP][243] ([Intel XE#1124]) +15 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][244] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][245] ([Intel XE#607])
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
    - shard-bmg:          [SKIP][246] ([Intel XE#2136]) -> [SKIP][247] ([Intel XE#607])
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][248] ([Intel XE#610]) -> [SKIP][249] ([Intel XE#2136])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
    - shard-bmg:          [SKIP][250] ([Intel XE#610]) -> [SKIP][251] ([Intel XE#2136]) +1 other test skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg2-set2:     [SKIP][252] ([Intel XE#1124]) -> [SKIP][253] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          [SKIP][254] ([Intel XE#1124]) -> [SKIP][255] ([Intel XE#2136]) +9 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][256] ([Intel XE#2136]) -> [SKIP][257] ([Intel XE#1124])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
    - shard-dg2-set2:     [SKIP][258] ([Intel XE#1124]) -> [SKIP][259] ([Intel XE#2136]) +5 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][260] ([Intel XE#607]) -> [SKIP][261] ([Intel XE#2136])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][262] ([Intel XE#2136]) -> [SKIP][263] ([Intel XE#610])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][264] ([Intel XE#367]) -> [SKIP][265] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

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

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-bmg:          [SKIP][268] ([Intel XE#2423]) -> [SKIP][269] ([Intel XE#2314] / [Intel XE#2894])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

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

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][272] ([Intel XE#2423] / [i915#2575]) -> [SKIP][273] ([Intel XE#2191])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

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

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

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][278] ([Intel XE#2423] / [i915#2575]) -> [SKIP][279] ([Intel XE#367]) +3 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][280] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][281] ([Intel XE#455] / [Intel XE#787])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][282] ([Intel XE#2887]) -> [SKIP][283] ([Intel XE#2136]) +15 other tests skip
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][284] ([Intel XE#2907]) -> [SKIP][285] ([Intel XE#2136])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][286] ([Intel XE#2136]) -> [SKIP][287] ([Intel XE#2907]) +1 other test skip
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
    - shard-dg2-set2:     [SKIP][288] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][289] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][292] ([Intel XE#3442]) -> [SKIP][293] ([Intel XE#2136])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][294] ([Intel XE#2136]) -> [SKIP][295] ([Intel XE#3432]) +1 other test skip
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][296] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][297] ([Intel XE#2136]) +2 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][298] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][299] ([Intel XE#2136]) +14 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
    - shard-bmg:          [SKIP][300] ([Intel XE#3432]) -> [SKIP][301] ([Intel XE#2136]) +1 other test skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][304] ([Intel XE#2136]) -> [SKIP][305] ([Intel XE#2652] / [Intel XE#787]) +1 other test skip
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
    - shard-bmg:          [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#2887]) +17 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-dg2-set2:     [SKIP][308] ([Intel XE#2423] / [i915#2575]) -> [SKIP][309] ([Intel XE#306])
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_chamelium_color@ctm-0-25.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-bmg:          [SKIP][310] ([Intel XE#2325]) -> [SKIP][311] ([Intel XE#2423])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_chamelium_color@ctm-blue-to-red.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-dg2-set2:     [SKIP][312] ([Intel XE#306]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-bmg:          [SKIP][314] ([Intel XE#2423]) -> [SKIP][315] ([Intel XE#2325])
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_chamelium_color@ctm-red-to-blue.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - shard-dg2-set2:     [SKIP][316] ([Intel XE#373]) -> [SKIP][317] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_chamelium_edid@hdmi-edid-read.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-read.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          [SKIP][318] ([Intel XE#2423]) -> [SKIP][319] ([Intel XE#2252]) +12 other tests skip
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-dg2-set2:     [SKIP][320] ([Intel XE#2423] / [i915#2575]) -> [SKIP][321] ([Intel XE#373]) +9 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_chamelium_frames@vga-frame-dump.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
    - shard-bmg:          [SKIP][322] ([Intel XE#2252]) -> [SKIP][323] ([Intel XE#2423]) +15 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          [SKIP][324] ([Intel XE#2423]) -> [SKIP][325] ([Intel XE#2341])
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_content_protection@content-type-change.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-bmg:          [SKIP][326] ([Intel XE#2423]) -> [SKIP][327] ([Intel XE#2390]) +1 other test skip
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-1.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2-set2:     [SKIP][328] ([Intel XE#2423] / [i915#2575]) -> [SKIP][329] ([Intel XE#307]) +2 other tests skip
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html

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

  * igt@kms_content_protection@legacy:
    - shard-dg2-set2:     [SKIP][332] ([Intel XE#2423] / [i915#2575]) -> [FAIL][333] ([Intel XE#1178])
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_content_protection@legacy.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [FAIL][334] ([Intel XE#1178]) -> [SKIP][335] ([Intel XE#2423]) +1 other test skip
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_content_protection@lic-type-0.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@srm:
    - shard-dg2-set2:     [FAIL][336] ([Intel XE#1178]) -> [SKIP][337] ([Intel XE#2423] / [i915#2575])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_content_protection@srm.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_content_protection@srm.html
    - shard-bmg:          [SKIP][338] ([Intel XE#2423]) -> [FAIL][339] ([Intel XE#1178])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_content_protection@srm.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     [SKIP][340] ([Intel XE#2423] / [i915#2575]) -> [FAIL][341] ([Intel XE#1188])
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_content_protection@uevent.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_content_protection@uevent.html
    - shard-bmg:          [FAIL][342] ([Intel XE#1188]) -> [SKIP][343] ([Intel XE#2423])
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_content_protection@uevent.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     [SKIP][344] ([Intel XE#2423] / [i915#2575]) -> [SKIP][345] ([Intel XE#308]) +1 other test skip
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-bmg:          [SKIP][346] ([Intel XE#2423]) -> [SKIP][347] ([Intel XE#2321]) +4 other tests skip
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     [SKIP][348] ([Intel XE#308]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html

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

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

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-dg2-set2:     [SKIP][354] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][355] ([Intel XE#1727] / [Intel XE#3226])
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-dg2-set2:     [SKIP][356] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][357] ([Intel XE#1727])
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-bmg:          [SKIP][358] ([Intel XE#2286]) -> [SKIP][359] ([Intel XE#2423]) +1 other test skip
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
    - shard-bmg:          [DMESG-WARN][360] -> [SKIP][361] ([Intel XE#2423])
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-bmg:          [SKIP][362] ([Intel XE#2291]) -> [DMESG-WARN][363] ([Intel XE#877])
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-bmg:          [SKIP][364] ([Intel XE#2423]) -> [DMESG-WARN][365] ([Intel XE#877]) +1 other test dmesg-warn
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-bmg:          [SKIP][366] ([Intel XE#2291]) -> [SKIP][367] ([Intel XE#2423]) +2 other tests skip
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][368] ([Intel XE#2423]) -> [DMESG-FAIL][369] ([Intel XE#3468])
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     [SKIP][370] ([Intel XE#323]) -> [SKIP][371] ([Intel XE#2423] / [i915#2575])
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-bmg:          [SKIP][372] ([Intel XE#2423]) -> [SKIP][373] ([Intel XE#2323])
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_display_modes@mst-extended-mode-negative.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-bmg:          [SKIP][374] ([Intel XE#2136]) -> [SKIP][375] ([Intel XE#2244]) +4 other tests skip
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_dsc@dsc-with-bpc-formats.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-bmg:          [SKIP][376] ([Intel XE#2244]) -> [SKIP][377] ([Intel XE#2136]) +1 other test skip
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_dsc@dsc-with-formats.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          [FAIL][378] ([Intel XE#1695]) -> [SKIP][379] ([Intel XE#2136])
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_fbcon_fbt@fbc.html

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

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     [SKIP][382] ([Intel XE#701]) -> [SKIP][383] ([Intel XE#2423] / [i915#2575])
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_feature_discovery@chamelium.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     [SKIP][384] ([Intel XE#2423] / [i915#2575]) -> [SKIP][385] ([Intel XE#1135])
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_feature_discovery@psr2.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [FAIL][386] ([Intel XE#2882]) -> [SKIP][387] ([Intel XE#2316])
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-panning:
    - shard-bmg:          [SKIP][388] ([Intel XE#2316]) -> [SKIP][389] ([Intel XE#2423]) +1 other test skip
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning.html

  * igt@kms_flip@2x-flip-vs-panning-interruptible:
    - shard-bmg:          [DMESG-WARN][390] ([Intel XE#3468]) -> [SKIP][391] ([Intel XE#2423])
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-bmg:          [INCOMPLETE][392] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468] / [Intel XE#3561]) -> [SKIP][393] ([Intel XE#2423])
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-dg2-set2:     [SKIP][394] ([Intel XE#2423] / [i915#2575]) -> [FAIL][395] ([Intel XE#301])
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [SKIP][396] ([Intel XE#2423]) -> [FAIL][397] ([Intel XE#2882]) +1 other test fail
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-bmg:          [SKIP][398] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][399] ([Intel XE#2136]) +2 other tests skip
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg2-set2:     [SKIP][402] ([Intel XE#455]) -> [SKIP][403] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][404] ([Intel XE#2136]) -> [SKIP][405] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

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

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][408] ([Intel XE#2311]) -> [SKIP][409] ([Intel XE#2312])
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][410] ([Intel XE#651]) -> [SKIP][411] ([Intel XE#2136]) +22 other tests skip
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][412] ([Intel XE#2136]) -> [SKIP][413] ([Intel XE#2311]) +40 other tests skip
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-dg2-set2:     [SKIP][414] ([Intel XE#651]) -> [SKIP][415] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
    - shard-bmg:          [DMESG-FAIL][416] ([Intel XE#3468]) -> [SKIP][417] ([Intel XE#2136])
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
    - shard-bmg:          [FAIL][418] ([Intel XE#2333]) -> [DMESG-FAIL][419] ([Intel XE#3468]) +4 other tests dmesg-fail
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][420] ([Intel XE#2136]) -> [DMESG-FAIL][421] ([Intel XE#3468])
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [FAIL][422] ([Intel XE#2333]) -> [SKIP][423] ([Intel XE#2136]) +14 other tests skip
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][426] ([Intel XE#2312]) -> [DMESG-FAIL][427] ([Intel XE#3468]) +1 other test dmesg-fail
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][428] ([Intel XE#2312]) -> [FAIL][429] ([Intel XE#2333]) +2 other tests fail
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
    - shard-bmg:          [FAIL][430] ([Intel XE#2333]) -> [SKIP][431] ([Intel XE#2312])
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][432] ([Intel XE#2136]) -> [FAIL][433] ([Intel XE#2333]) +10 other tests fail
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
    - shard-bmg:          [DMESG-FAIL][434] ([Intel XE#3468]) -> [FAIL][435] ([Intel XE#2333])
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][436] ([Intel XE#2312]) -> [SKIP][437] ([Intel XE#2311]) +9 other tests skip
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][438] ([Intel XE#2311]) -> [SKIP][439] ([Intel XE#2136]) +42 other tests skip
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][440] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][441] ([Intel XE#651]) +5 other tests skip
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
    - shard-dg2-set2:     [SKIP][442] ([Intel XE#2136]) -> [SKIP][443] ([Intel XE#651]) +15 other tests skip
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-bmg:          [SKIP][444] ([Intel XE#2136]) -> [SKIP][445] ([Intel XE#2352]) +1 other test skip
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][446] ([Intel XE#653]) -> [SKIP][447] ([Intel XE#2136]) +27 other tests skip
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
    - shard-bmg:          [SKIP][448] ([Intel XE#2312]) -> [SKIP][449] ([Intel XE#2136]) +3 other tests skip
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][450] ([Intel XE#2312]) -> [SKIP][451] ([Intel XE#2313]) +6 other tests skip
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][452] ([Intel XE#2313]) -> [SKIP][453] ([Intel XE#2312])
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#2313]) +40 other tests skip
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
    - shard-dg2-set2:     [SKIP][456] ([Intel XE#653]) -> [SKIP][457] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     [SKIP][458] ([Intel XE#2136]) -> [SKIP][459] ([Intel XE#1158])
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][460] ([Intel XE#2313]) -> [SKIP][461] ([Intel XE#2136]) +40 other tests skip
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][462] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][463] ([Intel XE#653]) +4 other tests skip
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][464] ([Intel XE#2136]) -> [SKIP][465] ([Intel XE#653]) +20 other tests skip
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-bmg:          [SKIP][466] ([Intel XE#2423]) -> [SKIP][467] ([Intel XE#2502])
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html
    - shard-dg2-set2:     [SKIP][468] ([Intel XE#2423] / [i915#2575]) -> [SKIP][469] ([Intel XE#605])
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_getfb@getfb2-accept-ccs:
    - shard-bmg:          [SKIP][470] ([Intel XE#2340]) -> [SKIP][471] ([Intel XE#2423])
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          [SKIP][472] ([Intel XE#346]) -> [SKIP][473] ([Intel XE#2136])
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_joiner@basic-big-joiner.html
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-bmg:          [SKIP][474] ([Intel XE#2136]) -> [SKIP][475] ([Intel XE#2934])
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html
    - shard-dg2-set2:     [SKIP][476] ([Intel XE#2925]) -> [SKIP][477] ([Intel XE#2136])
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-dg2-set2:     [SKIP][478] ([Intel XE#346]) -> [SKIP][479] ([Intel XE#2136]) +1 other test skip
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-bmg:          [SKIP][480] ([Intel XE#2136]) -> [SKIP][481] ([Intel XE#346])
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_joiner@invalid-modeset-big-joiner.html
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          [SKIP][482] ([Intel XE#2501]) -> [SKIP][483] ([Intel XE#2423])
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-source-clamping:
    - shard-bmg:          [SKIP][484] ([Intel XE#2423]) -> [INCOMPLETE][485] ([Intel XE#1035] / [Intel XE#2566] / [Intel XE#3468])
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping.html
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping.html

  * igt@kms_plane_lowres@tiling-x:
    - shard-bmg:          [SKIP][486] ([Intel XE#2423]) -> [DMESG-WARN][487] ([Intel XE#3468])
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_plane_lowres@tiling-x.html
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_plane_lowres@tiling-x.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2-set2:     [SKIP][488] ([Intel XE#2423] / [i915#2575]) -> [FAIL][489] ([Intel XE#361])
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
    - shard-dg2-set2:     [SKIP][490] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][491] ([Intel XE#2423] / [i915#2575])
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
    - shard-bmg:          [SKIP][492] ([Intel XE#2763]) -> [SKIP][493] ([Intel XE#2423]) +6 other tests skip
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation:
    - shard-bmg:          [SKIP][494] ([Intel XE#2423]) -> [DMESG-WARN][495] ([Intel XE#1727])
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
    - shard-dg2-set2:     [DMESG-WARN][496] ([Intel XE#1727]) -> [SKIP][497] ([Intel XE#2423] / [i915#2575])
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html

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

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
    - shard-bmg:          [SKIP][500] ([Intel XE#2423]) -> [SKIP][501] ([Intel XE#2763]) +2 other tests skip
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          [SKIP][502] ([Intel XE#2938]) -> [SKIP][503] ([Intel XE#2136])
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2-set2:     [SKIP][504] ([Intel XE#870]) -> [SKIP][505] ([Intel XE#2136]) +3 other tests skip
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2-set2:     [SKIP][506] ([Intel XE#1122]) -> [SKIP][507] ([Intel XE#2136] / [Intel XE#2351])
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2-set2:     [SKIP][508] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][509] ([Intel XE#908])
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_pm_dc@dc6-dpms.html
    - shard-bmg:          [FAIL][510] ([Intel XE#1430]) -> [SKIP][511] ([Intel XE#2136])
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          [SKIP][512] ([Intel XE#2136]) -> [SKIP][513] ([Intel XE#2392])
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_pm_dc@dc6-psr.html
    - shard-dg2-set2:     [SKIP][514] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][515] ([Intel XE#1129])
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@legacy-planes-dpms:
    - shard-dg2-set2:     [SKIP][516] ([Intel XE#2446]) -> [DMESG-WARN][517] ([Intel XE#3468])
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_pm_rpm@legacy-planes-dpms.html
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-bmg:          [DMESG-WARN][518] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][519] ([Intel XE#2446])
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_pm_rpm@modeset-non-lpsp.html
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-stress-extra-wait:
    - shard-dg2-set2:     [SKIP][520] ([Intel XE#2446]) -> [DMESG-WARN][521] ([Intel XE#1727] / [Intel XE#3468])
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_pm_rpm@modeset-stress-extra-wait.html

  * igt@kms_properties@connector-properties-legacy:
    - shard-bmg:          [INCOMPLETE][522] ([Intel XE#1727]) -> [SKIP][523] ([Intel XE#2423])
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_properties@connector-properties-legacy.html
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_properties@connector-properties-legacy.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-bmg:          [SKIP][524] ([Intel XE#1489]) -> [SKIP][525] ([Intel XE#2136]) +12 other tests skip
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     [SKIP][526] ([Intel XE#2136]) -> [SKIP][527] ([Intel XE#1489]) +5 other tests skip
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][528] ([Intel XE#1489]) -> [SKIP][529] ([Intel XE#2136]) +8 other tests skip
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-bmg:          [SKIP][530] ([Intel XE#2136]) -> [SKIP][531] ([Intel XE#1489]) +8 other tests skip
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     [SKIP][532] ([Intel XE#1122]) -> [SKIP][533] ([Intel XE#2136])
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          [SKIP][534] ([Intel XE#2136]) -> [SKIP][535] ([Intel XE#2387])
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-pr-cursor-blt:
    - shard-bmg:          [SKIP][536] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][537] ([Intel XE#2136]) +20 other tests skip
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_psr@fbc-pr-cursor-blt.html
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_psr@fbc-pr-cursor-blt.html

  * igt@kms_psr@fbc-pr-no-drrs:
    - shard-dg2-set2:     [SKIP][538] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][539] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_psr@fbc-pr-no-drrs.html
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_psr@fbc-pr-no-drrs.html

  * igt@kms_psr@fbc-psr2-cursor-render:
    - shard-bmg:          [SKIP][540] ([Intel XE#2136]) -> [SKIP][541] ([Intel XE#2234] / [Intel XE#2850]) +19 other tests skip
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-render.html
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-render.html

  * igt@kms_psr@fbc-psr2-dpms:
    - shard-dg2-set2:     [SKIP][542] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][543] ([Intel XE#2136]) +10 other tests skip
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_psr@fbc-psr2-dpms.html
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_psr@fbc-psr2-dpms.html

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

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

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          [SKIP][548] ([Intel XE#2136]) -> [SKIP][549] ([Intel XE#2414])
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          [SKIP][550] ([Intel XE#2423]) -> [SKIP][551] ([Intel XE#3414]) +2 other tests skip
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-bmg:          [SKIP][552] ([Intel XE#3414]) -> [SKIP][553] ([Intel XE#2423]) +1 other test skip
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          [SKIP][554] ([Intel XE#2423]) -> [SKIP][555] ([Intel XE#2330])
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

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

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-dg2-set2:     [SKIP][558] ([Intel XE#3414]) -> [SKIP][559] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-bmg:          [SKIP][560] ([Intel XE#2423]) -> [SKIP][561] ([Intel XE#2413])
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-bmg:          [SKIP][562] ([Intel XE#2413]) -> [SKIP][563] ([Intel XE#2423])
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-bmg:          [SKIP][564] ([Intel XE#2423]) -> [SKIP][565] ([Intel XE#1435])
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_vblank@query-idle:
    - shard-bmg:          [DMESG-FAIL][566] ([Intel XE#3468]) -> [SKIP][567] ([Intel XE#2423])
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_vblank@query-idle.html
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_vblank@query-idle.html

  * igt@kms_vblank@ts-continuation-modeset-rpm:
    - shard-dg2-set2:     [SKIP][568] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][569] ([Intel XE#3468])
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_vblank@ts-continuation-modeset-rpm.html
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_vblank@ts-continuation-modeset-rpm.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          [SKIP][570] ([Intel XE#2423]) -> [SKIP][571] ([Intel XE#1499]) +2 other tests skip
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_vrr@flip-basic.html
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2-set2:     [SKIP][572] ([Intel XE#2423] / [i915#2575]) -> [SKIP][573] ([Intel XE#455]) +9 other tests skip
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_vrr@flip-dpms.html
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][574] ([Intel XE#455]) -> [SKIP][575] ([Intel XE#2423] / [i915#2575]) +7 other tests skip
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_vrr@flipline.html
   [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_vrr@flipline.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          [SKIP][576] ([Intel XE#2168]) -> [SKIP][577] ([Intel XE#2423])
   [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_vrr@lobf.html
   [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_vrr@lobf.html
    - shard-dg2-set2:     [SKIP][578] ([Intel XE#2168]) -> [SKIP][579] ([Intel XE#2423] / [i915#2575])
   [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_vrr@lobf.html
   [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_vrr@lobf.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          [SKIP][580] ([Intel XE#1499]) -> [SKIP][581] ([Intel XE#2423]) +2 other tests skip
   [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_vrr@max-min.html
   [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_vrr@max-min.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2-set2:     [SKIP][582] ([Intel XE#756]) -> [SKIP][583] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html
   [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-bmg:          [SKIP][584] ([Intel XE#2423]) -> [SKIP][585] ([Intel XE#756])
   [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_writeback@writeback-invalid-parameters.html
   [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-bmg:          [SKIP][586] ([Intel XE#756]) -> [SKIP][587] ([Intel XE#2423])
   [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_writeback@writeback-pixel-formats.html
   [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2-set2:     [SKIP][588] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][589] ([Intel XE#2423] / [i915#2575])
   [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
    - shard-bmg:          [SKIP][590] ([Intel XE#2423]) -> [SKIP][591] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
   [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][592] ([Intel XE#1123]) -> [SKIP][593] ([Intel XE#1130])
   [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
   [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-dg2-set2:     [SKIP][594] ([Intel XE#1130]) -> [SKIP][595] ([Intel XE#1123])
   [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html
   [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-dg2-set2:     [SKIP][596] ([Intel XE#1130]) -> [SKIP][597] ([Intel XE#1126])
   [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html
   [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_eudebug@basic-client-th:
    - shard-dg2-set2:     [SKIP][598] ([Intel XE#2905]) -> [SKIP][599] ([Intel XE#1130]) +11 other tests skip
   [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_eudebug@basic-client-th.html
   [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_eudebug@basic-client-th.html

  * igt@xe_eudebug@basic-vm-access:
    - shard-dg2-set2:     [SKIP][600] ([Intel XE#1130]) -> [SKIP][601] ([Intel XE#2905]) +7 other tests skip
   [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_eudebug@basic-vm-access.html
   [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_eudebug@basic-vm-access.html

  * igt@xe_eudebug@basic-vm-access-userptr:
    - shard-bmg:          [SKIP][602] ([Intel XE#1130]) -> [SKIP][603] ([Intel XE#2905]) +9 other tests skip
   [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_eudebug@basic-vm-access-userptr.html
   [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_eudebug@basic-vm-access-userptr.html

  * igt@xe_eudebug@vm-bind-clear:
    - shard-bmg:          [SKIP][604] ([Intel XE#2905]) -> [SKIP][605] ([Intel XE#1130]) +11 other tests skip
   [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_eudebug@vm-bind-clear.html
   [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_eudebug@vm-bind-clear.html

  * igt@xe_evict@evict-large-cm:
    - shard-dg2-set2:     [SKIP][606] ([Intel XE#1130]) -> [DMESG-WARN][607] ([Intel XE#1727]) +2 other tests dmesg-warn
   [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_evict@evict-large-cm.html
   [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_evict@evict-large-cm.html

  * igt@xe_evict@evict-large-multi-vm-cm:
    - shard-bmg:          [DMESG-FAIL][608] ([Intel XE#3468]) -> [SKIP][609] ([Intel XE#1130])
   [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_evict@evict-large-multi-vm-cm.html
   [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-dg2-set2:     [SKIP][610] ([Intel XE#1130]) -> [TIMEOUT][611] ([Intel XE#1473])
   [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html
   [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_evict@evict-small-multi-vm-cm:
    - shard-bmg:          [SKIP][612] ([Intel XE#1130]) -> [DMESG-WARN][613] ([Intel XE#3468]) +2 other tests dmesg-warn
   [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_evict@evict-small-multi-vm-cm.html
   [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_evict@evict-small-multi-vm-cm.html

  * igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
    - shard-bmg:          [DMESG-WARN][614] ([Intel XE#3468]) -> [SKIP][615] ([Intel XE#1130]) +7 other tests skip
   [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
   [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html

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

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-bmg:          [SKIP][618] ([Intel XE#1130]) -> [SKIP][619] ([Intel XE#2322]) +11 other tests skip
   [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
   [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
    - shard-dg2-set2:     [SKIP][620] ([Intel XE#1130]) -> [SKIP][621] ([Intel XE#288]) +18 other tests skip
   [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
   [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][622] ([Intel XE#288]) -> [SKIP][623] ([Intel XE#1130]) +26 other tests skip
   [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
   [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-dg2-set2:     [SKIP][624] ([Intel XE#1130]) -> [SKIP][625] ([Intel XE#2360]) +1 other test skip
   [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
   [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
    - shard-bmg:          [SKIP][626] ([Intel XE#1130]) -> [DMESG-WARN][627] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
   [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
   [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
    - shard-bmg:          [SKIP][628] ([Intel XE#1130]) -> [DMESG-WARN][629] ([Intel XE#3343])
   [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
   [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html

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

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

  * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
    - shard-bmg:          [DMESG-FAIL][634] ([Intel XE#3467] / [Intel XE#3468]) -> [FAIL][635] ([Intel XE#3499])
   [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
   [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html

  * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
    - shard-bmg:          [FAIL][636] ([Intel XE#3499]) -> [DMESG-FAIL][637] ([Intel XE#3467] / [Intel XE#3468])
   [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
   [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html

  * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
    - shard-dg2-set2:     [DMESG-WARN][638] ([Intel XE#3467]) -> [SKIP][639] ([Intel XE#1130]) +1 other test skip
   [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
   [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html

  * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
    - shard-bmg:          [DMESG-WARN][640] ([Intel XE#3467] / [Intel XE#3468]) -> [SKIP][641] ([Intel XE#1130]) +1 other test skip
   [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
   [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html

  * igt@xe_media_fill@media-fill:
    - shard-bmg:          [SKIP][642] ([Intel XE#1130]) -> [SKIP][643] ([Intel XE#2459] / [Intel XE#2596])
   [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_media_fill@media-fill.html
   [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_media_fill@media-fill.html

  * igt@xe_module_load@reload-no-display:
    - shard-dg2-set2:     [DMESG-WARN][644] ([Intel XE#3467]) -> [FAIL][645] ([Intel XE#3546])
   [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_module_load@reload-no-display.html
   [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_module_load@reload-no-display.html

  * igt@xe_oa@closed-fd-and-unmapped-access:
    - shard-dg2-set2:     [SKIP][646] ([Intel XE#3573]) -> [SKIP][647] ([Intel XE#1130]) +7 other tests skip
   [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
   [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html

  * igt@xe_oa@mmio-triggered-reports:
    - shard-bmg:          [SKIP][648] ([Intel XE#1130]) -> [FAIL][649] ([Intel XE#2249])
   [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html
   [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_oa@mmio-triggered-reports.html

  * igt@xe_oa@syncs-userptr-wait-cfg:
    - shard-dg2-set2:     [SKIP][650] ([Intel XE#1130]) -> [SKIP][651] ([Intel XE#3573]) +7 other tests skip
   [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_oa@syncs-userptr-wait-cfg.html
   [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_oa@syncs-userptr-wait-cfg.html

  * igt@xe_pat@display-vs-wb-transient:
    - shard-dg2-set2:     [SKIP][652] ([Intel XE#1337]) -> [SKIP][653] ([Intel XE#1130])
   [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html
   [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-dg2-set2:     [SKIP][654] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][655] ([Intel XE#1130])
   [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_pat@pat-index-xehpc.html
   [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_peer2peer@read:
    - shard-dg2-set2:     [FAIL][656] ([Intel XE#1173]) -> [SKIP][657] ([Intel XE#1061])
   [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_peer2peer@read.html
   [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-bmg:          [SKIP][658] ([Intel XE#2284]) -> [SKIP][659] ([Intel XE#1130]) +2 other tests skip
   [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html
   [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@s2idle-exec-after:
    - shard-bmg:          [DMESG-WARN][660] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][661] ([Intel XE#1130])
   [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@xe_pm@s2idle-exec-after.html
   [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][662] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][663] ([Intel XE#1130]) +1 other test skip
   [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html
   [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pm@s4-basic:
    - shard-bmg:          [SKIP][664] ([Intel XE#1130]) -> [DMESG-WARN][665] ([Intel XE#1727] / [Intel XE#3468])
   [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_pm@s4-basic.html
   [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_pm@s4-basic.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-dg2-set2:     [SKIP][666] ([Intel XE#1130]) -> [DMESG-WARN][667] ([Intel XE#1727] / [Intel XE#3468])
   [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_pm@s4-d3hot-basic-exec.html
   [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_pm@s4-d3hot-basic-exec.html

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

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          [SKIP][670] ([Intel XE#944]) -> [SKIP][671] ([Intel XE#1130]) +3 other tests skip
   [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-bmg:          [SKIP][672] ([Intel XE#1130]) -> [SKIP][673] ([Intel XE#944]) +1 other test skip
   [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
   [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-dg2-set2:     [SKIP][674] ([Intel XE#1130]) -> [SKIP][675] ([Intel XE#944]) +3 other tests skip
   [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-huc.html
   [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          [SKIP][676] ([Intel XE#3342]) -> [SKIP][677] ([Intel XE#1130]) +1 other test skip
   [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html
   [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_tlb@basic-tlb:
    - shard-dg2-set2:     [FAIL][678] ([Intel XE#2922]) -> [SKIP][679] ([Intel XE#1130])
   [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_tlb@basic-tlb.html
   [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_tlb@basic-tlb.html

  * igt@xe_vm@munmap-style-unbind-userptr-all:
    - shard-bmg:          [SKIP][680] ([Intel XE#1130]) -> [DMESG-WARN][681] ([Intel XE#1727]) +1 other test dmesg-warn
   [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_vm@munmap-style-unbind-userptr-all.html
   [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_vm@munmap-style-unbind-userptr-all.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-bmg:          [ABORT][682] ([Intel XE#3421] / [Intel XE#3467]) -> [SKIP][683] ([Intel XE#1130])
   [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html
   [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html

  
  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
  [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
  [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
  [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#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323
  [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
  [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
  [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
  [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
  [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
  [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
  [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
  [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
  [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
  [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
  [Intel XE#3561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3561
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [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#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


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

  * IGT: IGT_8127 -> IGTPW_12207
  * Linux: xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198 -> xe-2285-4e5e3c93cf642f47374ed6e003f0a55b8af0f25b

  IGTPW_12207: 0bbedc56a0a00983d9d5b8e018fa6f18fbc4166d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198: 739a2506c44a0be22cc842d2c625a05ed21c1198
  xe-2285-4e5e3c93cf642f47374ed6e003f0a55b8af0f25b: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b

== Logs ==

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

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

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

* RE: ✗ Xe.CI.Full: failure for tests/intel/xe_exec_reset: Add mocs reset test (rev7)
  2024-11-27 16:50 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-11-28 11:26   ` Goyal, Nakshtra
  0 siblings, 0 replies; 5+ messages in thread
From: Goyal, Nakshtra @ 2024-11-28 11:26 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org

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

Hi ,
I am getting CI failures for this patch IGT - Patchwork<https://patchwork.freedesktop.org/series/140575/#rev7>, which are not related to the patch , here we added new subtest i.e gt-mocs-reset(xe_exec_reset.c) , in rev2 , it(test) was getting passed , CI.BAT also got passed, after that just changed few comment and description , nothing related to code or test , but still got error in CI.FULL for new test(1 test is skipped) in this rev. So we are going ahead with the merge.

Thanks
Nakshtra

From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Patchwork
Sent: 27 November 2024 22:20
To: janga.rahul.kumar@intel.com
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.Full: failure for tests/intel/xe_exec_reset: Add mocs reset test (rev7)

Patch Details
Series:
tests/intel/xe_exec_reset: Add mocs reset test (rev7)
URL:
https://patchwork.freedesktop.org/series/140575/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/index.html
CI Bug Log - changes from XEIGT_8127_full -> XEIGTPW_12207_full
Summary

FAILURE

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

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

Participating hosts (4 -> 4)

No changes in participating hosts

Possible new issues

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

IGT changes
Possible regressions

  *   igt@core_setmaster@master-drop-set-root:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@core_setmaster@master-drop-set-root.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@core_setmaster@master-drop-set-root.html>
  *   igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a6-dp4:
     *   shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a6-dp4.html>
  *   igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html>
  *   igt@kms_plane@plane-panning-bottom-right-suspend:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_plane@plane-panning-bottom-right-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_plane@plane-panning-bottom-right-suspend.html> +3 other tests dmesg-warn
  *   igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
     *   shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b.html> +1 other test dmesg-warn

Warnings

  *   igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html> +1 other test dmesg-warn
  *   igt@kms_flip@2x-plain-flip-fb-recreate:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_flip@2x-plain-flip-fb-recreate.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_flip@2x-plain-flip-fb-recreate.html>
  *   igt@xe_module_load@reload-no-display:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_module_load@reload-no-display.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_module_load@reload-no-display.html>

New tests

New tests have been introduced between XEIGT_8127_full and XEIGTPW_12207_full:

New IGT tests (1)

  *   igt@xe_exec_reset@gt-mocs-reset:
     *   Statuses : 2 pass(s) 1 skip(s)
     *   Exec time: [0.0, 0.06] s

Known issues

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

IGT changes
Issues hit

  *   igt@core_getclient:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@core_getclient.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@core_getclient.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@core_hotunplug@hotrebind:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@core_hotunplug@hotrebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@core_hotunplug@hotrebind.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@core_hotunplug@hotreplug-lateclose:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@core_hotunplug@hotreplug-lateclose.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>) +2 other tests skip
  *   igt@core_hotunplug@unplug-rescan:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@core_hotunplug@unplug-rescan.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@core_hotunplug@unplug-rescan.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>) +1 other test skip
  *   igt@core_setmaster@master-drop-set-shared-fd:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html> (Intel XE#3453<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453>)
  *   igt@core_setmaster@master-drop-set-user:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@core_setmaster@master-drop-set-user.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@core_setmaster@master-drop-set-user.html> (Intel XE#3339<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339>)
  *   igt@fbdev@read:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@fbdev@read.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@fbdev@read.html> (Intel XE#2134<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>)
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@fbdev@read.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@fbdev@read.html> (Intel XE#2134<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>) +1 other test skip
  *   igt@kms_addfb_basic@bad-pitch-128:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_addfb_basic@bad-pitch-128.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_addfb_basic@bad-pitch-128.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
  *   igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-fail
  *   igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +24 other tests dmesg-warn
  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3 other tests fail
  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html> (Intel XE#2550<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550>) +23 other tests skip
  *   igt@kms_atomic_transition@plane-all-transition@pipe-b-dp-2:
     *   shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_atomic_transition@plane-all-transition@pipe-b-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +7 other tests dmesg-warn
  *   igt@kms_big_fb@linear-16bpp-rotate-180:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_big_fb@linear-16bpp-rotate-180.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +23 other tests skip
  *   igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>)
  *   igt@kms_bw@linear-tiling-1-displays-1920x1080p:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
  *   igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +55 other tests skip
  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +15 other tests skip
  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html> (Intel XE#616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/616>) +7 other tests fail
  *   igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +7 other tests skip
  *   igt@kms_cdclk@mode-transition@pipe-c-dp-4:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html> (Intel XE#314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) +3 other tests skip
  *   igt@kms_chamelium_frames@hdmi-crc-single:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_chamelium_frames@hdmi-crc-single.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>)
  *   igt@kms_chamelium_hpd@vga-hpd:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +4 other tests skip
  *   igt@kms_content_protection@legacy:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_content_protection@legacy.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +2 other tests fail
  *   igt@kms_content_protection@legacy@pipe-a-dp-4:
     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_content_protection@legacy@pipe-a-dp-4.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>)
  *   igt@kms_content_protection@uevent@pipe-a-dp-4:
     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_content_protection@uevent@pipe-a-dp-4.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>)
  *   igt@kms_cursor_crc@cursor-onscreen-128x42:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>)
  *   igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html> (Intel XE#2932<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932>) +2 other tests dmesg-warn
  *   igt@kms_cursor_edge_walk@64x64-left-edge@pipe-a-dp-2:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_cursor_edge_walk@64x64-left-edge@pipe-a-dp-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_cursor_edge_walk@64x64-left-edge@pipe-a-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +7 other tests dmesg-fail
  *   igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +90 other tests skip
  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)
  *   igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html> (Intel XE#1340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340>)
  *   igt@kms_dsc@dsc-with-output-formats:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>)
  *   igt@kms_flip@flip-vs-expired-vblank@a-dp4:
     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321> / Intel XE#3487<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487>)
  *   igt@kms_flip@flip-vs-expired-vblank@c-dp4:
     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321> / Intel XE#3487<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487>) +1 other test fail
  *   igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6:
     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +4 other tests fail
  *   igt@kms_flip@flip-vs-suspend-interruptible:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>)
  *   igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html> (Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597> / Intel XE#2635<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635>)
  *   igt@kms_flip@plain-flip-ts-check@a-dp2:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_flip@plain-flip-ts-check@a-dp2.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +1 other test fail
  *   igt@kms_flip@wf_vblank-ts-check-interruptible:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>)
  *   igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +1 other test fail
  *   igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +2 other tests fail
  *   igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete
  *   igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +11 other tests skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>)
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +6 other tests skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip
  *   igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +19 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +2 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +24 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +2 other tests skip
  *   igt@kms_frontbuffer_tracking@pipe-fbc-rte:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +2 other tests fail
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +1 other test skip
  *   igt@kms_mmap_write_crc@main@pipe-a-dp-2:
     *   shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_mmap_write_crc@main@pipe-a-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-hdmi-a-3:
     *   shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-hdmi-a-3.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
  *   igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html> (Intel XE#361<https://gitlab.freedesktop.org/drm/xe/kernel/issues/361>)
  *   igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
     *   shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +5 other tests skip
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +11 other tests skip
  *   igt@kms_pm_dc@dc5-dpms:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>)
  *   igt@kms_pm_rpm@cursor-dpms:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_pm_rpm@cursor-dpms.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>)
  *   igt@kms_pm_rpm@legacy-planes@plane-50:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_pm_rpm@legacy-planes@plane-50.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_pm_rpm@legacy-planes@plane-50.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +6 other tests dmesg-warn
  *   igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) +4 other tests skip
  *   igt@kms_pm_rpm@universal-planes-dpms:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_pm_rpm@universal-planes-dpms.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) +2 other tests skip
  *   igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>)
  *   igt@kms_psr@psr2-no-drrs:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_psr@psr2-no-drrs.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +2 other tests skip
  *   igt@kms_sequence@get-idle:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_sequence@get-idle.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_sequence@get-idle.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +97 other tests skip
  *   igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6:
     *   shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +5 other tests dmesg-warn
  *   igt@kms_writeback@writeback-check-output:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_writeback@writeback-check-output.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +8 other tests skip
  *   igt@xe_eudebug_online@interrupt-other:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_eudebug_online@interrupt-other.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>)
  *   igt@xe_evict@evict-threads-large:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_evict@evict-threads-large.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_evict@evict-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@xe_exec_balancer@many-parallel-userptr-invalidate:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +11 other tests skip
  *   igt@xe_exec_basic@multigpu-no-exec-basic:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-basic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-basic.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +169 other tests skip
  *   igt@xe_exec_basic@multigpu-no-exec-userptr-rebind:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +1 other test skip
  *   igt@xe_exec_basic@twice-userptr-invalidate:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@xe_exec_basic@twice-userptr-invalidate.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +9 other tests skip
  *   igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +230 other tests skip
  *   igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
  *   igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
  *   igt@xe_live_ktest@xe_migrate:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_live_ktest@xe_migrate.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>)
  *   igt@xe_module_load@load:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_module_load@load.html> (Intel XE#2457<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>)
  *   igt@xe_oa@mmio-triggered-reports:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html> (Intel XE#2249<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249>)
  *   igt@xe_oa@mmio-triggered-reports@ccs-0:
     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@xe_oa@mmio-triggered-reports@ccs-0.html> (Intel XE#2249<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249>)
  *   igt@xe_oa@mmio-triggered-reports@rcs-0:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_oa@mmio-triggered-reports@rcs-0.html> (Intel XE#2249<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249>)
  *   igt@xe_pm@d3cold-mmap-vram:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@xe_pm@d3cold-mmap-vram.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>)
  *   igt@xe_pm@d3hot-basic:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_pm@d3hot-basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_pm@d3hot-basic.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@xe_pm@s2idle-multiple-execs:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_pm@s2idle-multiple-execs.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_pm@s2idle-multiple-execs.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@xe_pm@s4-d3cold-basic-exec:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_pm@s4-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)

Possible fixes

  *   igt@core_getversion@all-cards:
     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@core_getversion@all-cards.html> (Intel XE#3440<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@core_getversion@all-cards.html> +1 other test pass
  *   igt@core_hotunplug@hotunplug-rescan:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@core_hotunplug@hotunplug-rescan.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html> +1 other test pass
  *   igt@fbdev@unaligned-read:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@fbdev@unaligned-read.html> (Intel XE#2134<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@fbdev@unaligned-read.html>
  *   igt@kms_addfb_basic@bad-pitch-999:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-999.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_addfb_basic@bad-pitch-999.html> +104 other tests pass
  *   igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (Intel XE#1426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> +1 other test pass
  *   igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> +22 other tests pass
  *   igt@kms_cdclk@mode-transition:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_cdclk@mode-transition.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_cdclk@mode-transition.html> +22 other tests pass
  *   igt@kms_cursor_crc@cursor-suspend:
     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html> +1 other test pass
  *   igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html> +57 other tests pass
  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic:
     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> +2 other tests pass
  *   igt@kms_dp_aux_dev:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_dp_aux_dev.html> (Intel XE#3009<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_dp_aux_dev.html>
  *   igt@kms_draw_crc@fill-fb:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_draw_crc@fill-fb.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_draw_crc@fill-fb.html> +4 other tests pass
  *   igt@kms_fbcon_fbt@fbc-suspend:
     *   shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_fbcon_fbt@fbc-suspend.html>
  *   igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html> +26 other tests pass
  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> +3 other tests pass
  *   igt@kms_joiner@invalid-modeset-force-big-joiner:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (Intel XE#3012<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html>
  *   igt@kms_pm_rpm@cursor:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_pm_rpm@cursor.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_pm_rpm@cursor.html>
  *   igt@kms_pm_rpm@dpms-lpsp:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_pm_rpm@dpms-lpsp.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_pm_rpm@dpms-lpsp.html> +1 other test pass
  *   igt@kms_psr@fbc-psr2-cursor-render@edp-1:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html> +1 other test pass
  *   igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> +3 other tests pass
  *   igt@xe_evict@evict-beng-mixed-many-threads-small:
     *   shard-dg2-set2: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#402<https://gitlab.freedesktop.org/drm/xe/kernel/issues/402>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html>
  *   igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html> +102 other tests pass
  *   igt@xe_exec_balancer@twice-parallel-userptr-invalidate:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_exec_balancer@twice-parallel-userptr-invalidate.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_exec_balancer@twice-parallel-userptr-invalidate.html> +2 other tests pass
  *   igt@xe_exec_basic@many-bindexecqueue-rebind:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_exec_basic@many-bindexecqueue-rebind.html> +225 other tests pass
  *   igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html>
  *   igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html>
  *   igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html>
  *   igt@xe_live_ktest@xe_bo:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_live_ktest@xe_bo.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_live_ktest@xe_bo.html>
  *   igt@xe_module_load@reload:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_module_load@reload.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@xe_module_load@reload.html>
  *   igt@xe_module_load@unload:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_module_load@unload.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_module_load@unload.html> +1 other test pass
  *   igt@xe_pm@d3hot-mocs:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_pm@d3hot-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_pm@d3hot-mocs.html> +7 other tests pass
  *   igt@xe_pm_residency@gt-c6-freeze:
     *   shard-lnl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-8/igt@xe_pm_residency@gt-c6-freeze.html> (Intel XE#3088<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-lnl-5/igt@xe_pm_residency@gt-c6-freeze.html> +1 other test pass

Warnings

  *   igt@core_hotunplug@hotunplug-rescan:
     *   shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@core_hotunplug@hotunplug-rescan.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>)
  *   igt@fbdev@write:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@fbdev@write.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@fbdev@write.html> (Intel XE#2134<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>)
  *   igt@kms_3d:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_3d.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_3d.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#623<https://gitlab.freedesktop.org/drm/xe/kernel/issues/623>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
  *   igt@kms_async_flips@invalid-async-flip:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
  *   igt@kms_atomic@plane-primary-overlay-mutable-zpos:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (Intel XE#2385<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2613<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (Intel XE#2370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370>)
  *   igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (Intel XE#2370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_big_fb@4-tiled-16bpp-rotate-270:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>)
  *   igt@kms_big_fb@4-tiled-8bpp-rotate-270:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip
  *   igt@kms_big_fb@4-tiled-8bpp-rotate-90:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +1 other test skip
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_big_fb@linear-16bpp-rotate-270:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +3 other tests skip
  *   igt@kms_big_fb@linear-64bpp-rotate-270:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@linear-64bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_big_fb@linear-64bpp-rotate-270.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +4 other tests skip
  *   igt@kms_big_fb@x-tiled-64bpp-rotate-180:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_big_fb@x-tiled-64bpp-rotate-90:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip
  *   igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_big_fb@y-tiled-32bpp-rotate-0:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +3 other tests skip
  *   igt@kms_big_fb@y-tiled-32bpp-rotate-270:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +15 other tests skip
  *   igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>)
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>)
  *   igt@kms_big_fb@y-tiled-addfb-size-overflow:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip
  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +6 other tests skip
  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +9 other tests skip
  *   igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>)
  *   igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +5 other tests skip
  *   igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_big_fb@yf-tiled-addfb-size-overflow:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
  *   igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +3 other tests skip
  *   igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +1 other test skip
  *   igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>)
  *   igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
  *   igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
  *   igt@kms_bw@linear-tiling-2-displays-2560x1440p:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip
  *   igt@kms_bw@linear-tiling-3-displays-1920x1080p:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +1 other test skip
  *   igt@kms_bw@linear-tiling-4-displays-2160x1440p:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +3 other tests skip
  *   igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>)
  *   igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +15 other tests skip
  *   igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> (Intel XE#2907<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> (Intel XE#2907<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907>) +1 other test skip
  *   igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +4 other tests skip
  *   igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +6 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#3442<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +1 other test skip
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +2 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +14 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip
  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/616>)
  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +1 other test skip
  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +17 other tests skip
  *   igt@kms_chamelium_color@ctm-0-25:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_chamelium_color@ctm-0-25.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_chamelium_color@ctm-0-25.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>)
  *   igt@kms_chamelium_color@ctm-blue-to-red:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_chamelium_color@ctm-blue-to-red.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_chamelium_color@ctm-blue-to-red.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_chamelium_color@ctm-limited-range:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +1 other test skip
  *   igt@kms_chamelium_color@ctm-red-to-blue:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_chamelium_color@ctm-red-to-blue.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_chamelium_color@ctm-red-to-blue.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>)
  *   igt@kms_chamelium_edid@hdmi-edid-read:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_chamelium_edid@hdmi-edid-read.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-read.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +9 other tests skip
  *   igt@kms_chamelium_frames@hdmi-aspect-ratio:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +12 other tests skip
  *   igt@kms_chamelium_frames@vga-frame-dump:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_chamelium_frames@vga-frame-dump.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_chamelium_frames@vga-frame-dump.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +9 other tests skip
  *   igt@kms_chamelium_hpd@dp-hpd-after-suspend:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +15 other tests skip
  *   igt@kms_content_protection@content-type-change:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_content_protection@content-type-change.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_content_protection@content-type-change.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
  *   igt@kms_content_protection@dp-mst-lic-type-1:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-1.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-1.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390>) +1 other test skip
  *   igt@kms_content_protection@dp-mst-type-0:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) +2 other tests skip
  *   igt@kms_content_protection@dp-mst-type-1:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
  *   igt@kms_content_protection@legacy:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_content_protection@legacy.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_content_protection@legacy.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>)
  *   igt@kms_content_protection@lic-type-0:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_content_protection@lic-type-0.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_content_protection@lic-type-0.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +1 other test skip
  *   igt@kms_content_protection@srm:
     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_content_protection@srm.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_content_protection@srm.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_content_protection@srm.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_content_protection@srm.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>)
  *   igt@kms_content_protection@uevent:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_content_protection@uevent.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_content_protection@uevent.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>)
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_content_protection@uevent.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_content_protection@uevent.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_cursor_crc@cursor-offscreen-512x512:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) +1 other test skip
  *   igt@kms_cursor_crc@cursor-onscreen-512x170:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +4 other tests skip
  *   igt@kms_cursor_crc@cursor-onscreen-512x512:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +2 other tests skip
  *   igt@kms_cursor_crc@cursor-onscreen-max-size:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +5 other tests skip
  *   igt@kms_cursor_crc@cursor-sliding-256x85:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-256x85.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x85.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +3 other tests skip
  *   igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3226<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226>)
  *   igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +1 other test skip
  *   igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
  *   igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) +1 other test dmesg-warn
  *   igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +2 other tests skip
  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
  *   igt@kms_display_modes@mst-extended-mode-negative:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_display_modes@mst-extended-mode-negative.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_display_modes@mst-extended-mode-negative.html> (Intel XE#2323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323>)
  *   igt@kms_dsc@dsc-with-bpc-formats:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_dsc@dsc-with-bpc-formats.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-formats.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +4 other tests skip
  *   igt@kms_dsc@dsc-with-formats:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_dsc@dsc-with-formats.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_dsc@dsc-with-formats.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip
  *   igt@kms_fbcon_fbt@fbc:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html> (Intel XE#1695<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_fbcon_fbt@fbc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_fbcon_fbt@psr-suspend:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>)
  *   igt@kms_feature_discovery@chamelium:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_feature_discovery@chamelium.html> (Intel XE#701<https://gitlab.freedesktop.org/drm/xe/kernel/issues/701>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_feature_discovery@chamelium.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
  *   igt@kms_feature_discovery@psr2:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_feature_discovery@psr2.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_feature_discovery@psr2.html> (Intel XE#1135<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135>)
  *   igt@kms_flip@2x-flip-vs-expired-vblank:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
  *   igt@kms_flip@2x-flip-vs-panning:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +1 other test skip
  *   igt@kms_flip@2x-flip-vs-panning-interruptible:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-interruptible.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_flip@2x-flip-vs-suspend:
     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3561<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3561>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_flip@flip-vs-expired-vblank:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>)
  *   igt@kms_flip@flip-vs-expired-vblank-interruptible:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +1 other test fail
  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +2 other tests skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +3 other tests skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +2 other tests skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +5 other tests skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +4 other tests skip
  *   igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>)
  *   igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +22 other tests skip
  *   igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +40 other tests skip
  *   igt@kms_frontbuffer_tracking@drrs-suspend:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +10 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-fail
  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +14 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-1p-rte:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-fail
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +2 other tests fail
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>)
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +10 other tests fail
  *   igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>)
  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +9 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +42 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +5 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +15 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> (Intel XE#2352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352>) +1 other test skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +27 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +3 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +6 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>)
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +40 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +6 other tests skip
  *   igt@kms_frontbuffer_tracking@plane-fbc-rte:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html> (Intel XE#1158<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158>)
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +40 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +4 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +20 other tests skip
  *   igt@kms_getfb@getfb-reject-ccs:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#2502<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502>)
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#605<https://gitlab.freedesktop.org/drm/xe/kernel/issues/605>)
  *   igt@kms_getfb@getfb2-accept-ccs:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_joiner@basic-big-joiner:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_joiner@basic-force-ultra-joiner:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2925<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_joiner@invalid-modeset-big-joiner:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#2501<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_plane@pixel-format-source-clamping:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_plane_lowres@tiling-x:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_plane_lowres@tiling-x.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_plane_lowres@tiling-x.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_plane_scaling@intel-max-src-size:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html> (Intel XE#361<https://gitlab.freedesktop.org/drm/xe/kernel/issues/361>)
  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +6 other tests skip
  *   igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
  *   igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
     *   shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +2 other tests skip
  *   igt@kms_pm_backlight@brightness-with-dpms:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html> (Intel XE#2938<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_pm_backlight@fade-with-suspend:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +3 other tests skip
  *   igt@kms_pm_dc@dc3co-vpb-simulation:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#1122<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>)
  *   igt@kms_pm_dc@dc6-dpms:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#908<https://gitlab.freedesktop.org/drm/xe/kernel/issues/908>)
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_pm_dc@dc6-psr:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_pm_dc@dc6-psr.html> (Intel XE#2392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392>)
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html> (Intel XE#1129<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129>)
  *   igt@kms_pm_rpm@legacy-planes-dpms:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_pm_rpm@legacy-planes-dpms.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_pm_rpm@modeset-non-lpsp:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_pm_rpm@modeset-non-lpsp.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>)
  *   igt@kms_pm_rpm@modeset-stress-extra-wait:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_pm_rpm@modeset-stress-extra-wait.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_properties@connector-properties-legacy:
     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_properties@connector-properties-legacy.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_properties@connector-properties-legacy.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +12 other tests skip
  *   igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +5 other tests skip
  *   igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +8 other tests skip
  *   igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +8 other tests skip
  *   igt@kms_psr2_su@page_flip-nv12:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1122<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
  *   igt@kms_psr2_su@page_flip-xrgb8888:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_psr2_su@page_flip-xrgb8888.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387>)
  *   igt@kms_psr@fbc-pr-cursor-blt:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_psr@fbc-pr-cursor-blt.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_psr@fbc-pr-cursor-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +20 other tests skip
  *   igt@kms_psr@fbc-pr-no-drrs:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_psr@fbc-pr-no-drrs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_psr@fbc-pr-no-drrs.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +4 other tests skip
  *   igt@kms_psr@fbc-psr2-cursor-render:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +19 other tests skip
  *   igt@kms_psr@fbc-psr2-dpms:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_psr@fbc-psr2-dpms.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_psr@fbc-psr2-dpms.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +10 other tests skip
  *   igt@kms_psr@fbc-psr2-sprite-plane-move:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +9 other tests skip
  *   igt@kms_psr@psr-dpms:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_psr@psr-dpms.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_psr@psr-dpms.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +6 other tests skip
  *   igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (Intel XE#2414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414>)
  *   igt@kms_rotation_crc@bad-pixel-format:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +2 other tests skip
  *   igt@kms_rotation_crc@primary-rotation-270:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-270.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +1 other test skip
  *   igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> (Intel XE#2330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330>)
  *   igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) +1 other test skip
  *   igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +2 other tests skip
  *   igt@kms_scaling_modes@scaling-mode-center:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html> (Intel XE#2413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413>)
  *   igt@kms_scaling_modes@scaling-mode-full-aspect:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (Intel XE#2413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_setmode@invalid-clone-exclusive-crtc:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
  *   igt@kms_vblank@query-idle:
     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_vblank@query-idle.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_vblank@query-idle.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@kms_vblank@ts-continuation-modeset-rpm:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_vblank@ts-continuation-modeset-rpm.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_vblank@ts-continuation-modeset-rpm.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_vrr@flip-basic:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_vrr@flip-basic.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@kms_vrr@flip-basic.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +2 other tests skip
  *   igt@kms_vrr@flip-dpms:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_vrr@flip-dpms.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@kms_vrr@flip-dpms.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +9 other tests skip
  *   igt@kms_vrr@flipline:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_vrr@flipline.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_vrr@flipline.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +7 other tests skip
  *   igt@kms_vrr@lobf:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_vrr@lobf.html> (Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_vrr@lobf.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_vrr@lobf.html> (Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_vrr@lobf.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
  *   igt@kms_vrr@max-min:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_vrr@max-min.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_vrr@max-min.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) +2 other tests skip
  *   igt@kms_writeback@writeback-fb-id:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +1 other test skip
  *   igt@kms_writeback@writeback-invalid-parameters:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
  *   igt@kms_writeback@writeback-pixel-formats:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_writeback@writeback-pixel-formats.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
  *   igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) +1 other test skip
  *   igt@xe_copy_basic@mem-copy-linear-0x3fff:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html> (Intel XE#1123<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
  *   igt@xe_copy_basic@mem-copy-linear-0xfd:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfd.html> (Intel XE#1123<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123>)
  *   igt@xe_copy_basic@mem-set-linear-0xfd:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfd.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126>)
  *   igt@xe_eudebug@basic-client-th:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_eudebug@basic-client-th.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_eudebug@basic-client-th.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +11 other tests skip
  *   igt@xe_eudebug@basic-vm-access:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_eudebug@basic-vm-access.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_eudebug@basic-vm-access.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +7 other tests skip
  *   igt@xe_eudebug@basic-vm-access-userptr:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_eudebug@basic-vm-access-userptr.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_eudebug@basic-vm-access-userptr.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +9 other tests skip
  *   igt@xe_eudebug@vm-bind-clear:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_eudebug@vm-bind-clear.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_eudebug@vm-bind-clear.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +11 other tests skip
  *   igt@xe_evict@evict-large-cm:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_evict@evict-large-cm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_evict@evict-large-cm.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +2 other tests dmesg-warn
  *   igt@xe_evict@evict-large-multi-vm-cm:
     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_evict@evict-large-multi-vm-cm.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
  *   igt@xe_evict@evict-mixed-many-threads-large:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
  *   igt@xe_evict@evict-small-multi-vm-cm:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_evict@evict-small-multi-vm-cm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_evict@evict-small-multi-vm-cm.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-warn
  *   igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +7 other tests skip
  *   igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +12 other tests skip
  *   igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +11 other tests skip
  *   igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +18 other tests skip
  *   igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +26 other tests skip
  *   igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html> (Intel XE#2360<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360>) +1 other test skip
  *   igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn
  *   igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>)
  *   igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>)
  *   igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#3499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499>)
  *   igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html> (Intel XE#3499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499>)
  *   igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html> (Intel XE#3499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
     *   shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test skip
  *   igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test skip
  *   igt@xe_media_fill@media-fill:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_media_fill@media-fill.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_media_fill@media-fill.html> (Intel XE#2459<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459> / Intel XE#2596<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596>)
  *   igt@xe_module_load@reload-no-display:
     *   shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_module_load@reload-no-display.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_module_load@reload-no-display.html> (Intel XE#3546<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546>)
  *   igt@xe_oa@closed-fd-and-unmapped-access:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html> (Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +7 other tests skip
  *   igt@xe_oa@mmio-triggered-reports:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_oa@mmio-triggered-reports.html> (Intel XE#2249<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249>)
  *   igt@xe_oa@syncs-userptr-wait-cfg:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_oa@syncs-userptr-wait-cfg.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_oa@syncs-userptr-wait-cfg.html> (Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) +7 other tests skip
  *   igt@xe_pat@display-vs-wb-transient:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html> (Intel XE#1337<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
  *   igt@xe_pat@pat-index-xehpc:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_pat@pat-index-xehpc.html> (Intel XE#2838<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838> / Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
  *   igt@xe_peer2peer@read:
     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_peer2peer@read.html> (Intel XE#1173<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_peer2peer@read.html> (Intel XE#1061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061>)
  *   igt@xe_pm@d3cold-multiple-execs:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +2 other tests skip
  *   igt@xe_pm@s2idle-exec-after:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@xe_pm@s2idle-exec-after.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
  *   igt@xe_pm@s3-d3cold-basic-exec:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test skip
  *   igt@xe_pm@s4-basic:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_pm@s4-basic.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_pm@s4-basic.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@xe_pm@s4-d3hot-basic-exec:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_pm@s4-d3hot-basic-exec.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_pm@s4-d3hot-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@xe_query@multigpu-query-engines:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_query@multigpu-query-engines.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_query@multigpu-query-engines.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +3 other tests skip
  *   igt@xe_query@multigpu-query-invalid-cs-cycles:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +3 other tests skip
  *   igt@xe_query@multigpu-query-topology-l3-bank-mask:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-2/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 other test skip
  *   igt@xe_query@multigpu-query-uc-fw-version-huc:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-huc.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-huc.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip
  *   igt@xe_sriov_flr@flr-vf1-clear:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test skip
  *   igt@xe_tlb@basic-tlb:
     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_tlb@basic-tlb.html> (Intel XE#2922<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-dg2-466/igt@xe_tlb@basic-tlb.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
  *   igt@xe_vm@munmap-style-unbind-userptr-all:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_vm@munmap-style-unbind-userptr-all.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-5/igt@xe_vm@munmap-style-unbind-userptr-all.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +1 other test dmesg-warn
  *   igt@xe_wedged@wedged-at-any-timeout:
     *   shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html> (Intel XE#3421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421> / Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12207/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)

Build changes

  *   IGT: IGT_8127 -> IGTPW_12207
  *   Linux: xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198 -> xe-2285-4e5e3c93cf642f47374ed6e003f0a55b8af0f25b

IGTPW_12207: 0bbedc56a0a00983d9d5b8e018fa6f18fbc4166d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198: 739a2506c44a0be22cc842d2c625a05ed21c1198
xe-2285-4e5e3c93cf642f47374ed6e003f0a55b8af0f25b: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b

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

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

end of thread, other threads:[~2024-11-28 11:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-27 10:38 [PATCH v7 i-g-t] tests/intel/xe_exec_reset: Add mocs reset test nakshtra.goyal
2024-11-27 13:25 ` ✗ i915.CI.BAT: failure for tests/intel/xe_exec_reset: Add mocs reset test (rev7) Patchwork
2024-11-27 13:28 ` ✓ Xe.CI.BAT: success " Patchwork
2024-11-27 16:50 ` ✗ Xe.CI.Full: failure " Patchwork
2024-11-28 11:26   ` Goyal, Nakshtra

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