Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [i-g-t 0/2] Clear all KMS properties on reset
@ 2024-08-13 13:15 Bhanuprakash Modem
  2024-08-13 13:15 ` [i-g-t 1/2] lib/igt_kms: Clear all pipe " Bhanuprakash Modem
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-08-13 13:15 UTC (permalink / raw)
  To: igt-dev; +Cc: Bhanuprakash Modem

Just to sanitize all properties we should clear all
KMS (connector/crtc/plane) properties on reset.

Bhanuprakash Modem (2):
  lib/igt_kms: Clear all pipe properties on reset
  lib/igt_kms: Clear all connector properties on reset

 lib/igt_kms.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

-- 
2.43.2


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

* [i-g-t 1/2] lib/igt_kms: Clear all pipe properties on reset
  2024-08-13 13:15 [i-g-t 0/2] Clear all KMS properties on reset Bhanuprakash Modem
@ 2024-08-13 13:15 ` Bhanuprakash Modem
  2024-08-13 13:15 ` [i-g-t 2/2] lib/igt_kms: Clear all connector " Bhanuprakash Modem
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-08-13 13:15 UTC (permalink / raw)
  To: igt-dev; +Cc: Bhanuprakash Modem

Just to sanitize all properties we should clear all
pipe properties on reset.

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 lib/igt_kms.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index e030b35a6..f5fc9ada1 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -2562,6 +2562,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
 	if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
 		igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
 
+	if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_VRR_ENABLED))
+		igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_VRR_ENABLED, 0);
+
 	pipe->out_fence_fd = -1;
 }
 
-- 
2.43.2


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

* [i-g-t 2/2] lib/igt_kms: Clear all connector properties on reset
  2024-08-13 13:15 [i-g-t 0/2] Clear all KMS properties on reset Bhanuprakash Modem
  2024-08-13 13:15 ` [i-g-t 1/2] lib/igt_kms: Clear all pipe " Bhanuprakash Modem
@ 2024-08-13 13:15 ` Bhanuprakash Modem
  2024-08-13 15:26 ` ✗ CI.xeBAT: failure for Clear all KMS " Patchwork
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-08-13 13:15 UTC (permalink / raw)
  To: igt-dev; +Cc: Bhanuprakash Modem

Just to sanitize all properties we should clear all
connector properties on reset.

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 lib/igt_kms.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index f5fc9ada1..f52b35a72 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -2575,6 +2575,7 @@ static void igt_output_reset(igt_output_t *output)
 	memset(&output->override_mode, 0, sizeof(output->override_mode));
 
 	igt_output_set_prop_value(output, IGT_CONNECTOR_CRTC_ID, 0);
+	igt_output_set_prop_value(output, IGT_CONNECTOR_DPMS, DRM_MODE_DPMS_OFF);
 
 	if (igt_output_has_prop(output, IGT_CONNECTOR_BROADCAST_RGB))
 		igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB,
@@ -2597,6 +2598,13 @@ static void igt_output_reset(igt_output_t *output)
 	if (igt_output_has_prop(output, IGT_CONNECTOR_DITHERING_MODE))
 		igt_output_set_prop_enum(output, IGT_CONNECTOR_DITHERING_MODE,
 					 "off");
+
+	if (igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE))
+		igt_output_set_prop_value(output, IGT_CONNECTOR_SCALING_MODE,
+					  DRM_MODE_SCALE_NONE);
+
+	if (igt_output_has_prop(output, IGT_CONNECTOR_MAX_BPC))
+		igt_output_set_prop_value(output, IGT_CONNECTOR_MAX_BPC, 12);
 }
 
 /**
-- 
2.43.2


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

* ✗ CI.xeBAT: failure for Clear all KMS properties on reset
  2024-08-13 13:15 [i-g-t 0/2] Clear all KMS properties on reset Bhanuprakash Modem
  2024-08-13 13:15 ` [i-g-t 1/2] lib/igt_kms: Clear all pipe " Bhanuprakash Modem
  2024-08-13 13:15 ` [i-g-t 2/2] lib/igt_kms: Clear all connector " Bhanuprakash Modem
@ 2024-08-13 15:26 ` Patchwork
  2024-08-13 15:38 ` ✗ Fi.CI.BAT: " Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-08-13 15:26 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Clear all KMS properties on reset
URL   : https://patchwork.freedesktop.org/series/137236/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_7967_BAT -> XEIGTPW_11568_BAT
====================================================

Summary
-------

  **FAILURE**

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
    - bat-lnl-1:          [PASS][1] -> [FAIL][2] +40 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-3:
    - bat-dg2-oem2:       [PASS][3] -> [FAIL][4] +41 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-3.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-3.html

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-3:
    - bat-bmg-1:          [PASS][5] -> [FAIL][6] +41 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-bmg-1/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-3.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-bmg-1/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-3.html

  * igt@kms_psr@psr-cursor-plane-move:
    - bat-adlp-7:         [PASS][7] -> [FAIL][8] +47 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html

  * igt@xe_live_ktest@xe_bo:
    - bat-lnl-1:          [PASS][9] -> [SKIP][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
    - bat-lnl-2:          [PASS][11] -> [SKIP][12]
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-lnl-2/igt@xe_live_ktest@xe_bo.html

  
#### Warnings ####

  * igt@kms_frontbuffer_tracking@basic:
    - bat-adlp-7:         [DMESG-FAIL][13] ([Intel XE#324]) -> [FAIL][14]
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@invalid-set-prop-any:
    - bat-bmg-1:          [PASS][15] -> [DMESG-WARN][16] ([Intel XE#877])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-bmg-1/igt@kms_addfb_basic@invalid-set-prop-any.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-bmg-1/igt@kms_addfb_basic@invalid-set-prop-any.html

  * igt@kms_flip@basic-plain-flip:
    - bat-bmg-1:          [PASS][17] -> [SKIP][18] ([Intel XE#2482])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-bmg-1/igt@kms_flip@basic-plain-flip.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-bmg-1/igt@kms_flip@basic-plain-flip.html

  * igt@xe_exec_reset@cm-close-fd-no-exec:
    - bat-lnl-1:          [PASS][19] -> [FAIL][20] ([Intel XE#1069])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-1/igt@xe_exec_reset@cm-close-fd-no-exec.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-lnl-1/igt@xe_exec_reset@cm-close-fd-no-exec.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - bat-lnl-1:          [PASS][21] -> [SKIP][22] ([Intel XE#2229])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-lnl-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
    - bat-lnl-2:          [PASS][23] -> [SKIP][24] ([Intel XE#2229])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-lnl-1:          [FAIL][25] ([Intel XE#886]) -> [PASS][26] +1 other test pass
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html

  
  [Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886


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

  * IGT: IGT_7967 -> IGTPW_11568
  * Linux: xe-1756-bb06cec392c188bc980be5cee9a85240ce866b78 -> xe-1759-924db73e261b7bfd4b70b14db61197f48bf09426

  IGTPW_11568: 11568
  IGT_7967: 290bdef9033c8b185922f02cd05d62fcc0091c15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1756-bb06cec392c188bc980be5cee9a85240ce866b78: bb06cec392c188bc980be5cee9a85240ce866b78
  xe-1759-924db73e261b7bfd4b70b14db61197f48bf09426: 924db73e261b7bfd4b70b14db61197f48bf09426

== Logs ==

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

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

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

* ✗ Fi.CI.BAT: failure for Clear all KMS properties on reset
  2024-08-13 13:15 [i-g-t 0/2] Clear all KMS properties on reset Bhanuprakash Modem
                   ` (2 preceding siblings ...)
  2024-08-13 15:26 ` ✗ CI.xeBAT: failure for Clear all KMS " Patchwork
@ 2024-08-13 15:38 ` Patchwork
  2024-08-13 17:54 ` ✗ CI.xeFULL: " Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-08-13 15:38 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Clear all KMS properties on reset
URL   : https://patchwork.freedesktop.org/series/137236/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15224 -> IGTPW_11568
====================================================

Summary
-------

  **FAILURE**

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

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

  Additional (2): bat-kbl-2 bat-dg2-11 
  Missing    (3): bat-arlh-2 bat-arls-2 fi-kbl-8809g 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_busy@basic@flip:
    - fi-kbl-7567u:       [PASS][1] -> [FAIL][2] +28 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-kbl-7567u/igt@kms_busy@basic@flip.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-kbl-7567u/igt@kms_busy@basic@flip.html
    - fi-cfl-8700k:       [PASS][3] -> [FAIL][4] +28 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-cfl-8700k/igt@kms_busy@basic@flip.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-cfl-8700k/igt@kms_busy@basic@flip.html
    - bat-twl-1:          [PASS][5] -> [FAIL][6] +34 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-twl-1/igt@kms_busy@basic@flip.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-twl-1/igt@kms_busy@basic@flip.html

  * igt@kms_chamelium_hpd@hdmi-hpd-fast:
    - bat-dg2-13:         [PASS][7] -> [FAIL][8] +3 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-dg2-13/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-13/igt@kms_chamelium_hpd@hdmi-hpd-fast.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - fi-bsw-n3050:       [PASS][9] -> [FAIL][10] +17 other tests fail
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-bsw-n3050/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-bsw-n3050/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
    - bat-adlp-6:         [PASS][11] -> [FAIL][12] +41 other tests fail
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-adlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-adlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
    - bat-rplp-1:         [PASS][13] -> [FAIL][14] +36 other tests fail
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-rplp-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-rplp-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
    - fi-glk-j4005:       [PASS][15] -> [FAIL][16] +29 other tests fail
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-glk-j4005/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-glk-j4005/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
    - bat-mtlp-8:         [PASS][17] -> [FAIL][18] +40 other tests fail
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-mtlp-8/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-mtlp-8/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
    - fi-elk-e7500:       [PASS][19] -> [FAIL][20] +22 other tests fail
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-elk-e7500/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-elk-e7500/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2:
    - bat-dg2-11:         NOTRUN -> [FAIL][21] +27 other tests fail
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-1:
    - bat-dg2-8:          [PASS][22] -> [FAIL][23] +36 other tests fail
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-dg2-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-1.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-1.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-hdmi-a-2:
    - bat-dg2-14:         [PASS][24] -> [FAIL][25] +36 other tests fail
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-dg2-14/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-hdmi-a-2.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-14/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-1:
    - bat-adlp-9:         [PASS][26] -> [FAIL][27] +36 other tests fail
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-adlp-9/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-1.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-adlp-9/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-1.html
    - bat-apl-1:          [PASS][28] -> [FAIL][29] +4 other tests fail
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-apl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-1.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-apl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-1.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-2:
    - bat-arls-1:         [PASS][30] -> [FAIL][31] +36 other tests fail
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-arls-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-2.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-arls-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-2:
    - fi-cfl-8109u:       [PASS][32] -> [FAIL][33] +28 other tests fail
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-2.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-2.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-hdmi-a-1:
    - fi-cfl-guc:         [PASS][34] -> [FAIL][35] +28 other tests fail
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-cfl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-hdmi-a-1.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-cfl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-hdmi-a-1.html

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-1:
    - fi-tgl-1115g4:      [PASS][36] -> [FAIL][37] +36 other tests fail
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-tgl-1115g4/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-1.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-tgl-1115g4/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-1:
    - bat-adls-6:         [PASS][38] -> [FAIL][39] +36 other tests fail
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-adls-6/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-1.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-adls-6/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-1.html

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-2:
    - bat-dg1-7:          [PASS][40] -> [FAIL][41] +36 other tests fail
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-dg1-7/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-2.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg1-7/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-vga-1:
    - fi-ivb-3770:        [PASS][42] -> [FAIL][43] +28 other tests fail
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-ivb-3770/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-vga-1.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-ivb-3770/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-vga-1.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-3:
    - bat-arls-5:         [PASS][44] -> [FAIL][45] +33 other tests fail
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-3.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-3.html

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-vga-1:
    - fi-pnv-d510:        [PASS][46] -> [FAIL][47] +17 other tests fail
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-pnv-d510/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-vga-1.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-pnv-d510/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-vga-1.html

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-3:
    - bat-arls-5:         NOTRUN -> [FAIL][48] +2 other tests fail
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-3.html

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-2:
    - bat-rpls-4:         [PASS][49] -> [FAIL][50] +36 other tests fail
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-rpls-4/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-2.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-rpls-4/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1:
    - bat-twl-2:          [PASS][51] -> [FAIL][52] +34 other tests fail
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-twl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-twl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-vga-1:
    - fi-blb-e6850:       [PASS][53] -> [FAIL][54] +17 other tests fail
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-blb-e6850/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-vga-1.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-blb-e6850/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-vga-1.html

  * igt@kms_pipe_crc_basic@read-crc@pipe-a-hdmi-a-1:
    - fi-rkl-11600:       [PASS][55] -> [FAIL][56] +29 other tests fail
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-rkl-11600/igt@kms_pipe_crc_basic@read-crc@pipe-a-hdmi-a-1.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-rkl-11600/igt@kms_pipe_crc_basic@read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_pipe_crc_basic@read-crc@pipe-a-vga-1:
    - fi-ilk-650:         [PASS][57] -> [FAIL][58] +22 other tests fail
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-ilk-650/igt@kms_pipe_crc_basic@read-crc@pipe-a-vga-1.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-ilk-650/igt@kms_pipe_crc_basic@read-crc@pipe-a-vga-1.html

  * igt@kms_pipe_crc_basic@read-crc@pipe-b-edp-1:
    - bat-jsl-1:          [PASS][59] -> [FAIL][60] +34 other tests fail
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-jsl-1/igt@kms_pipe_crc_basic@read-crc@pipe-b-edp-1.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-jsl-1/igt@kms_pipe_crc_basic@read-crc@pipe-b-edp-1.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-adlp-6:         NOTRUN -> [INCOMPLETE][61]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-adlp-6/igt@kms_pm_backlight@basic-brightness.html
    - bat-twl-2:          NOTRUN -> [INCOMPLETE][62]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-twl-2/igt@kms_pm_backlight@basic-brightness.html
    - bat-twl-1:          NOTRUN -> [INCOMPLETE][63]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-twl-1/igt@kms_pm_backlight@basic-brightness.html
    - bat-rplp-1:         NOTRUN -> [INCOMPLETE][64]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-rplp-1/igt@kms_pm_backlight@basic-brightness.html
    - bat-mtlp-8:         NOTRUN -> [INCOMPLETE][65]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-mtlp-8/igt@kms_pm_backlight@basic-brightness.html
    - bat-jsl-1:          NOTRUN -> [INCOMPLETE][66]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-jsl-1/igt@kms_pm_backlight@basic-brightness.html

  
#### Warnings ####

  * igt@kms_busy@basic@flip:
    - bat-apl-1:          [DMESG-WARN][67] ([i915#180] / [i915#1982]) -> [FAIL][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-apl-1/igt@kms_busy@basic@flip.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-apl-1/igt@kms_busy@basic@flip.html

  * igt@kms_chamelium_hpd@dp-hpd-fast:
    - bat-dg2-13:         [SKIP][69] ([Intel XE#484]) -> [FAIL][70] +2 other tests fail
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-dg2-13/igt@kms_chamelium_hpd@dp-hpd-fast.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-13/igt@kms_chamelium_hpd@dp-hpd-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - bat-dg2-13:         [SKIP][71] ([Intel XE#484] / [i915#4550]) -> [FAIL][72] +1 other test fail
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-dg2-13/igt@kms_chamelium_hpd@vga-hpd-fast.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-13/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-elk-e7500:       [SKIP][73] -> [FAIL][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/fi-elk-e7500/igt@kms_frontbuffer_tracking@basic.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/fi-elk-e7500/igt@kms_frontbuffer_tracking@basic.html
    - bat-apl-1:          [DMESG-WARN][75] ([i915#11621]) -> [FAIL][76]
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-apl-1/igt@kms_frontbuffer_tracking@basic.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-apl-1/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1:
    - bat-apl-1:          [DMESG-WARN][77] ([i915#11888] / [i915#180]) -> [FAIL][78] +19 other tests fail
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1.html

  * igt@kms_psr@psr-primary-mmap-gtt@edp-1:
    - bat-mtlp-8:         [SKIP][79] ([i915#4077] / [i915#9688]) -> [FAIL][80]
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@info:
    - bat-kbl-2:          NOTRUN -> [SKIP][81] ([i915#1849])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-kbl-2/igt@fbdev@info.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-kbl-2:          NOTRUN -> [SKIP][82] +39 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_mmap@basic:
    - bat-dg2-11:         NOTRUN -> [SKIP][83] ([i915#4083])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@gem_mmap@basic.html

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

  * igt@gem_tiled_pread_basic:
    - bat-dg2-11:         NOTRUN -> [SKIP][85] ([i915#4079]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@gem_tiled_pread_basic.html

  * igt@i915_module_load@load:
    - bat-dg2-9:          [PASS][86] -> [DMESG-WARN][87] ([i915#11548])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-dg2-9/igt@i915_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-9/igt@i915_module_load@load.html

  * igt@i915_pm_rps@basic-api:
    - bat-dg2-11:         NOTRUN -> [SKIP][88] ([i915#11681] / [i915#6621])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@i915_pm_rps@basic-api.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - bat-dg2-11:         NOTRUN -> [SKIP][89] ([i915#4212]) +7 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-dg2-11:         NOTRUN -> [SKIP][90] ([i915#5190])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

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

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - bat-dg2-11:         NOTRUN -> [SKIP][92] ([i915#4103] / [i915#4213]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

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

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-dg2-11:         NOTRUN -> [SKIP][94]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - bat-dg2-11:         NOTRUN -> [SKIP][95] ([i915#5274])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_pipe_crc_basic@read-crc:
    - bat-dg2-11:         NOTRUN -> [SKIP][96] ([i915#9197]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-dg2-11:         NOTRUN -> [SKIP][97] ([i915#5354])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - bat-dg2-11:         NOTRUN -> [SKIP][98] ([i915#1072] / [i915#9732]) +3 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-dg2-11:         NOTRUN -> [SKIP][99] ([i915#3555])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html

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

  * igt@prime_vgem@basic-fence-mmap:
    - bat-dg2-11:         NOTRUN -> [SKIP][101] ([i915#3708] / [i915#4077]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-read:
    - bat-dg2-11:         NOTRUN -> [SKIP][102] ([i915#3291] / [i915#3708]) +2 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-dg2-11/igt@prime_vgem@basic-read.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-apl-1:          [DMESG-WARN][103] ([i915#180] / [i915#1982]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-apl-1/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_module_load@reload:
    - bat-apl-1:          [DMESG-WARN][105] ([i915#180]) -> [PASS][106] +1 other test pass
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-apl-1/igt@i915_module_load@reload.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-apl-1/igt@i915_module_load@reload.html

  * igt@i915_selftest@live@requests:
    - bat-apl-1:          [DMESG-WARN][107] ([i915#11621]) -> [PASS][108] +57 other tests pass
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-apl-1/igt@i915_selftest@live@requests.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-apl-1/igt@i915_selftest@live@requests.html

  * igt@i915_selftest@live@sanitycheck:
    - bat-apl-1:          [DMESG-WARN][109] ([i915#11378] / [i915#11621]) -> [PASS][110] +19 other tests pass
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-apl-1/igt@i915_selftest@live@sanitycheck.html

  * igt@kms_flip@basic-flip-vs-modeset@b-dp1:
    - bat-apl-1:          [DMESG-WARN][111] ([i915#11888] / [i915#180]) -> [PASS][112] +13 other tests pass
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1:
    - bat-apl-1:          [DMESG-WARN][113] ([i915#11888] / [i915#180] / [i915#1982]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15224/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11568/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html

  
  [Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378
  [i915#11548]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11548
  [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#11888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11888
  [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
  [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
  [i915#4550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4550
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7967 -> IGTPW_11568

  CI-20190529: 20190529
  CI_DRM_15224: 924db73e261b7bfd4b70b14db61197f48bf09426 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11568: 11568
  IGT_7967: 290bdef9033c8b185922f02cd05d62fcc0091c15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✗ CI.xeFULL: failure for Clear all KMS properties on reset
  2024-08-13 13:15 [i-g-t 0/2] Clear all KMS properties on reset Bhanuprakash Modem
                   ` (3 preceding siblings ...)
  2024-08-13 15:38 ` ✗ Fi.CI.BAT: " Patchwork
@ 2024-08-13 17:54 ` Patchwork
  2024-08-14  3:58 ` ✗ Fi.CI.BAT: failure for Clear all KMS properties on reset (rev2) Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-08-13 17:54 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Clear all KMS properties on reset
URL   : https://patchwork.freedesktop.org/series/137236/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_7967_full -> XEIGTPW_11568_full
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-dg2-set2:     [PASS][1] -> [INCOMPLETE][2] +2 other tests incomplete
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
    - shard-lnl:          [PASS][3] -> [INCOMPLETE][4] +18 other tests incomplete
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-dg2-set2:     NOTRUN -> [FAIL][5] +3 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-dg2-set2:     [PASS][6] -> [SKIP][7] +19 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-dg2-set2:     [PASS][8] -> [FAIL][9] +890 other tests fail
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_psr@fbc-psr2-cursor-render@edp-1:
    - shard-lnl:          [PASS][10] -> [FAIL][11] +808 other tests fail
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html

  * igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1:
    - shard-lnl:          [PASS][12] -> [SKIP][13] +130 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-2/igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1.html

  * igt@kms_vblank@wait-forked-hang@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][14] +21 other tests fail
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-6/igt@kms_vblank@wait-forked-hang@pipe-c-edp-1.html

  * igt@kms_vrr@cmrr:
    - shard-lnl:          [PASS][15] -> [CRASH][16]
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-5/igt@kms_vrr@cmrr.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-2/igt@kms_vrr@cmrr.html

  
#### Warnings ####

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-lnl:          [SKIP][17] ([Intel XE#599]) -> [INCOMPLETE][18] +12 other tests incomplete
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-lnl:          [SKIP][19] ([Intel XE#1407]) -> [FAIL][20] +23 other tests fail
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          [FAIL][21] ([Intel XE#1659]) -> [FAIL][22] +2 other tests fail
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][23] ([Intel XE#316]) -> [FAIL][24] +5 other tests fail
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-64bpp-rotate-180:
    - shard-dg2-set2:     [DMESG-WARN][25] ([Intel XE#877]) -> [FAIL][26]
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-180.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-180.html
    - shard-lnl:          [DMESG-WARN][27] ([Intel XE#1725]) -> [FAIL][28] +1 other test fail
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_big_fb@linear-64bpp-rotate-180.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-7/igt@kms_big_fb@linear-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][29] ([Intel XE#1201] / [Intel XE#316]) -> [FAIL][30] +17 other tests fail
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_cdclk@mode-transition:
    - shard-lnl:          [SKIP][31] ([Intel XE#314] / [Intel XE#599]) -> [FAIL][32]
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_cdclk@mode-transition.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-4/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     [SKIP][33] ([Intel XE#1201] / [Intel XE#314]) -> [FAIL][34]
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-b-edp-1:
    - shard-lnl:          [SKIP][35] ([Intel XE#314]) -> [FAIL][36] +2 other tests fail
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html

  * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][37] ([Intel XE#314]) -> [FAIL][38] +3 other tests fail
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html

  * igt@kms_cdclk@plane-scaling:
    - shard-lnl:          [SKIP][39] ([Intel XE#1152]) -> [FAIL][40] +3 other tests fail
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@kms_cdclk@plane-scaling.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-5/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     [SKIP][41] ([Intel XE#1152] / [Intel XE#1201]) -> [FAIL][42] +3 other tests fail
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][43] ([Intel XE#1201] / [Intel XE#373]) -> [FAIL][44] +46 other tests fail
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     [SKIP][45] ([Intel XE#373]) -> [FAIL][46] +11 other tests fail
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
    - shard-lnl:          [SKIP][47] ([Intel XE#373]) -> [FAIL][48] +54 other tests fail
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html

  * igt@kms_content_protection@content-type-change:
    - shard-dg2-set2:     [SKIP][49] ([Intel XE#455]) -> [INCOMPLETE][50]
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_content_protection@content-type-change.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_content_protection@content-type-change.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-dg2-set2:     [DMESG-FAIL][51] ([Intel XE#1551]) -> [FAIL][52] +3 other tests fail
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][53] ([Intel XE#1201] / [i915#3804]) -> [FAIL][54]
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          [SKIP][55] ([Intel XE#1401]) -> [FAIL][56] +24 other tests fail
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          [SKIP][57] ([Intel XE#1397]) -> [FAIL][58] +7 other tests fail
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
    - shard-lnl:          [SKIP][59] ([Intel XE#1397] / [Intel XE#1745]) -> [FAIL][60] +7 other tests fail
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-dg2-set2:     [SKIP][61] ([Intel XE#455]) -> [FAIL][62] +5 other tests fail
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-dg2-set2:     [SKIP][63] ([Intel XE#1201] / [Intel XE#455]) -> [FAIL][64] +41 other tests fail
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
    - shard-lnl:          [SKIP][65] ([Intel XE#1401] / [Intel XE#1745]) -> [FAIL][66] +24 other tests fail
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-dg2-set2:     [DMESG-WARN][67] ([Intel XE#1162]) -> [FAIL][68]
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_plane@plane-position-covered:
    - shard-lnl:          [DMESG-WARN][69] ([Intel XE#324]) -> [SKIP][70]
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@kms_plane@plane-position-covered.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@kms_plane@plane-position-covered.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     [FAIL][71] ([Intel XE#616]) -> [FAIL][72] +14 other tests fail
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-lnl:          [SKIP][73] ([Intel XE#870]) -> [INCOMPLETE][74]
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_pm_backlight@fade-with-dpms.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-6/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-lnl:          [SKIP][75] ([Intel XE#736]) -> [FAIL][76]
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [FAIL][77] ([Intel XE#718]) -> [FAIL][78]
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [FAIL][79] ([Intel XE#1430]) -> [FAIL][80]
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          [FAIL][81] ([Intel XE#2029]) -> [FAIL][82]
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
    - shard-lnl:          [DMESG-WARN][83] ([Intel XE#1705]) -> [FAIL][84]
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][85] ([Intel XE#1127] / [Intel XE#1201]) -> [FAIL][86] +2 other tests fail
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-lnl:          [SKIP][87] ([Intel XE#1127]) -> [FAIL][88] +3 other tests fail
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][89] ([Intel XE#1127]) -> [FAIL][90]
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-lnl:          [FAIL][91] ([Intel XE#899]) -> [FAIL][92] +1 other test fail
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4:
    - shard-dg2-set2:     [DMESG-WARN][93] ([Intel XE#1551]) -> [FAIL][94] +1 other test fail
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1:
    - shard-lnl:          [FAIL][95] ([Intel XE#2028]) -> [FAIL][96] +1 other test fail
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-dg2-set2:     [DMESG-WARN][97] ([Intel XE#2019]) -> [FAIL][98] +3 other tests fail
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vrr@flip-basic:
    - shard-lnl:          [FAIL][99] ([Intel XE#2443]) -> [FAIL][100] +9 other tests fail
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_vrr@flip-basic.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@kms_vrr@flip-basic.html

  * igt@xe_oa@non-privileged-map-oa-buffer:
    - shard-dg2-set2:     [SKIP][101] ([Intel XE#1201]) -> [SKIP][102] +4 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_oa@non-privileged-map-oa-buffer.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_oa@non-privileged-map-oa-buffer.html

  
#### Suppressed ####

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

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - {shard-bmg}:        [SKIP][103] ([Intel XE#2385]) -> [INCOMPLETE][104]
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@modeset-transition:
    - {shard-bmg}:        [PASS][105] -> [INCOMPLETE][106] +18 other tests incomplete
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_atomic_transition@modeset-transition.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-4/igt@kms_atomic_transition@modeset-transition.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking:
    - {shard-bmg}:        NOTRUN -> [INCOMPLETE][107]
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
    - {shard-bmg}:        NOTRUN -> [SKIP][108] +1 other test skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-8/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - {shard-bmg}:        [SKIP][109] ([Intel XE#2327]) -> [FAIL][110] +22 other tests fail
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - {shard-bmg}:        [FAIL][111] ([Intel XE#1659]) -> [FAIL][112] +1 other test fail
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs@pipe-c-hdmi-a-3:
    - {shard-bmg}:        [FAIL][113] ([Intel XE#2400]) -> [FAIL][114] +17 other tests fail
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs@pipe-c-hdmi-a-3.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs@pipe-c-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3:
    - {shard-bmg}:        [FAIL][115] ([Intel XE#2436]) -> [FAIL][116] +1 other test fail
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-c-hdmi-a-3:
    - {shard-bmg}:        [PASS][117] -> [FAIL][118] +660 other tests fail
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-c-hdmi-a-3.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-c-hdmi-a-3.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - {shard-bmg}:        [SKIP][119] ([Intel XE#314]) -> [FAIL][120] +4 other tests fail
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-3:
    - {shard-bmg}:        [FAIL][121] ([Intel XE#2435]) -> [FAIL][122] +4 other tests fail
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-2/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-3.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-6/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-3.html

  * igt@kms_cdclk@plane-scaling@pipe-d-dp-2:
    - {shard-bmg}:        [SKIP][123] ([Intel XE#1152]) -> [FAIL][124] +3 other tests fail
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_cdclk@plane-scaling@pipe-d-dp-2.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-4/igt@kms_cdclk@plane-scaling@pipe-d-dp-2.html

  * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-3:
    - {shard-bmg}:        [FAIL][125] ([Intel XE#2429]) -> [FAIL][126] +4 other tests fail
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-3.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-3.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - {shard-bmg}:        [SKIP][127] ([Intel XE#2252]) -> [FAIL][128] +58 other tests fail
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_content_protection@atomic:
    - {shard-bmg}:        [FAIL][129] ([Intel XE#1178]) -> [INCOMPLETE][130] +3 other tests incomplete
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-6/igt@kms_content_protection@atomic.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-7/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@content-type-change:
    - {shard-bmg}:        [SKIP][131] ([Intel XE#2341]) -> [INCOMPLETE][132] +3 other tests incomplete
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_content_protection@content-type-change.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-5/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@uevent:
    - {shard-bmg}:        [FAIL][133] ([Intel XE#1188]) -> [INCOMPLETE][134]
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@kms_content_protection@uevent.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-2/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-suspend:
    - {shard-bmg}:        [FAIL][135] ([Intel XE#2428]) -> [FAIL][136] +2 other tests fail
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - {shard-bmg}:        [DMESG-WARN][137] ([Intel XE#877]) -> [SKIP][138] +1 other test skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - {shard-bmg}:        [SKIP][139] ([Intel XE#1340]) -> [FAIL][140]
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - {shard-bmg}:        [SKIP][141] ([Intel XE#2380]) -> [FAIL][142] +1 other test fail
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - {shard-bmg}:        [SKIP][143] ([Intel XE#2293] / [Intel XE#2380]) -> [FAIL][144] +25 other tests fail
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - {shard-bmg}:        [SKIP][145] ([Intel XE#2293]) -> [FAIL][146] +25 other tests fail
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-3-4-to-4:
    - {shard-bmg}:        [PASS][147] -> [SKIP][148] +157 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-3-4-to-4.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-3/igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-3-4-to-4.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
    - {shard-bmg}:        [FAIL][149] ([Intel XE#2333]) -> [INCOMPLETE][150]
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - {shard-bmg}:        [FAIL][151] ([Intel XE#2333]) -> [FAIL][152] +83 other tests fail
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - {shard-bmg}:        [FAIL][153] ([Intel XE#1861]) -> [FAIL][154]
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_hdr@static-toggle-suspend:
    - {shard-bmg}:        [FAIL][155] ([Intel XE#2382]) -> [INCOMPLETE][156]
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-2/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_lease@page-flip-implicit-plane@pipe-c-hdmi-a-3:
    - {shard-bmg}:        NOTRUN -> [FAIL][157] +33 other tests fail
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-5/igt@kms_lease@page-flip-implicit-plane@pipe-c-hdmi-a-3.html

  * igt@kms_plane@pixel-format-source-clamping:
    - {shard-bmg}:        [DMESG-WARN][158] ([Intel XE#877]) -> [INCOMPLETE][159]
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-7/igt@kms_plane@pixel-format-source-clamping.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - {shard-bmg}:        [FAIL][160] ([Intel XE#2376]) -> [FAIL][161] +2 other tests fail
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane_lowres@tiling-4@pipe-a-dp-2:
    - {shard-bmg}:        [FAIL][162] ([Intel XE#2058]) -> [FAIL][163] +1 other test fail
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-5/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - {shard-bmg}:        [SKIP][164] ([Intel XE#2330]) -> [FAIL][165] +3 other tests fail
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][166] ([Intel XE#1201] / [Intel XE#873])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing:
    - shard-lnl:          [PASS][167] -> [FAIL][168] ([Intel XE#1426]) +7 other tests fail
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][169] -> [FAIL][170] ([Intel XE#1426]) +5 other tests fail
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][171] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][172] ([Intel XE#1124]) +2 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@basic-force-joiner:
    - shard-lnl:          [PASS][173] -> [FAIL][174] ([Intel XE#2267]) +1 other test fail
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_big_joiner@basic-force-joiner.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-3/igt@kms_big_joiner@basic-force-joiner.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][175] ([Intel XE#2191])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-lnl:          [PASS][176] -> [SKIP][177] ([Intel XE#367]) +7 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-3/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][178] ([Intel XE#1399]) +1 other test skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][179] ([Intel XE#1201] / [Intel XE#787]) +6 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][180] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +1 other test skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][181] ([Intel XE#787]) +6 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][182] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-dg2-set2:     NOTRUN -> [SKIP][183] ([Intel XE#1201] / [Intel XE#306])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][184] ([Intel XE#1195])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_content_protection@uevent.html

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

  * igt@kms_cursor_crc@cursor-sliding-64x64:
    - shard-dg2-set2:     [PASS][186] -> [SKIP][187] ([Intel XE#1201] / [Intel XE#455]) +50 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html
    - shard-lnl:          [PASS][188] -> [SKIP][189] ([Intel XE#1424]) +11 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-64x64.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-64x64.html

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

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][191] -> [DMESG-WARN][192] ([Intel XE#2019]) +1 other test dmesg-warn
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-lnl:          NOTRUN -> [SKIP][193] ([Intel XE#352])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][194] ([Intel XE#1201] / [Intel XE#651]) +1 other test skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
    - shard-lnl:          NOTRUN -> [SKIP][195] ([Intel XE#651]) +1 other test skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][196] ([Intel XE#656]) +4 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-dg2-set2:     [PASS][197] -> [INCOMPLETE][198] ([Intel XE#1195]) +14 other tests incomplete
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_hdr@static-toggle-dpms.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_hdr@static-toggle-dpms.html
    - shard-lnl:          NOTRUN -> [SKIP][199] ([Intel XE#1503] / [Intel XE#599])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-4/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_plane@pixel-format-source-clamping:
    - shard-dg2-set2:     [PASS][200] -> [INCOMPLETE][201] ([Intel XE#1035] / [Intel XE#1195]) +2 other tests incomplete
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_plane@pixel-format-source-clamping.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@kms_plane@pixel-format-source-clamping.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][202] -> [FAIL][203] ([Intel XE#361])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
    - shard-dg2-set2:     [PASS][204] -> [SKIP][205] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +13 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c-edp-1:
    - shard-lnl:          [PASS][206] -> [SKIP][207] ([Intel XE#498]) +11 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c-edp-1.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c-edp-1.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][208] -> [SKIP][209] ([Intel XE#1201]) +385 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-hdmi-a-6.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-hdmi-a-6.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
    - shard-dg2-set2:     [PASS][210] -> [SKIP][211] ([Intel XE#455] / [Intel XE#498]) +3 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [PASS][212] -> [SKIP][213] ([Intel XE#455]) +7 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-6.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
    - shard-lnl:          [PASS][214] -> [SKIP][215] ([Intel XE#2318]) +23 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][216] -> [SKIP][217] ([Intel XE#2318]) +8 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a-hdmi-a-6.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
    - shard-dg2-set2:     [PASS][218] -> [SKIP][219] ([Intel XE#2318] / [Intel XE#455]) +5 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25:
    - shard-dg2-set2:     [PASS][220] -> [SKIP][221] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +27 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][222] -> [SKIP][223] ([Intel XE#1201] / [Intel XE#2318]) +41 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-6.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-6.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-lnl:          [PASS][224] -> [SKIP][225] ([Intel XE#870]) +2 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_pm_backlight@basic-brightness.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-5/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-lnl:          NOTRUN -> [SKIP][226] ([Intel XE#1406])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-7/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][227] ([Intel XE#1201] / [Intel XE#929]) +1 other test skip
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@pr-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][228] ([Intel XE#929])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_psr@pr-suspend.html

  * igt@xe_evict@evict-beng-large-external-cm:
    - shard-lnl:          NOTRUN -> [SKIP][229] ([Intel XE#688])
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@xe_evict@evict-beng-large-external-cm.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-dg2-set2:     [PASS][230] -> [TIMEOUT][231] ([Intel XE#1473] / [Intel XE#402])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-beng-mixed-threads-large:
    - shard-dg2-set2:     [PASS][232] -> [TIMEOUT][233] ([Intel XE#1041] / [Intel XE#1473])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_evict@evict-beng-mixed-threads-large.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_evict@evict-beng-mixed-threads-large.html

  * igt@xe_evict@evict-threads-large:
    - shard-dg2-set2:     [PASS][234] -> [TIMEOUT][235] ([Intel XE#1473])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_evict@evict-threads-large.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_evict@evict-threads-large.html

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

  * igt@xe_exec_fault_mode@once-invalid-fault:
    - shard-dg2-set2:     NOTRUN -> [SKIP][237] ([Intel XE#1201] / [Intel XE#288])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@xe_exec_fault_mode@once-invalid-fault.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [PASS][238] -> [TIMEOUT][239] ([Intel XE#2105])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_live_ktest@xe_migrate:
    - shard-dg2-set2:     [PASS][240] -> [SKIP][241] ([Intel XE#1192] / [Intel XE#1201]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_live_ktest@xe_migrate.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@xe_live_ktest@xe_migrate.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][242] ([Intel XE#1201] / [Intel XE#979])
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html

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

  * igt@xe_pm@s2idle-exec-after:
    - shard-lnl:          [PASS][244] -> [FAIL][245] ([Intel XE#2028]) +1 other test fail
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@xe_pm@s2idle-exec-after.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-1/igt@xe_pm@s2idle-exec-after.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-dg2-set2:     [PASS][246] -> [DMESG-WARN][247] ([Intel XE#1551] / [Intel XE#569])
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_pm@s3-multiple-execs.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-dg2-set2:     [PASS][248] -> [DMESG-WARN][249] ([Intel XE#1162] / [Intel XE#1941] / [Intel XE#569])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@xe_pm@s3-vm-bind-unbind-all.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s4-basic-exec:
    - shard-lnl:          [PASS][250] -> [ABORT][251] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) +1 other test abort
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@xe_pm@s4-basic-exec.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-2/igt@xe_pm@s4-basic-exec.html

  
#### Possible fixes ####

  * igt@fbdev@unaligned-read:
    - {shard-bmg}:        [DMESG-WARN][252] ([Intel XE#877]) -> [PASS][253]
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-2/igt@fbdev@unaligned-read.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-6/igt@fbdev@unaligned-read.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2:
    - {shard-bmg}:        [DMESG-WARN][254] ([Intel XE#1033]) -> [PASS][255]
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2.html

  * igt@kms_async_flips@async-flip-with-page-flip-events:
    - shard-dg2-set2:     [DMESG-WARN][256] ([Intel XE#1705]) -> [PASS][257]
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - {shard-bmg}:        [INCOMPLETE][258] -> [PASS][259] +1 other test pass
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [FAIL][260] ([Intel XE#718]) -> [PASS][261]
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_universal_plane@cursor-fb-leak:
    - {shard-bmg}:        [FAIL][262] ([Intel XE#899]) -> [PASS][263] +1 other test pass
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_universal_plane@cursor-fb-leak.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-2/igt@kms_universal_plane@cursor-fb-leak.html

  * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
    - shard-dg2-set2:     [DMESG-WARN][264] -> [PASS][265] +1 other test pass
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-dg2-set2:     [TIMEOUT][266] ([Intel XE#1473]) -> [PASS][267]
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_evict@evict-threads-large:
    - {shard-bmg}:        [TIMEOUT][268] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][269] +1 other test pass
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@xe_evict@evict-threads-large.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-3/igt@xe_evict@evict-threads-large.html

  * igt@xe_gt_freq@freq_reset_multiple:
    - shard-lnl:          [DMESG-WARN][270] ([Intel XE#1620]) -> [PASS][271]
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@xe_gt_freq@freq_reset_multiple.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-5/igt@xe_gt_freq@freq_reset_multiple.html

  * igt@xe_module_load@unload:
    - shard-dg2-set2:     [DMESG-WARN][272] ([Intel XE#1551] / [Intel XE#2019]) -> [PASS][273]
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_module_load@unload.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@xe_module_load@unload.html

  * igt@xe_oa@mmio-triggered-reports:
    - {shard-bmg}:        [FAIL][274] ([Intel XE#2249]) -> [PASS][275] +1 other test pass
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-8/igt@xe_oa@mmio-triggered-reports.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-bmg-3/igt@xe_oa@mmio-triggered-reports.html
    - shard-lnl:          [FAIL][276] ([Intel XE#2249]) -> [PASS][277]
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-8/igt@xe_oa@mmio-triggered-reports.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-lnl:          [FAIL][278] ([Intel XE#2028]) -> [PASS][279]
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@xe_pm@s2idle-basic-exec.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-5/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s2idle-vm-bind-userptr:
    - shard-lnl:          [FAIL][280] -> [PASS][281]
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@xe_pm@s2idle-vm-bind-userptr.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-5/igt@xe_pm@s2idle-vm-bind-userptr.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-dg2-set2:     [INCOMPLETE][282] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][283]
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_pm@s4-d3hot-basic-exec.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_pm@s4-d3hot-basic-exec.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-lnl:          [ABORT][284] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][285]
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-6/igt@xe_pm@s4-vm-bind-prefetch.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-lnl:          [FAIL][286] ([Intel XE#958]) -> [PASS][287]
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html

  
#### Warnings ####

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2-set2:     [SKIP][288] ([Intel XE#455]) -> [INCOMPLETE][289] ([Intel XE#1195])
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][290] ([Intel XE#607]) -> [SKIP][291] ([Intel XE#1201] / [Intel XE#607])
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][292] ([Intel XE#1201] / [Intel XE#610]) -> [SKIP][293] ([Intel XE#610])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][294] ([Intel XE#1124]) -> [SKIP][295] ([Intel XE#1124] / [Intel XE#1201]) +11 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     [SKIP][296] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][297] ([Intel XE#619]) +1 other test skip
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][298] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][299] ([Intel XE#1124]) +7 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][300] ([Intel XE#2191]) -> [SKIP][301] ([Intel XE#1201] / [Intel XE#2191])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

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

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][304] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][305] ([Intel XE#367]) +2 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][306] ([Intel XE#367]) -> [SKIP][307] ([Intel XE#1201] / [Intel XE#367]) +6 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][308] ([Intel XE#787]) -> [SKIP][309] ([Intel XE#1201] / [Intel XE#787]) +76 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][310] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][311] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +21 other tests skip
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][312] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][313] ([Intel XE#787]) +48 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][314] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][315] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-dg2-set2:     [SKIP][316] ([Intel XE#306]) -> [SKIP][317] ([Intel XE#1201] / [Intel XE#306])
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_chamelium_color@ctm-blue-to-red.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     [FAIL][318] ([Intel XE#1178]) -> [INCOMPLETE][319] ([Intel XE#1195]) +2 other tests incomplete
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@lic-type-0:
    - shard-dg2-set2:     [FAIL][320] ([Intel XE#1178] / [Intel XE#1204]) -> [INCOMPLETE][321] ([Intel XE#1195])
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_content_protection@lic-type-0.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2-set2:     [SKIP][322] ([Intel XE#1201] / [Intel XE#455]) -> [INCOMPLETE][323] ([Intel XE#1195]) +2 other tests incomplete
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_content_protection@lic-type-1.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_content_protection@lic-type-1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     [SKIP][324] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][325] ([Intel XE#308]) +1 other test skip
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-dg2-set2:     [SKIP][326] ([Intel XE#308]) -> [SKIP][327] ([Intel XE#1201] / [Intel XE#308])
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2-set2:     [SKIP][328] ([Intel XE#323]) -> [SKIP][329] ([Intel XE#1201] / [Intel XE#323])
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2-set2:     [SKIP][330] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][331] ([Intel XE#455]) +4 other tests skip
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2-set2:     [SKIP][332] ([Intel XE#776]) -> [SKIP][333] ([Intel XE#1201] / [Intel XE#776])
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     [SKIP][334] ([Intel XE#701]) -> [SKIP][335] ([Intel XE#1201] / [Intel XE#701])
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     [SKIP][336] ([Intel XE#1138]) -> [SKIP][337] ([Intel XE#1138] / [Intel XE#1201])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_feature_discovery@display-4x.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][338] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][339] ([Intel XE#1135]) +1 other test skip
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_feature_discovery@psr1.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_feature_discovery@psr1.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-dg2-set2:     [SKIP][340] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][341] ([Intel XE#651]) +26 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     [SKIP][344] ([Intel XE#658]) -> [SKIP][345] ([Intel XE#1201] / [Intel XE#658])
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][346] ([Intel XE#653]) -> [SKIP][347] ([Intel XE#1201] / [Intel XE#653]) +27 other tests skip
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     [SKIP][348] ([Intel XE#1158]) -> [SKIP][349] ([Intel XE#1158] / [Intel XE#1201])
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     [SKIP][350] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][351] ([Intel XE#653]) +21 other tests skip
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-dg2-set2:     [SKIP][352] ([Intel XE#605]) -> [SKIP][353] ([Intel XE#1201] / [Intel XE#605])
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2-set2:     [FAIL][354] ([Intel XE#616]) -> [INCOMPLETE][355] ([Intel XE#1195])
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_hdr@static-toggle-suspend.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2-set2:     [SKIP][356] ([Intel XE#356]) -> [SKIP][357] ([Intel XE#1201] / [Intel XE#356])
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-dg2-set2:     [SKIP][358] ([Intel XE#455]) -> [SKIP][359] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_lowres@tiling-y.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-dg2-set2:     [SKIP][360] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][361] ([Intel XE#455] / [Intel XE#498]) +3 other tests skip
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html

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

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][364] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][365] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][366] ([Intel XE#2318]) -> [SKIP][367] ([Intel XE#1201] / [Intel XE#2318]) +2 other tests skip
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-dg2-set2:     [SKIP][368] ([Intel XE#870]) -> [SKIP][369] ([Intel XE#1201] / [Intel XE#870]) +1 other test skip
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_pm_backlight@fade-with-dpms.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2-set2:     [SKIP][370] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][371] ([Intel XE#870])
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2-set2:     [SKIP][372] ([Intel XE#908]) -> [SKIP][373] ([Intel XE#1201] / [Intel XE#908])
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][374] ([Intel XE#1489]) -> [SKIP][375] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][376] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][377] ([Intel XE#1489]) +2 other tests skip
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     [SKIP][378] ([Intel XE#1122]) -> [SKIP][379] ([Intel XE#1122] / [Intel XE#1201])
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-dg2-set2:     [SKIP][380] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][381] ([Intel XE#929]) +11 other tests skip
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     [SKIP][382] ([Intel XE#929]) -> [SKIP][383] ([Intel XE#1201] / [Intel XE#929]) +15 other tests skip
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr@psr-dpms.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_psr@psr-dpms.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-dg2-set2:     [SKIP][384] ([Intel XE#327]) -> [SKIP][385] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-435/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][386] ([Intel XE#1729]) -> [SKIP][387] ([Intel XE#1201] / [Intel XE#362])
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     [SKIP][388] ([Intel XE#330]) -> [SKIP][389] ([Intel XE#1201] / [Intel XE#330])
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-dg2-set2:     [SKIP][390] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][391] ([Intel XE#756])
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     [SKIP][392] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][393] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html

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

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][396] ([Intel XE#1123]) -> [SKIP][397] ([Intel XE#1123] / [Intel XE#1201])
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][398] ([Intel XE#1126]) -> [SKIP][399] ([Intel XE#1126] / [Intel XE#1201])
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][400] ([Intel XE#1195] / [Intel XE#1473]) -> [TIMEOUT][401] ([Intel XE#1041] / [Intel XE#1473])
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_exec_fault_mode@many-execqueues-basic-imm:
    - shard-dg2-set2:     [SKIP][402] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][403] ([Intel XE#288]) +17 other tests skip
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     [SKIP][404] ([Intel XE#288]) -> [SKIP][405] ([Intel XE#1201] / [Intel XE#288]) +27 other tests skip
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
    - shard-dg2-set2:     [SKIP][406] ([Intel XE#1201] / [Intel XE#2360]) -> [SKIP][407] ([Intel XE#2360]) +1 other test skip
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html

  * igt@xe_oa@closed-fd-and-unmapped-access:
    - shard-dg2-set2:     [SKIP][408] -> [SKIP][409] ([Intel XE#1201]) +8 other tests skip
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_oa@closed-fd-and-unmapped-access.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-463/igt@xe_oa@closed-fd-and-unmapped-access.html

  * igt@xe_pat@pat-index-xe2:
    - shard-dg2-set2:     [SKIP][410] ([Intel XE#1201] / [Intel XE#977]) -> [SKIP][411] ([Intel XE#977])
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_pat@pat-index-xe2.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-dg2-set2:     [SKIP][412] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][413] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_pm@d3cold-mmap-system.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     [SKIP][414] ([Intel XE#579]) -> [SKIP][415] ([Intel XE#1201] / [Intel XE#579])
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_pm@vram-d3cold-threshold.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     [SKIP][416] ([Intel XE#944]) -> [SKIP][417] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-466/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-dg2-set2:     [SKIP][418] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][419] ([Intel XE#944]) +1 other test skip
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@xe_query@multigpu-query-mem-usage.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11568/shard-dg2-432/igt@xe_query@multigpu-query-mem-usage.html

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

  [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
  [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#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [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#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1540
  [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1705
  [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
  [Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
  [Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
  [Intel XE#2026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2026
  [Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2058]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2058
  [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
  [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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
  [Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2267]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2267
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2357]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2357
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2376
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2382
  [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
  [Intel XE#2400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2400
  [Intel XE#2428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2428
  [Intel XE#2429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2429
  [Intel XE#2435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2435
  [Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
  [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
  [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
  [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#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#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
  [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#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804


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

  * IGT: IGT_7967 -> IGTPW_11568
  * Linux: xe-1756-bb06cec392c188bc980be5cee9a85240ce866b78 -> xe-1759-924db73e261b7bfd4b70b14db61197f48bf09426

  IGTPW_11568: 11568
  IGT_7967: 290bdef9033c8b185922f02cd05d62fcc0091c15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1756-bb06cec392c188bc980be5cee9a85240ce866b78: bb06cec392c188bc980be5cee9a85240ce866b78
  xe-1759-924db73e261b7bfd4b70b14db61197f48bf09426: 924db73e261b7bfd4b70b14db61197f48bf09426

== Logs ==

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

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

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

* ✗ Fi.CI.BAT: failure for Clear all KMS properties on reset (rev2)
  2024-08-13 13:15 [i-g-t 0/2] Clear all KMS properties on reset Bhanuprakash Modem
                   ` (4 preceding siblings ...)
  2024-08-13 17:54 ` ✗ CI.xeFULL: " Patchwork
@ 2024-08-14  3:58 ` Patchwork
  2024-08-14  4:00 ` ✗ CI.xeBAT: " Patchwork
  2024-08-14  5:04 ` ✗ CI.xeFULL: " Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-08-14  3:58 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Clear all KMS properties on reset (rev2)
URL   : https://patchwork.freedesktop.org/series/137236/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15228 -> IGTPW_11570
====================================================

Summary
-------

  **FAILURE**

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

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

  Additional (1): fi-kbl-8809g 
  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_busy@basic@flip:
    - fi-kbl-7567u:       [PASS][1] -> [FAIL][2] +28 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-kbl-7567u/igt@kms_busy@basic@flip.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-kbl-7567u/igt@kms_busy@basic@flip.html
    - fi-cfl-8700k:       [PASS][3] -> [FAIL][4] +28 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-cfl-8700k/igt@kms_busy@basic@flip.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-cfl-8700k/igt@kms_busy@basic@flip.html
    - bat-twl-1:          [PASS][5] -> [FAIL][6] +34 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-twl-1/igt@kms_busy@basic@flip.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-twl-1/igt@kms_busy@basic@flip.html
    - bat-apl-1:          [PASS][7] -> [FAIL][8] +26 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-apl-1/igt@kms_busy@basic@flip.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-apl-1/igt@kms_busy@basic@flip.html

  * igt@kms_chamelium_hpd@hdmi-hpd-fast:
    - bat-dg2-13:         [PASS][9] -> [FAIL][10] +3 other tests fail
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-dg2-13/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-dg2-13/igt@kms_chamelium_hpd@hdmi-hpd-fast.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - fi-bsw-n3050:       [PASS][11] -> [FAIL][12] +17 other tests fail
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-bsw-n3050/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-bsw-n3050/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
    - bat-adlp-6:         [PASS][13] -> [FAIL][14] +41 other tests fail
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-adlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-adlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
    - bat-rplp-1:         [PASS][15] -> [FAIL][16] +36 other tests fail
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-rplp-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-rplp-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
    - fi-glk-j4005:       [PASS][17] -> [FAIL][18] +29 other tests fail
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-glk-j4005/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-glk-j4005/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
    - bat-mtlp-8:         [PASS][19] -> [FAIL][20] +40 other tests fail
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-mtlp-8/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-mtlp-8/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
    - fi-elk-e7500:       [PASS][21] -> [FAIL][22] +22 other tests fail
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-elk-e7500/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-elk-e7500/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2:
    - bat-dg2-11:         [PASS][23] -> [FAIL][24] +28 other tests fail
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-dg2-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-dg2-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-1:
    - bat-dg2-8:          [PASS][25] -> [FAIL][26] +36 other tests fail
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-dg2-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-1.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-dg2-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-1.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-hdmi-a-2:
    - bat-dg2-14:         [PASS][27] -> [FAIL][28] +36 other tests fail
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-dg2-14/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-hdmi-a-2.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-dg2-14/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-1:
    - bat-adlp-9:         [PASS][29] -> [FAIL][30] +36 other tests fail
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-adlp-9/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-1.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-adlp-9/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-1.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-2:
    - bat-arls-1:         [PASS][31] -> [FAIL][32] +36 other tests fail
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-arls-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-2.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-arls-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-2:
    - fi-cfl-8109u:       [PASS][33] -> [FAIL][34] +28 other tests fail
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-2.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-2.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-hdmi-a-1:
    - fi-cfl-guc:         [PASS][35] -> [FAIL][36] +28 other tests fail
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-cfl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-hdmi-a-1.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-cfl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-hdmi-a-1.html

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-1:
    - fi-tgl-1115g4:      [PASS][37] -> [FAIL][38] +36 other tests fail
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-tgl-1115g4/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-1.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-tgl-1115g4/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-1:
    - bat-adls-6:         [PASS][39] -> [FAIL][40] +36 other tests fail
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-adls-6/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-1.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-adls-6/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-1.html

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-2:
    - bat-dg1-7:          [PASS][41] -> [FAIL][42] +36 other tests fail
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-dg1-7/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-2.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-dg1-7/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-vga-1:
    - fi-ivb-3770:        [PASS][43] -> [FAIL][44] +28 other tests fail
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-ivb-3770/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-vga-1.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-ivb-3770/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-vga-1.html

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-vga-1:
    - fi-pnv-d510:        [PASS][45] -> [FAIL][46] +17 other tests fail
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-pnv-d510/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-vga-1.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-pnv-d510/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-vga-1.html

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-3:
    - bat-arls-5:         [PASS][47] -> [FAIL][48] +36 other tests fail
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-3.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-3.html

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-2:
    - bat-rpls-4:         [PASS][49] -> [FAIL][50] +36 other tests fail
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-rpls-4/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-2.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-rpls-4/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1:
    - bat-twl-2:          [PASS][51] -> [FAIL][52] +34 other tests fail
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-twl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-twl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-vga-1:
    - fi-blb-e6850:       [PASS][53] -> [FAIL][54] +17 other tests fail
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-blb-e6850/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-vga-1.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-blb-e6850/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-vga-1.html

  * igt@kms_pipe_crc_basic@read-crc@pipe-a-hdmi-a-1:
    - fi-rkl-11600:       [PASS][55] -> [FAIL][56] +29 other tests fail
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-rkl-11600/igt@kms_pipe_crc_basic@read-crc@pipe-a-hdmi-a-1.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-rkl-11600/igt@kms_pipe_crc_basic@read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_pipe_crc_basic@read-crc@pipe-a-vga-1:
    - fi-ilk-650:         [PASS][57] -> [FAIL][58] +22 other tests fail
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-ilk-650/igt@kms_pipe_crc_basic@read-crc@pipe-a-vga-1.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-ilk-650/igt@kms_pipe_crc_basic@read-crc@pipe-a-vga-1.html

  * igt@kms_pipe_crc_basic@read-crc@pipe-b-edp-1:
    - bat-jsl-1:          [PASS][59] -> [FAIL][60] +34 other tests fail
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-jsl-1/igt@kms_pipe_crc_basic@read-crc@pipe-b-edp-1.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-jsl-1/igt@kms_pipe_crc_basic@read-crc@pipe-b-edp-1.html

  * igt@kms_pipe_crc_basic@read-crc@pipe-d-edp-1:
    - bat-arls-2:         [PASS][61] -> [FAIL][62] +40 other tests fail
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-arls-2/igt@kms_pipe_crc_basic@read-crc@pipe-d-edp-1.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-arls-2/igt@kms_pipe_crc_basic@read-crc@pipe-d-edp-1.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-adlp-6:         NOTRUN -> [INCOMPLETE][63]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-adlp-6/igt@kms_pm_backlight@basic-brightness.html
    - bat-twl-2:          NOTRUN -> [INCOMPLETE][64]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-twl-2/igt@kms_pm_backlight@basic-brightness.html
    - bat-twl-1:          NOTRUN -> [INCOMPLETE][65]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-twl-1/igt@kms_pm_backlight@basic-brightness.html
    - bat-rplp-1:         NOTRUN -> [INCOMPLETE][66]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-rplp-1/igt@kms_pm_backlight@basic-brightness.html
    - bat-arls-2:         NOTRUN -> [INCOMPLETE][67]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-arls-2/igt@kms_pm_backlight@basic-brightness.html
    - bat-mtlp-8:         NOTRUN -> [INCOMPLETE][68]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-mtlp-8/igt@kms_pm_backlight@basic-brightness.html
    - bat-jsl-1:          NOTRUN -> [INCOMPLETE][69]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-jsl-1/igt@kms_pm_backlight@basic-brightness.html

  
#### Warnings ####

  * igt@kms_chamelium_hpd@dp-hpd-fast:
    - bat-dg2-13:         [SKIP][70] ([Intel XE#484]) -> [FAIL][71] +2 other tests fail
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-dg2-13/igt@kms_chamelium_hpd@dp-hpd-fast.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-dg2-13/igt@kms_chamelium_hpd@dp-hpd-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - bat-dg2-13:         [SKIP][72] ([Intel XE#484] / [i915#4550]) -> [FAIL][73] +1 other test fail
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-dg2-13/igt@kms_chamelium_hpd@vga-hpd-fast.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-dg2-13/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-elk-e7500:       [SKIP][74] -> [FAIL][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/fi-elk-e7500/igt@kms_frontbuffer_tracking@basic.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-elk-e7500/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_psr@psr-primary-mmap-gtt@edp-1:
    - bat-arls-2:         [SKIP][76] ([i915#10196] / [i915#4077] / [i915#9688]) -> [FAIL][77]
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-arls-2/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-arls-2/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
    - bat-mtlp-8:         [SKIP][78] ([i915#4077] / [i915#9688]) -> [FAIL][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][80] ([i915#2190])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html

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

  * igt@i915_selftest@live@hangcheck:
    - bat-arls-1:         [PASS][82] -> [DMESG-WARN][83] ([i915#11349] / [i915#11378])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-arls-1/igt@i915_selftest@live@hangcheck.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-arls-1/igt@i915_selftest@live@hangcheck.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][84] +30 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@read-crc:
    - bat-dg2-11:         NOTRUN -> [SKIP][85] ([i915#9197]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@hangcheck:
    - bat-arls-2:         [DMESG-WARN][86] ([i915#11349] / [i915#11378]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15228/bat-arls-2/igt@i915_selftest@live@hangcheck.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11570/bat-arls-2/igt@i915_selftest@live@hangcheck.html

  
  [Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484
  [i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196
  [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
  [i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4550
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7967 -> IGTPW_11570

  CI-20190529: 20190529
  CI_DRM_15228: 02c35fc4e126599bc57696d25d9b78d612a7a847 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11570: 1600e47be7cbb052fdc72699ff970780f4f6e7e7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7967: 290bdef9033c8b185922f02cd05d62fcc0091c15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✗ CI.xeBAT: failure for Clear all KMS properties on reset (rev2)
  2024-08-13 13:15 [i-g-t 0/2] Clear all KMS properties on reset Bhanuprakash Modem
                   ` (5 preceding siblings ...)
  2024-08-14  3:58 ` ✗ Fi.CI.BAT: failure for Clear all KMS properties on reset (rev2) Patchwork
@ 2024-08-14  4:00 ` Patchwork
  2024-08-14  5:04 ` ✗ CI.xeFULL: " Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-08-14  4:00 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Clear all KMS properties on reset (rev2)
URL   : https://patchwork.freedesktop.org/series/137236/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_7967_BAT -> XEIGTPW_11570_BAT
====================================================

Summary
-------

  **FAILURE**

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
    - bat-lnl-1:          [PASS][1] -> [FAIL][2] +40 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-3:
    - bat-dg2-oem2:       [PASS][3] -> [FAIL][4] +41 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-3.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-3.html

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-3:
    - bat-bmg-1:          [PASS][5] -> [FAIL][6] +41 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-bmg-1/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-3.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-bmg-1/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-3.html

  * igt@kms_psr@psr-cursor-plane-move:
    - bat-adlp-7:         [PASS][7] -> [FAIL][8] +47 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html

  
#### Warnings ####

  * igt@kms_frontbuffer_tracking@basic:
    - bat-adlp-7:         [DMESG-FAIL][9] ([Intel XE#324]) -> [FAIL][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-plain-flip:
    - bat-bmg-1:          [PASS][11] -> [SKIP][12] ([Intel XE#2482])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-bmg-1/igt@kms_flip@basic-plain-flip.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-bmg-1/igt@kms_flip@basic-plain-flip.html

  * igt@xe_exec_threads@threads-mixed-shared-vm-basic:
    - bat-dg2-oem2:       [PASS][13] -> [INCOMPLETE][14] ([Intel XE#1169] / [Intel XE#1356])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html

  * igt@xe_live_ktest@xe_bo:
    - bat-lnl-1:          [PASS][15] -> [SKIP][16] ([Intel XE#2229]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
    - bat-lnl-2:          [PASS][17] -> [SKIP][18] ([Intel XE#2229]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-lnl-2/igt@xe_live_ktest@xe_bo.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-lnl-1:          [FAIL][19] ([Intel XE#886]) -> [PASS][20] +1 other test pass
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html

  
#### Warnings ####

  * igt@xe_live_ktest@xe_bo:
    - bat-adlp-vf:        [SKIP][21] ([Intel XE#455]) -> [SKIP][22] ([Intel XE#2229] / [Intel XE#455])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
    - bat-adlp-7:         [SKIP][23] ([Intel XE#455]) -> [SKIP][24] ([Intel XE#2229] / [Intel XE#455])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-adlp-7/igt@xe_live_ktest@xe_bo.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/bat-adlp-7/igt@xe_live_ktest@xe_bo.html

  
  [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
  [Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886


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

  * IGT: IGT_7967 -> IGTPW_11570
  * Linux: xe-1756-bb06cec392c188bc980be5cee9a85240ce866b78 -> xe-1763-02c35fc4e126599bc57696d25d9b78d612a7a847

  IGTPW_11570: 1600e47be7cbb052fdc72699ff970780f4f6e7e7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7967: 290bdef9033c8b185922f02cd05d62fcc0091c15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1756-bb06cec392c188bc980be5cee9a85240ce866b78: bb06cec392c188bc980be5cee9a85240ce866b78
  xe-1763-02c35fc4e126599bc57696d25d9b78d612a7a847: 02c35fc4e126599bc57696d25d9b78d612a7a847

== Logs ==

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

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

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

* ✗ CI.xeFULL: failure for Clear all KMS properties on reset (rev2)
  2024-08-13 13:15 [i-g-t 0/2] Clear all KMS properties on reset Bhanuprakash Modem
                   ` (6 preceding siblings ...)
  2024-08-14  4:00 ` ✗ CI.xeBAT: " Patchwork
@ 2024-08-14  5:04 ` Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-08-14  5:04 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Clear all KMS properties on reset (rev2)
URL   : https://patchwork.freedesktop.org/series/137236/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_7967_full -> XEIGTPW_11570_full
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_addfb_basic@invalid-get-prop:
    - shard-dg2-set2:     [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_addfb_basic@invalid-get-prop.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_addfb_basic@invalid-get-prop.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking:
    - shard-dg2-set2:     [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_atomic_transition@modeset-transition-nonblocking.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-dg2-set2:     NOTRUN -> [FAIL][5] +3 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][6]
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_content_protection@uevent.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-dg2-set2:     [PASS][7] -> [FAIL][8] +889 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][9] -> [SKIP][10] +28 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a-hdmi-a-6.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a-hdmi-a-6.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-lnl:          [PASS][11] -> [INCOMPLETE][12] +20 other tests incomplete
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_pm_backlight@basic-brightness.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-6/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@fbc-psr2-cursor-render@edp-1:
    - shard-lnl:          [PASS][13] -> [FAIL][14] +812 other tests fail
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html

  * igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1:
    - shard-lnl:          [PASS][15] -> [SKIP][16] +127 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1.html

  * igt@kms_vblank@wait-forked-hang@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][17] +21 other tests fail
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-7/igt@kms_vblank@wait-forked-hang@pipe-c-edp-1.html

  * igt@kms_vrr@cmrr:
    - shard-lnl:          [PASS][18] -> [CRASH][19]
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-5/igt@kms_vrr@cmrr.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-3/igt@kms_vrr@cmrr.html

  
#### Warnings ####

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-lnl:          [SKIP][20] ([Intel XE#599]) -> [INCOMPLETE][21] +11 other tests incomplete
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-dg2-set2:     [SKIP][22] ([Intel XE#455]) -> [INCOMPLETE][23]
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-lnl:          [FAIL][24] ([Intel XE#1659]) -> [FAIL][25] +1 other test fail
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][26] ([Intel XE#316]) -> [FAIL][27] +5 other tests fail
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-64bpp-rotate-180:
    - shard-dg2-set2:     [DMESG-WARN][28] ([Intel XE#877]) -> [FAIL][29]
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-180.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-180.html
    - shard-lnl:          [DMESG-WARN][30] ([Intel XE#1725]) -> [FAIL][31] +1 other test fail
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_big_fb@linear-64bpp-rotate-180.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-4/igt@kms_big_fb@linear-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][32] ([Intel XE#1201] / [Intel XE#316]) -> [FAIL][33] +17 other tests fail
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
    - shard-lnl:          [SKIP][34] ([Intel XE#1407]) -> [FAIL][35] +21 other tests fail
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_cdclk@mode-transition:
    - shard-lnl:          [SKIP][36] ([Intel XE#314] / [Intel XE#599]) -> [FAIL][37]
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_cdclk@mode-transition.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-3/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     [SKIP][38] ([Intel XE#1201] / [Intel XE#314]) -> [FAIL][39]
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-b-edp-1:
    - shard-lnl:          [SKIP][40] ([Intel XE#314]) -> [FAIL][41] +2 other tests fail
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-3/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html

  * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][42] ([Intel XE#314]) -> [FAIL][43] +3 other tests fail
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html

  * igt@kms_cdclk@plane-scaling:
    - shard-lnl:          [SKIP][44] ([Intel XE#1152]) -> [FAIL][45] +3 other tests fail
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@kms_cdclk@plane-scaling.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-6/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     [SKIP][46] ([Intel XE#1152] / [Intel XE#1201]) -> [FAIL][47] +3 other tests fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][48] ([Intel XE#1201] / [Intel XE#373]) -> [FAIL][49] +45 other tests fail
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     [SKIP][50] ([Intel XE#373]) -> [FAIL][51] +11 other tests fail
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
    - shard-lnl:          [SKIP][52] ([Intel XE#373]) -> [FAIL][53] +55 other tests fail
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     [FAIL][54] ([Intel XE#1178]) -> [INCOMPLETE][55] +1 other test incomplete
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-dg2-set2:     [DMESG-FAIL][56] ([Intel XE#1551]) -> [FAIL][57] +3 other tests fail
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][58] ([Intel XE#1201] / [i915#3804]) -> [FAIL][59]
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          [SKIP][60] ([Intel XE#1401]) -> [FAIL][61] +24 other tests fail
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          [SKIP][62] ([Intel XE#1397]) -> [FAIL][63] +8 other tests fail
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
    - shard-lnl:          [SKIP][64] ([Intel XE#1397] / [Intel XE#1745]) -> [FAIL][65] +8 other tests fail
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-dg2-set2:     [SKIP][66] ([Intel XE#455]) -> [FAIL][67] +5 other tests fail
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-dg2-set2:     [SKIP][68] ([Intel XE#1201] / [Intel XE#455]) -> [FAIL][69] +39 other tests fail
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
    - shard-lnl:          [SKIP][70] ([Intel XE#1401] / [Intel XE#1745]) -> [FAIL][71] +24 other tests fail
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-dg2-set2:     [DMESG-WARN][72] ([Intel XE#1162]) -> [FAIL][73]
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_plane@plane-position-covered:
    - shard-lnl:          [DMESG-WARN][74] ([Intel XE#324]) -> [SKIP][75]
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@kms_plane@plane-position-covered.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@kms_plane@plane-position-covered.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     [FAIL][76] ([Intel XE#616]) -> [FAIL][77] +14 other tests fail
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-lnl:          [SKIP][78] ([Intel XE#736]) -> [FAIL][79]
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [FAIL][80] ([Intel XE#718]) -> [FAIL][81]
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [FAIL][82] ([Intel XE#1430]) -> [FAIL][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          [FAIL][84] ([Intel XE#2029]) -> [FAIL][85]
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
    - shard-lnl:          [DMESG-WARN][86] ([Intel XE#1705]) -> [FAIL][87]
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][88] ([Intel XE#1127] / [Intel XE#1201]) -> [FAIL][89] +2 other tests fail
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-lnl:          [SKIP][90] ([Intel XE#1127]) -> [FAIL][91] +3 other tests fail
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][92] ([Intel XE#1127]) -> [FAIL][93]
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][94] ([Intel XE#1729]) -> [FAIL][95]
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-lnl:          [FAIL][96] ([Intel XE#899]) -> [FAIL][97] +1 other test fail
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4:
    - shard-dg2-set2:     [DMESG-WARN][98] ([Intel XE#1551]) -> [FAIL][99] +1 other test fail
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1:
    - shard-lnl:          [FAIL][100] ([Intel XE#2028]) -> [FAIL][101] +3 other tests fail
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-dg2-set2:     [DMESG-WARN][102] ([Intel XE#2019]) -> [FAIL][103] +3 other tests fail
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vrr@flip-basic:
    - shard-lnl:          [FAIL][104] ([Intel XE#2443]) -> [FAIL][105] +7 other tests fail
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_vrr@flip-basic.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-5/igt@kms_vrr@flip-basic.html

  * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
    - shard-dg2-set2:     [SKIP][106] ([Intel XE#1201]) -> [SKIP][107] +5 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html

  
#### Suppressed ####

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

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - {shard-bmg}:        [SKIP][108] ([Intel XE#2385]) -> [INCOMPLETE][109]
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@modeset-transition:
    - {shard-bmg}:        [PASS][110] -> [INCOMPLETE][111] +18 other tests incomplete
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_atomic_transition@modeset-transition.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-4/igt@kms_atomic_transition@modeset-transition.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking:
    - {shard-bmg}:        NOTRUN -> [INCOMPLETE][112]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-2/igt@kms_atomic_transition@modeset-transition-nonblocking.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
    - {shard-bmg}:        NOTRUN -> [SKIP][113] +1 other test skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-2/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - {shard-bmg}:        [SKIP][114] ([Intel XE#2327]) -> [FAIL][115] +22 other tests fail
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - {shard-bmg}:        [FAIL][116] ([Intel XE#1659]) -> [FAIL][117] +1 other test fail
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs@pipe-c-hdmi-a-3:
    - {shard-bmg}:        [FAIL][118] ([Intel XE#2400]) -> [FAIL][119] +17 other tests fail
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs@pipe-c-hdmi-a-3.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs@pipe-c-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3:
    - {shard-bmg}:        [FAIL][120] ([Intel XE#2436]) -> [FAIL][121] +1 other test fail
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-c-hdmi-a-3:
    - {shard-bmg}:        [PASS][122] -> [FAIL][123] +649 other tests fail
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-c-hdmi-a-3.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-c-hdmi-a-3.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - {shard-bmg}:        [SKIP][124] ([Intel XE#314]) -> [FAIL][125] +4 other tests fail
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-3:
    - {shard-bmg}:        [FAIL][126] ([Intel XE#2435]) -> [FAIL][127] +4 other tests fail
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-2/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-3.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-8/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-3.html

  * igt@kms_cdclk@plane-scaling@pipe-d-dp-2:
    - {shard-bmg}:        [SKIP][128] ([Intel XE#1152]) -> [FAIL][129] +3 other tests fail
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_cdclk@plane-scaling@pipe-d-dp-2.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-1/igt@kms_cdclk@plane-scaling@pipe-d-dp-2.html

  * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-3:
    - {shard-bmg}:        [FAIL][130] ([Intel XE#2429]) -> [FAIL][131] +4 other tests fail
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-3.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-1/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-3.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - {shard-bmg}:        [SKIP][132] ([Intel XE#2252]) -> [FAIL][133] +56 other tests fail
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_content_protection@atomic:
    - {shard-bmg}:        [FAIL][134] ([Intel XE#1178]) -> [INCOMPLETE][135] +3 other tests incomplete
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-6/igt@kms_content_protection@atomic.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-1/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@content-type-change:
    - {shard-bmg}:        [SKIP][136] ([Intel XE#2341]) -> [INCOMPLETE][137] +3 other tests incomplete
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_content_protection@content-type-change.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-1/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@uevent:
    - {shard-bmg}:        [FAIL][138] ([Intel XE#1188]) -> [INCOMPLETE][139]
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@kms_content_protection@uevent.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-suspend:
    - {shard-bmg}:        [FAIL][140] ([Intel XE#2428]) -> [FAIL][141] +2 other tests fail
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-5/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - {shard-bmg}:        [DMESG-WARN][142] ([Intel XE#877]) -> [SKIP][143] +1 other test skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - {shard-bmg}:        [SKIP][144] ([Intel XE#1340]) -> [FAIL][145]
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - {shard-bmg}:        [SKIP][146] ([Intel XE#2380]) -> [FAIL][147] +1 other test fail
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - {shard-bmg}:        [SKIP][148] ([Intel XE#2293] / [Intel XE#2380]) -> [FAIL][149] +24 other tests fail
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - {shard-bmg}:        [SKIP][150] ([Intel XE#2293]) -> [FAIL][151] +24 other tests fail
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-3-4-to-4:
    - {shard-bmg}:        [PASS][152] -> [SKIP][153] +155 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-3-4-to-4.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-8/igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-3-4-to-4.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - {shard-bmg}:        [FAIL][154] ([Intel XE#2333]) -> [FAIL][155] +82 other tests fail
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - {shard-bmg}:        [FAIL][156] ([Intel XE#1861]) -> [FAIL][157]
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_hdr@static-toggle-suspend:
    - {shard-bmg}:        [FAIL][158] ([Intel XE#2382]) -> [INCOMPLETE][159]
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_lease@page-flip-implicit-plane@pipe-c-hdmi-a-3:
    - {shard-bmg}:        NOTRUN -> [FAIL][160] +34 other tests fail
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-4/igt@kms_lease@page-flip-implicit-plane@pipe-c-hdmi-a-3.html

  * igt@kms_plane@pixel-format-source-clamping:
    - {shard-bmg}:        [DMESG-WARN][161] ([Intel XE#877]) -> [INCOMPLETE][162]
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-3/igt@kms_plane@pixel-format-source-clamping.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - {shard-bmg}:        [FAIL][163] ([Intel XE#2376]) -> [FAIL][164] +2 other tests fail
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-4/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane_lowres@tiling-4@pipe-a-dp-2:
    - {shard-bmg}:        [FAIL][165] ([Intel XE#2058]) -> [FAIL][166] +1 other test fail
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-3/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - {shard-bmg}:        [SKIP][167] ([Intel XE#2330]) -> [FAIL][168] +3 other tests fail
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-4:
    - shard-dg2-set2:     [PASS][169] -> [FAIL][170] ([Intel XE#827]) +1 other test fail
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-4.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-4.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][171] ([Intel XE#1201] / [Intel XE#873])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-dg2-set2:     [PASS][172] -> [INCOMPLETE][173] ([Intel XE#1195]) +18 other tests incomplete
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing:
    - shard-lnl:          [PASS][174] -> [FAIL][175] ([Intel XE#1426]) +7 other tests fail
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-3/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][176] -> [FAIL][177] ([Intel XE#1426]) +5 other tests fail
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][178] ([Intel XE#1124])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][179] ([Intel XE#1124] / [Intel XE#1201])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][180] ([Intel XE#1124]) +2 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@basic-force-joiner:
    - shard-lnl:          [PASS][181] -> [FAIL][182] ([Intel XE#2267]) +1 other test fail
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_big_joiner@basic-force-joiner.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-5/igt@kms_big_joiner@basic-force-joiner.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][183] ([Intel XE#2191])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-7/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-lnl:          [PASS][184] -> [SKIP][185] ([Intel XE#367]) +6 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-7/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][186] ([Intel XE#1399]) +1 other test skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][187] ([Intel XE#1201] / [Intel XE#787]) +13 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][188] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-dg2-set2:     NOTRUN -> [SKIP][189] ([Intel XE#1201] / [Intel XE#306])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_cursor_crc@cursor-onscreen-64x64:
    - shard-dg2-set2:     [PASS][190] -> [SKIP][191] ([Intel XE#1201] / [Intel XE#455]) +47 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-64x64.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-64x64.html

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

  * igt@kms_cursor_crc@cursor-sliding-64x64:
    - shard-dg2-set2:     [PASS][193] -> [SKIP][194] ([Intel XE#455]) +9 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-64x64.html
    - shard-lnl:          [PASS][195] -> [SKIP][196] ([Intel XE#1424]) +13 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-64x64.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-64x64.html

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

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [PASS][198] -> [INCOMPLETE][199] ([Intel XE#1195] / [Intel XE#2019])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][200] -> [DMESG-WARN][201] ([Intel XE#2019])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-edp1:
    - shard-lnl:          [PASS][202] -> [FAIL][203] ([Intel XE#1901] / [Intel XE#2028]) +1 other test fail
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-2/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
    - shard-lnl:          [PASS][204] -> [FAIL][205] ([Intel XE#1901])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-2/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-lnl:          NOTRUN -> [SKIP][206] ([Intel XE#352])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][207] ([Intel XE#1201] / [Intel XE#651])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][208] ([Intel XE#651])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
    - shard-lnl:          NOTRUN -> [SKIP][209] ([Intel XE#651]) +1 other test skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][210] ([Intel XE#656]) +4 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][211] ([Intel XE#1503] / [Intel XE#599])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_plane@pixel-format-source-clamping:
    - shard-dg2-set2:     [PASS][212] -> [INCOMPLETE][213] ([Intel XE#1035] / [Intel XE#1195]) +2 other tests incomplete
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_plane@pixel-format-source-clamping.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_plane@pixel-format-source-clamping.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][214] -> [FAIL][215] ([Intel XE#361])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c-edp-1:
    - shard-lnl:          [PASS][216] -> [SKIP][217] ([Intel XE#498]) +11 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c-edp-1.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c-edp-1.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][218] -> [SKIP][219] ([Intel XE#1201]) +376 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-hdmi-a-6.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-hdmi-a-6.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
    - shard-dg2-set2:     [PASS][220] -> [SKIP][221] ([Intel XE#455] / [Intel XE#498]) +4 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
    - shard-dg2-set2:     [PASS][222] -> [SKIP][223] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +12 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [PASS][224] -> [SKIP][225] ([Intel XE#2318] / [Intel XE#455]) +9 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d-hdmi-a-6.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b-edp-1:
    - shard-lnl:          [PASS][226] -> [SKIP][227] ([Intel XE#2318]) +27 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b-edp-1.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b-edp-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][228] -> [SKIP][229] ([Intel XE#1201] / [Intel XE#2318]) +35 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b-hdmi-a-6.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25:
    - shard-dg2-set2:     [PASS][230] -> [SKIP][231] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +23 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_plane_scaling@planes-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][232] -> [SKIP][233] ([Intel XE#2318]) +14 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-6.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-6.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-lnl:          [PASS][234] -> [SKIP][235] ([Intel XE#870])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-5/igt@kms_pm_backlight@bad-brightness.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-8/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-lnl:          NOTRUN -> [SKIP][236] ([Intel XE#1406])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-5/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][237] ([Intel XE#929])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@pr-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][238] ([Intel XE#1201] / [Intel XE#929]) +1 other test skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_psr@pr-suspend.html

  * igt@xe_evict@evict-beng-large-external-cm:
    - shard-lnl:          NOTRUN -> [SKIP][239] ([Intel XE#688])
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@xe_evict@evict-beng-large-external-cm.html

  * igt@xe_evict@evict-threads-large:
    - shard-dg2-set2:     [PASS][240] -> [TIMEOUT][241] ([Intel XE#1473])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_evict@evict-threads-large.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@xe_evict@evict-threads-large.html

  * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][242] ([Intel XE#1201] / [Intel XE#288]) +1 other test skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [PASS][243] -> [TIMEOUT][244] ([Intel XE#2105])
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][245] ([Intel XE#1201] / [Intel XE#979])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html

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

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-lnl:          [PASS][247] -> [FAIL][248] ([Intel XE#2028]) +4 other tests fail
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-dg2-set2:     [PASS][249] -> [DMESG-WARN][250] ([Intel XE#1551] / [Intel XE#569])
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_pm@s3-multiple-execs.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-dg2-set2:     [PASS][251] -> [DMESG-WARN][252] ([Intel XE#1162] / [Intel XE#569])
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@xe_pm@s3-vm-bind-unbind-all.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s4-basic:
    - shard-lnl:          [PASS][253] -> [ABORT][254] ([Intel XE#1358] / [Intel XE#1607])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@xe_pm@s4-basic.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-2/igt@xe_pm@s4-basic.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-dg2-set2:     [PASS][255] -> [DMESG-WARN][256] ([Intel XE#2019] / [Intel XE#2280])
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_pm@s4-vm-bind-unbind-all.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_pm_residency@gt-c6-freeze:
    - shard-lnl:          [PASS][257] -> [FAIL][258] ([Intel XE#2028] / [Intel XE#2512]) +1 other test fail
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@xe_pm_residency@gt-c6-freeze.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@xe_pm_residency@gt-c6-freeze.html

  
#### Possible fixes ####

  * igt@fbdev@unaligned-read:
    - {shard-bmg}:        [DMESG-WARN][259] ([Intel XE#877]) -> [PASS][260]
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-2/igt@fbdev@unaligned-read.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-4/igt@fbdev@unaligned-read.html

  * igt@kms_async_flips@async-flip-with-page-flip-events:
    - shard-dg2-set2:     [DMESG-WARN][261] ([Intel XE#1705]) -> [PASS][262]
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [FAIL][263] ([Intel XE#718]) -> [PASS][264]
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_universal_plane@cursor-fb-leak:
    - {shard-bmg}:        [FAIL][265] ([Intel XE#899]) -> [PASS][266] +1 other test pass
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_universal_plane@cursor-fb-leak.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-1/igt@kms_universal_plane@cursor-fb-leak.html

  * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
    - shard-dg2-set2:     [DMESG-WARN][267] -> [PASS][268] +1 other test pass
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html

  * igt@xe_evict@evict-cm-threads-large:
    - {shard-bmg}:        [TIMEOUT][269] ([Intel XE#1473]) -> [PASS][270] +1 other test pass
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-2/igt@xe_evict@evict-cm-threads-large.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-4/igt@xe_evict@evict-cm-threads-large.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-dg2-set2:     [TIMEOUT][271] ([Intel XE#1473]) -> [PASS][272] +2 other tests pass
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_module_load@unload:
    - shard-dg2-set2:     [DMESG-WARN][273] ([Intel XE#1551] / [Intel XE#2019]) -> [PASS][274]
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_module_load@unload.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@xe_module_load@unload.html

  * igt@xe_oa@mmio-triggered-reports:
    - {shard-bmg}:        [FAIL][275] ([Intel XE#2249]) -> [PASS][276] +1 other test pass
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-8/igt@xe_oa@mmio-triggered-reports.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-bmg-8/igt@xe_oa@mmio-triggered-reports.html
    - shard-lnl:          [FAIL][277] ([Intel XE#2249]) -> [PASS][278]
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-3/igt@xe_oa@mmio-triggered-reports.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-lnl:          [FAIL][279] ([Intel XE#2028]) -> [PASS][280]
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@xe_pm@s2idle-basic-exec.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-4/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s2idle-vm-bind-userptr:
    - shard-lnl:          [FAIL][281] -> [PASS][282]
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@xe_pm@s2idle-vm-bind-userptr.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-7/igt@xe_pm@s2idle-vm-bind-userptr.html

  * igt@xe_pm@s3-basic-exec:
    - shard-dg2-set2:     [DMESG-WARN][283] ([Intel XE#1551] / [Intel XE#569]) -> [PASS][284]
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_pm@s3-basic-exec.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-dg2-set2:     [INCOMPLETE][285] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][286]
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_pm@s4-d3hot-basic-exec.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@xe_pm@s4-d3hot-basic-exec.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-lnl:          [ABORT][287] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][288]
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-lnl-4/igt@xe_pm@s4-vm-bind-prefetch.html

  
#### Warnings ####

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][289] ([Intel XE#607]) -> [SKIP][290] ([Intel XE#1201] / [Intel XE#607])
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][291] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][292] ([Intel XE#1124]) +8 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][293] ([Intel XE#1124]) -> [SKIP][294] ([Intel XE#1124] / [Intel XE#1201]) +9 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     [SKIP][295] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][296] ([Intel XE#619])
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][297] ([Intel XE#1201] / [Intel XE#607]) -> [SKIP][298] ([Intel XE#607])
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-dg2-set2:     [SKIP][299] ([Intel XE#1201] / [Intel XE#346]) -> [SKIP][300] ([Intel XE#346])
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_big_joiner@invalid-modeset.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][301] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][302] ([Intel XE#2191])
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][303] ([Intel XE#2191]) -> [SKIP][304] ([Intel XE#1201] / [Intel XE#2191])
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][305] ([Intel XE#367]) -> [SKIP][306] ([Intel XE#1201] / [Intel XE#367]) +5 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][307] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][308] ([Intel XE#367])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][309] ([Intel XE#787]) -> [SKIP][310] ([Intel XE#1201] / [Intel XE#787]) +48 other tests skip
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-ccs:
    - shard-dg2-set2:     [SKIP][311] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][312] ([Intel XE#1201])
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-ccs.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][313] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][314] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][317] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][318] ([Intel XE#1201])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][319] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][320] ([Intel XE#787]) +76 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-dg2-set2:     [SKIP][321] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][322] ([Intel XE#306]) +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_chamelium_color@ctm-0-50.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     [SKIP][323] ([Intel XE#306]) -> [SKIP][324] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_chamelium_color@gamma.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_chamelium_color@gamma.html

  * igt@kms_content_protection@atomic:
    - shard-dg2-set2:     [FAIL][325] ([Intel XE#1178]) -> [INCOMPLETE][326] ([Intel XE#1195])
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_content_protection@atomic.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@content-type-change:
    - shard-dg2-set2:     [SKIP][327] ([Intel XE#455]) -> [INCOMPLETE][328] ([Intel XE#1195])
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_content_protection@content-type-change.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_content_protection@content-type-change.html

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

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2-set2:     [SKIP][331] ([Intel XE#307]) -> [SKIP][332] ([Intel XE#1201] / [Intel XE#307])
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@lic-type-0:
    - shard-dg2-set2:     [FAIL][333] ([Intel XE#1178] / [Intel XE#1204]) -> [INCOMPLETE][334] ([Intel XE#1195])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_content_protection@lic-type-0.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2-set2:     [SKIP][335] ([Intel XE#1201] / [Intel XE#455]) -> [INCOMPLETE][336] ([Intel XE#1195]) +2 other tests incomplete
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_content_protection@lic-type-1.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_content_protection@lic-type-1.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-dg2-set2:     [SKIP][337] ([Intel XE#308]) -> [SKIP][338] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-dg2-set2:     [SKIP][339] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][340] ([Intel XE#308])
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x170.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2-set2:     [SKIP][341] ([Intel XE#323]) -> [SKIP][342] ([Intel XE#1201] / [Intel XE#323])
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2-set2:     [SKIP][343] ([Intel XE#776]) -> [SKIP][344] ([Intel XE#1201] / [Intel XE#776])
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     [SKIP][345] ([Intel XE#701]) -> [SKIP][346] ([Intel XE#1201] / [Intel XE#701])
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][347] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][348] ([Intel XE#1135])
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_feature_discovery@psr1.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_feature_discovery@psr1.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-dg2-set2:     [SKIP][349] ([Intel XE#1201] / [i915#5274]) -> [SKIP][350] ([i915#5274])
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_force_connector_basic@prune-stale-modes.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-dg2-set2:     [SKIP][351] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][352] ([Intel XE#1201])
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2-set2:     [SKIP][353] ([Intel XE#651]) -> [SKIP][354] ([Intel XE#1201] / [Intel XE#651]) +24 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][355] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][356] ([Intel XE#651]) +23 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     [SKIP][357] ([Intel XE#658]) -> [SKIP][358] ([Intel XE#1201] / [Intel XE#658])
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][359] ([Intel XE#653]) -> [SKIP][360] ([Intel XE#1201] / [Intel XE#653]) +23 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     [SKIP][361] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][362] ([Intel XE#653]) +29 other tests skip
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     [SKIP][363] ([Intel XE#1158]) -> [SKIP][364] ([Intel XE#1158] / [Intel XE#1201])
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-dg2-set2:     [SKIP][365] ([Intel XE#605]) -> [SKIP][366] ([Intel XE#1201] / [Intel XE#605])
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2-set2:     [FAIL][367] ([Intel XE#616]) -> [INCOMPLETE][368] ([Intel XE#1195])
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_hdr@static-toggle-suspend.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2-set2:     [SKIP][369] ([Intel XE#356]) -> [SKIP][370] ([Intel XE#1201] / [Intel XE#356])
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-dg2-set2:     [SKIP][371] ([Intel XE#455]) -> [SKIP][372] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_lowres@tiling-y.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][373] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][374] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][375] ([Intel XE#2318]) -> [SKIP][376] ([Intel XE#1201] / [Intel XE#2318]) +2 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
    - shard-dg2-set2:     [SKIP][377] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][378] ([Intel XE#2318] / [Intel XE#455]) +1 other test skip
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html

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

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-dg2-set2:     [SKIP][381] ([Intel XE#870]) -> [SKIP][382] ([Intel XE#1201] / [Intel XE#870]) +1 other test skip
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_pm_backlight@fade-with-dpms.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_pm_backlight@fade-with-dpms.html

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

  * igt@kms_pm_dc@deep-pkgc:
    - shard-dg2-set2:     [SKIP][385] ([Intel XE#908]) -> [SKIP][386] ([Intel XE#1201] / [Intel XE#908])
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_pm_dc@deep-pkgc.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][387] ([Intel XE#1489]) -> [SKIP][388] ([Intel XE#1201] / [Intel XE#1489]) +4 other tests skip
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][389] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][390] ([Intel XE#1489]) +4 other tests skip
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     [SKIP][391] ([Intel XE#1122]) -> [SKIP][392] ([Intel XE#1122] / [Intel XE#1201])
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-433/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     [SKIP][393] ([Intel XE#929]) -> [SKIP][394] ([Intel XE#1201] / [Intel XE#929]) +13 other tests skip
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr@psr-dpms.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@kms_psr@psr-dpms.html

  * igt@kms_psr@psr2-basic:
    - shard-dg2-set2:     [SKIP][395] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][396] ([Intel XE#929]) +13 other tests skip
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_psr@psr2-basic.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_psr@psr2-basic.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg2-set2:     [SKIP][397] ([Intel XE#1149]) -> [SKIP][398] ([Intel XE#1149] / [Intel XE#1201])
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-dg2-set2:     [SKIP][399] ([Intel XE#327]) -> [SKIP][400] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_rotation_crc@bad-tiling.html

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

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2-set2:     [SKIP][403] ([Intel XE#1201] / [Intel XE#362]) -> [SKIP][404] ([Intel XE#1201] / [Intel XE#1500])
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

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

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][407] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][408] ([Intel XE#455]) +5 other tests skip
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_vrr@flipline.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@kms_vrr@flipline.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2-set2:     [SKIP][409] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][410] ([Intel XE#1091])
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_compute_preempt@compute-preempt:
    - shard-dg2-set2:     [SKIP][411] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][412] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][413] ([Intel XE#1123]) -> [SKIP][414] ([Intel XE#1123] / [Intel XE#1201])
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][415] ([Intel XE#1126]) -> [SKIP][416] ([Intel XE#1126] / [Intel XE#1201])
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][417] ([Intel XE#1195] / [Intel XE#1473]) -> [TIMEOUT][418] ([Intel XE#1041] / [Intel XE#1473])
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_exec_fault_mode@once-rebind-imm:
    - shard-dg2-set2:     [SKIP][419] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][420] ([Intel XE#288]) +21 other tests skip
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-imm.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-imm.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     [SKIP][421] ([Intel XE#288]) -> [SKIP][422] ([Intel XE#1201] / [Intel XE#288]) +22 other tests skip
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_mmap@small-bar:
    - shard-dg2-set2:     [SKIP][423] ([Intel XE#1201] / [Intel XE#512]) -> [SKIP][424] ([Intel XE#512])
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@xe_mmap@small-bar.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@xe_mmap@small-bar.html

  * igt@xe_oa@polling-small-buf:
    - shard-dg2-set2:     [SKIP][425] -> [SKIP][426] ([Intel XE#1201]) +7 other tests skip
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_oa@polling-small-buf.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@xe_oa@polling-small-buf.html

  * igt@xe_pat@pat-index-xe2:
    - shard-dg2-set2:     [SKIP][427] ([Intel XE#1201] / [Intel XE#977]) -> [SKIP][428] ([Intel XE#977])
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_pat@pat-index-xe2.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][429] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][430] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_pm@s2idle-d3cold-basic-exec.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     [SKIP][431] ([Intel XE#579]) -> [SKIP][432] ([Intel XE#1201] / [Intel XE#579])
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_pm@vram-d3cold-threshold.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     [SKIP][433] ([Intel XE#944]) -> [SKIP][434] ([Intel XE#1201] / [Intel XE#944])
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11570/shard-dg2-463/igt@xe_query@multigpu-query-invalid-cs-cycles.html

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

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

  [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
  [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#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
  [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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [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#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1540
  [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1705
  [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
  [Intel XE#1901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1901
  [Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
  [Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2058]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2058
  [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
  [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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
  [Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2267]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2267
  [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2376
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2382
  [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
  [Intel XE#2400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2400
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2428
  [Intel XE#2429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2429
  [Intel XE#2435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2435
  [Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
  [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2512
  [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [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#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
  [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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [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#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274


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

  * IGT: IGT_7967 -> IGTPW_11570
  * Linux: xe-1756-bb06cec392c188bc980be5cee9a85240ce866b78 -> xe-1763-02c35fc4e126599bc57696d25d9b78d612a7a847

  IGTPW_11570: 1600e47be7cbb052fdc72699ff970780f4f6e7e7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7967: 290bdef9033c8b185922f02cd05d62fcc0091c15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1756-bb06cec392c188bc980be5cee9a85240ce866b78: bb06cec392c188bc980be5cee9a85240ce866b78
  xe-1763-02c35fc4e126599bc57696d25d9b78d612a7a847: 02c35fc4e126599bc57696d25d9b78d612a7a847

== Logs ==

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

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

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

end of thread, other threads:[~2024-08-14  5:04 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-13 13:15 [i-g-t 0/2] Clear all KMS properties on reset Bhanuprakash Modem
2024-08-13 13:15 ` [i-g-t 1/2] lib/igt_kms: Clear all pipe " Bhanuprakash Modem
2024-08-13 13:15 ` [i-g-t 2/2] lib/igt_kms: Clear all connector " Bhanuprakash Modem
2024-08-13 15:26 ` ✗ CI.xeBAT: failure for Clear all KMS " Patchwork
2024-08-13 15:38 ` ✗ Fi.CI.BAT: " Patchwork
2024-08-13 17:54 ` ✗ CI.xeFULL: " Patchwork
2024-08-14  3:58 ` ✗ Fi.CI.BAT: failure for Clear all KMS properties on reset (rev2) Patchwork
2024-08-14  4:00 ` ✗ CI.xeBAT: " Patchwork
2024-08-14  5:04 ` ✗ CI.xeFULL: " Patchwork

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