public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t v1] README: Document skip message format
@ 2026-04-01  4:33 Sowmiya S
  2026-04-01  4:51 ` ✓ Xe.CI.BAT: success for " Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: Sowmiya S @ 2026-04-01  4:33 UTC (permalink / raw)
  To: igt-dev; +Cc: karthik.b.s, swati2.sharma, Sowmiya S

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2066 bytes --]

Add a concise guide for writing consistent, machine-friendly skip
messages in IGT tests. Defines the format:

  SKIP: <reason> [(<context_type>: <value>)]

along with common context types, example messages and a code snippet.

Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
---
 README.md | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/README.md b/README.md
index b4b9a37ea..a652cc0d1 100644
--- a/README.md
+++ b/README.md
@@ -188,3 +188,40 @@ Imported non-DRM uapi headers from airlied's drm-next branch.
 
 Then, commit with a note of which exact commit from airlied's branch
 was used to generate them.
+
+Skip Message Format
+-------------------
+
+Keep skip messages consistent and machine-friendly. Use this concise
+format and include a single, most-relevant context when available:
+
+- Format: `SKIP: <reason> [(<context_type>: <value>)]` (always end with `\n`)
+- Rules: start with `SKIP:`, use a short lowercase `reason`, include at
+    most one `context` in parentheses, use `0x%llx` for modifiers, and
+    do not add a trailing period.
+
+### `Common context types and examples:`
+
+- `connector`: display connector name — `(connector: HDMI-A-1)`
+- `plane`: plane type — `(plane: primary)`
+- `format`: fourcc format — `(format: NV12)`
+- `modifier`: buffer modifier (hex) — `(modifier: 0x%llx)`
+- `pipe`: pipe id/name — `(pipe: A)`
+- `platform`: GPU/platform name — `(platform: i915)`
+
+### `Common concise messages:`
+
+- `SKIP: no suitable connector available`
+- `SKIP: connector is disconnected (connector: %s)`
+- `SKIP: no suitable display mode available (connector: %s)`
+- `SKIP: format not supported (plane: %s, format: %s)`
+- `SKIP: modifier not supported (modifier: 0x%llx)`
+- `SKIP: plane not available (plane: %s)`
+
+### `Example usage:`
+
+```c
+        igt_skip_on_f(!fmt_supported(plane, fmt),
+                            "SKIP: format not supported (plane: %s, format: %s)\n",
+                            igt_plane_name(plane), igt_format_str(fmt));
+```
-- 
2.43.0


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

* ✓ Xe.CI.BAT: success for README: Document skip message format
  2026-04-01  4:33 [PATCH i-g-t v1] README: Document skip message format Sowmiya S
@ 2026-04-01  4:51 ` Patchwork
  2026-04-01  5:02 ` ✓ i915.CI.BAT: " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-01  4:51 UTC (permalink / raw)
  To: Sowmiya S; +Cc: igt-dev

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

== Series Details ==

Series: README: Document skip message format
URL   : https://patchwork.freedesktop.org/series/164213/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8839_BAT -> XEIGTPW_14900_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_waitfence@engine:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2] ([Intel XE#6519])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/bat-dg2-oem2/igt@xe_waitfence@engine.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14900/bat-dg2-oem2/igt@xe_waitfence@engine.html

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [PASS][3] -> [FAIL][4] ([Intel XE#6520])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14900/bat-dg2-oem2/igt@xe_waitfence@reltime.html

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


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

  * IGT: IGT_8839 -> IGTPW_14900
  * Linux: xe-4826-e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d -> xe-4830-e024431a4dc3a2cc320e6093dd95d0c5d0e2935f

  IGTPW_14900: 14900
  IGT_8839: 8839
  xe-4826-e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d: e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d
  xe-4830-e024431a4dc3a2cc320e6093dd95d0c5d0e2935f: e024431a4dc3a2cc320e6093dd95d0c5d0e2935f

== Logs ==

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

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

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

* ✓ i915.CI.BAT: success for README: Document skip message format
  2026-04-01  4:33 [PATCH i-g-t v1] README: Document skip message format Sowmiya S
  2026-04-01  4:51 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-04-01  5:02 ` Patchwork
  2026-04-01 11:26 ` ✓ Xe.CI.FULL: " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-01  5:02 UTC (permalink / raw)
  To: Sowmiya S; +Cc: igt-dev

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

== Series Details ==

Series: README: Document skip message format
URL   : https://patchwork.freedesktop.org/series/164213/
State : success

== Summary ==

CI Bug Log - changes from IGT_8839 -> IGTPW_14900
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (42 -> 40)
------------------------------

  Missing    (2): bat-dg2-13 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live:
    - bat-dg2-8:          [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8839/bat-dg2-8/igt@i915_selftest@live.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/bat-dg2-8/igt@i915_selftest@live.html

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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8839 -> IGTPW_14900
  * Linux: CI_DRM_18255 -> CI_DRM_18259

  CI-20190529: 20190529
  CI_DRM_18255: e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18259: e024431a4dc3a2cc320e6093dd95d0c5d0e2935f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14900: 14900
  IGT_8839: 8839

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for README: Document skip message format
  2026-04-01  4:33 [PATCH i-g-t v1] README: Document skip message format Sowmiya S
  2026-04-01  4:51 ` ✓ Xe.CI.BAT: success for " Patchwork
  2026-04-01  5:02 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-01 11:26 ` Patchwork
  2026-04-01 21:17 ` ✗ i915.CI.Full: failure " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-01 11:26 UTC (permalink / raw)
  To: Sowmiya S; +Cc: igt-dev

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

== Series Details ==

Series: README: Document skip message format
URL   : https://patchwork.freedesktop.org/series/164213/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8839_FULL -> XEIGTPW_14900_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_exec_multi_queue@many-queues-close-fd:
    - shard-lnl:          NOTRUN -> [SKIP][1] ([Intel XE#6874])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14900/shard-lnl-2/igt@xe_exec_multi_queue@many-queues-close-fd.html

  
#### Warnings ####

  * igt@xe_pat@pat-index-xehpc:
    - shard-lnl:          [SKIP][2] ([Intel XE#1420] / [Intel XE#2838]) -> [SKIP][3] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/shard-lnl-2/igt@xe_pat@pat-index-xehpc.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14900/shard-lnl-5/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - shard-lnl:          [SKIP][4] ([Intel XE#977]) -> [SKIP][5] ([Intel XE#7590] / [Intel XE#977])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/shard-lnl-8/igt@xe_pat@pat-index-xelp.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14900/shard-lnl-8/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-lnl:          [SKIP][6] ([Intel XE#979]) -> [SKIP][7] ([Intel XE#7590] / [Intel XE#979])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/shard-lnl-6/igt@xe_pat@pat-index-xelpg.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14900/shard-lnl-8/igt@xe_pat@pat-index-xelpg.html

  
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * IGT: IGT_8839 -> IGTPW_14900
  * Linux: xe-4826-e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d -> xe-4830-e024431a4dc3a2cc320e6093dd95d0c5d0e2935f

  IGTPW_14900: 14900
  IGT_8839: 8839
  xe-4826-e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d: e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d
  xe-4830-e024431a4dc3a2cc320e6093dd95d0c5d0e2935f: e024431a4dc3a2cc320e6093dd95d0c5d0e2935f

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for README: Document skip message format
  2026-04-01  4:33 [PATCH i-g-t v1] README: Document skip message format Sowmiya S
                   ` (2 preceding siblings ...)
  2026-04-01 11:26 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-04-01 21:17 ` Patchwork
  2026-04-02  9:59 ` [PATCH i-g-t v1] " Kamil Konieczny
  2026-04-02 12:51 ` Jani Nikula
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-01 21:17 UTC (permalink / raw)
  To: Sowmiya S; +Cc: igt-dev

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

== Series Details ==

Series: README: Document skip message format
URL   : https://patchwork.freedesktop.org/series/164213/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_18259_full -> IGTPW_14900_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_pm_rpm@gem-mmap-type:
    - shard-dg1:          [PASS][1] -> [SKIP][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-16/igt@i915_pm_rpm@gem-mmap-type.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-14/igt@i915_pm_rpm@gem-mmap-type.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-rkl:          NOTRUN -> [SKIP][3] ([i915#14544] / [i915#8411])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@device_reset@cold-reset-bound:
    - shard-rkl:          NOTRUN -> [SKIP][4] ([i915#11078])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@device_reset@cold-reset-bound.html

  * igt@drm_buddy@drm_buddy:
    - shard-rkl:          NOTRUN -> [SKIP][5] ([i915#15678])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-2/igt@drm_buddy@drm_buddy.html

  * igt@gem_basic@multigpu-create-close:
    - shard-rkl:          NOTRUN -> [SKIP][6] ([i915#7697])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@gem_basic@multigpu-create-close.html

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

  * igt@gem_ctx_isolation@preservation-s3:
    - shard-rkl:          [PASS][8] -> [INCOMPLETE][9] ([i915#13356]) +2 other tests incomplete
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@gem_ctx_isolation@preservation-s3.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html

  * igt@gem_ctx_persistence@file:
    - shard-snb:          NOTRUN -> [SKIP][10] ([i915#1099]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-snb4/igt@gem_ctx_persistence@file.html

  * igt@gem_ctx_persistence@heartbeat-stop:
    - shard-dg1:          NOTRUN -> [SKIP][11] ([i915#8555])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglu:         NOTRUN -> [SKIP][12] ([i915#280])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-5/igt@gem_ctx_sseu@engines.html

  * igt@gem_exec_balancer@bonded-false-hang:
    - shard-dg2:          NOTRUN -> [SKIP][13] ([i915#4812])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@gem_exec_balancer@bonded-false-hang.html

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

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

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

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

  * igt@gem_exec_capture@capture-invisible@lmem0:
    - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#6334]) +2 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@gem_exec_capture@capture-invisible@lmem0.html
    - shard-dg1:          NOTRUN -> [SKIP][19] ([i915#6334]) +2 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-17/igt@gem_exec_capture@capture-invisible@lmem0.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-rkl:          NOTRUN -> [SKIP][20] ([i915#14544] / [i915#6334]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
    - shard-tglu:         NOTRUN -> [SKIP][21] ([i915#6334]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html
    - shard-mtlp:         NOTRUN -> [SKIP][22] ([i915#6334]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-5/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-dg2:          NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +2 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_flush@basic-uc-prw-default:
    - shard-dg2:          NOTRUN -> [SKIP][24] ([i915#3539])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-7/igt@gem_exec_flush@basic-uc-prw-default.html

  * igt@gem_exec_flush@basic-wb-ro-before-default:
    - shard-dg1:          NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-13/igt@gem_exec_flush@basic-wb-ro-before-default.html

  * igt@gem_exec_reloc@basic-concurrent16:
    - shard-dg1:          NOTRUN -> [SKIP][26] ([i915#3281]) +5 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-19/igt@gem_exec_reloc@basic-concurrent16.html

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

  * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][28] ([i915#3281]) +12 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html

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

  * igt@gem_exec_reloc@basic-write-wc:
    - shard-rkl:          NOTRUN -> [SKIP][30] ([i915#14544] / [i915#3281])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-dg1:          NOTRUN -> [SKIP][31] ([i915#4812])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-16/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_exec_suspend@basic-s3:
    - shard-glk:          NOTRUN -> [INCOMPLETE][32] ([i915#13196] / [i915#13356]) +1 other test incomplete
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk9/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_fence_thrash@bo-write-verify-none:
    - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#4860])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-none.html
    - shard-mtlp:         NOTRUN -> [SKIP][34] ([i915#4860])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-none.html
    - shard-dg2:          NOTRUN -> [SKIP][35] ([i915#4860])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-none.html

  * igt@gem_linear_blits@normal:
    - shard-dg1:          [PASS][36] -> [FAIL][37] ([i915#15391])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-15/igt@gem_linear_blits@normal.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-14/igt@gem_linear_blits@normal.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][38] ([i915#14544] / [i915#4613])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-tglu-1:       NOTRUN -> [SKIP][39] ([i915#4613])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-mtlp:         NOTRUN -> [SKIP][40] ([i915#4613])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random.html

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

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-glk:          NOTRUN -> [SKIP][42] ([i915#4613]) +4 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][43] ([i915#4613]) +3 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_mmap_gtt@cpuset-big-copy-odd:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#4077]) +6 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
    - shard-dg1:          NOTRUN -> [SKIP][45] ([i915#4077]) +4 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
    - shard-mtlp:         NOTRUN -> [SKIP][46] ([i915#4077]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-big-copy-odd.html

  * igt@gem_mmap_wc@pf-nonblock:
    - shard-dg2:          NOTRUN -> [SKIP][47] ([i915#4083]) +1 other test skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@gem_mmap_wc@pf-nonblock.html
    - shard-dg1:          NOTRUN -> [SKIP][48] ([i915#4083])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-17/igt@gem_mmap_wc@pf-nonblock.html
    - shard-mtlp:         NOTRUN -> [SKIP][49] ([i915#4083])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-5/igt@gem_mmap_wc@pf-nonblock.html

  * igt@gem_partial_pwrite_pread@reads-uncached:
    - shard-rkl:          NOTRUN -> [SKIP][50] ([i915#3282]) +7 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
    - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#3282]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#3282]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
    - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#3282]) +2 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html

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

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-dg1:          NOTRUN -> [SKIP][55] ([i915#4270]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-16/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-rkl:          NOTRUN -> [SKIP][56] ([i915#13717])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_pxp@reject-modify-context-protection-off-1:
    - shard-dg2:          NOTRUN -> [SKIP][57] ([i915#4270])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-1.html

  * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][58] ([i915#5190] / [i915#8428]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#8428]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-5/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html

  * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
    - shard-rkl:          NOTRUN -> [SKIP][60] ([i915#8411])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html

  * igt@gem_set_tiling_vs_gtt:
    - shard-dg2:          NOTRUN -> [SKIP][61] ([i915#4079])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-5/igt@gem_set_tiling_vs_gtt.html

  * igt@gem_tiled_pread_basic@basic:
    - shard-rkl:          NOTRUN -> [SKIP][62] ([i915#14544] / [i915#15656])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html

  * igt@gem_userptr_blits@map-fixed-invalidate:
    - shard-dg1:          NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate.html
    - shard-mtlp:         NOTRUN -> [SKIP][64] ([i915#3297])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-2/igt@gem_userptr_blits@map-fixed-invalidate.html

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

  * igt@gem_userptr_blits@relocations:
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#3281] / [i915#3297])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-6/igt@gem_userptr_blits@relocations.html
    - shard-rkl:          NOTRUN -> [SKIP][67] ([i915#3281] / [i915#3297])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@gem_userptr_blits@relocations.html
    - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#3281] / [i915#3297])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-19/igt@gem_userptr_blits@relocations.html
    - shard-mtlp:         NOTRUN -> [SKIP][69] ([i915#3281] / [i915#3297])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-5/igt@gem_userptr_blits@relocations.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-rkl:          NOTRUN -> [SKIP][70] ([i915#3297]) +1 other test skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-cycles.html

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

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-tglu:         NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-10/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-tglu-1:       NOTRUN -> [SKIP][73] ([i915#2527] / [i915#2856]) +2 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
    - shard-dg1:          NOTRUN -> [SKIP][74] ([i915#2527]) +1 other test skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-17/igt@gen9_exec_parse@bb-start-cmd.html
    - shard-mtlp:         NOTRUN -> [SKIP][75] ([i915#2856])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-5/igt@gen9_exec_parse@bb-start-cmd.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-rkl:          NOTRUN -> [SKIP][76] ([i915#14544] / [i915#2527])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#2856]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-1/igt@gen9_exec_parse@valid-registers.html
    - shard-rkl:          NOTRUN -> [SKIP][78] ([i915#2527]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-2/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_drm_fdinfo@busy-idle@bcs0:
    - shard-dg1:          NOTRUN -> [SKIP][79] ([i915#14073]) +11 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-18/igt@i915_drm_fdinfo@busy-idle@bcs0.html

  * igt@i915_drm_fdinfo@busy-idle@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][80] ([i915#14073]) +13 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-8/igt@i915_drm_fdinfo@busy-idle@rcs0.html

  * igt@i915_drm_fdinfo@busy-idle@vecs0:
    - shard-dg2:          NOTRUN -> [SKIP][81] ([i915#14073]) +15 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-5/igt@i915_drm_fdinfo@busy-idle@vecs0.html

  * igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
    - shard-dg1:          NOTRUN -> [INCOMPLETE][82] ([i915#15481])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-15/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html

  * igt@i915_module_load@fault-injection@intel_connector_register:
    - shard-tglu:         NOTRUN -> [ABORT][83] ([i915#15342]) +1 other test abort
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-10/igt@i915_module_load@fault-injection@intel_connector_register.html

  * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
    - shard-tglu:         NOTRUN -> [SKIP][84] ([i915#15479]) +4 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-10/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html

  * igt@i915_pm_freq_api@freq-basic-api:
    - shard-rkl:          NOTRUN -> [SKIP][85] ([i915#8399]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html

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

  * igt@i915_pm_rps@thresholds:
    - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#11681])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-1/igt@i915_pm_rps@thresholds.html
    - shard-dg1:          NOTRUN -> [SKIP][88] ([i915#11681]) +1 other test skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-18/igt@i915_pm_rps@thresholds.html
    - shard-mtlp:         NOTRUN -> [SKIP][89] ([i915#11681])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-8/igt@i915_pm_rps@thresholds.html

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

  * igt@i915_query@test-query-geometry-subslices:
    - shard-rkl:          NOTRUN -> [SKIP][91] ([i915#5723])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html
    - shard-dg1:          NOTRUN -> [SKIP][92] ([i915#5723])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-14/igt@i915_query@test-query-geometry-subslices.html
    - shard-tglu:         NOTRUN -> [SKIP][93] ([i915#5723])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html

  * igt@i915_selftest@live:
    - shard-dg1:          [PASS][94] -> [DMESG-FAIL][95] ([i915#15560])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-14/igt@i915_selftest@live.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-14/igt@i915_selftest@live.html

  * igt@i915_selftest@live@gem_contexts:
    - shard-dg1:          [PASS][96] -> [DMESG-FAIL][97] ([i915#15433])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-14/igt@i915_selftest@live@gem_contexts.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-14/igt@i915_selftest@live@gem_contexts.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - shard-rkl:          [PASS][98] -> [ABORT][99] ([i915#15131])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-8/igt@i915_suspend@basic-s2idle-without-i915.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-glk:          NOTRUN -> [INCOMPLETE][100] ([i915#4817])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html

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

  * igt@intel_hwmon@hwmon-read:
    - shard-rkl:          NOTRUN -> [SKIP][102] ([i915#7707])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@intel_hwmon@hwmon-read.html
    - shard-tglu-1:       NOTRUN -> [SKIP][103] ([i915#7707])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@intel_hwmon@hwmon-read.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][104] ([i915#4212])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html
    - shard-dg1:          NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@kms_addfb_basic@basic-x-tiled-legacy.html
    - shard-mtlp:         NOTRUN -> [SKIP][106] ([i915#4212])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-4/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@bo-too-small:
    - shard-dg1:          [PASS][107] -> [DMESG-WARN][108] ([i915#4391] / [i915#4423])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-15/igt@kms_addfb_basic@bo-too-small.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-14/igt@kms_addfb_basic@bo-too-small.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-tglu:         NOTRUN -> [SKIP][109] ([i915#9531])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-9/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-dg2:          NOTRUN -> [FAIL][110] ([i915#5956]) +1 other test fail
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

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

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
    - shard-dg2:          [PASS][113] -> [FAIL][114] ([i915#5956]) +1 other test fail
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg2-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-tglu-1:       NOTRUN -> [SKIP][115] ([i915#5286]) +1 other test skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-0:
    - shard-tglu:         NOTRUN -> [SKIP][116] ([i915#5286]) +2 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-3/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg1:          NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +2 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][118] ([i915#5286]) +8 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][119] ([i915#3828])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][120] ([i915#3638])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-15/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][121] ([i915#3638]) +3 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

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

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][123] +23 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][124] ([i915#4538]) +4 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-13/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#5190]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb.html
    - shard-mtlp:         NOTRUN -> [SKIP][126] ([i915#6187]) +1 other test skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][127] +7 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][128] ([i915#4423] / [i915#6095])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][129] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1:
    - shard-glk11:        NOTRUN -> [SKIP][130] +102 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk11/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#10307] / [i915#6095]) +107 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-glk10:        NOTRUN -> [SKIP][132] +69 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk10/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][133] ([i915#12313]) +2 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][134] ([i915#12313]) +1 other test skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][135] ([i915#12313]) +1 other test skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-9/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][136] ([i915#12313]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][137] ([i915#6095]) +68 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
    - shard-dg1:          [PASS][138] -> [DMESG-WARN][139] ([i915#4423]) +6 other tests dmesg-warn
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-14/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-14/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][140] ([i915#12313]) +3 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#6095]) +38 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
    - shard-glk:          NOTRUN -> [SKIP][142] +396 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html

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

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

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

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-dg1:          NOTRUN -> [SKIP][146] ([i915#6095]) +214 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-15/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
    - shard-glk:          [PASS][147] -> [INCOMPLETE][148] ([i915#15582])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][149] ([i915#14098] / [i915#6095]) +48 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-tglu-1:       NOTRUN -> [SKIP][150] ([i915#6095]) +39 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][151] ([i915#6095]) +29 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs:
    - shard-snb:          NOTRUN -> [SKIP][152] +151 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-snb4/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html

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

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-dg2:          NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +2 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-7/igt@kms_chamelium_edid@hdmi-mode-timings.html
    - shard-dg1:          NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +3 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-13/igt@kms_chamelium_edid@hdmi-mode-timings.html
    - shard-mtlp:         NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +1 other test skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-3/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-rkl:          NOTRUN -> [SKIP][157] ([i915#11151] / [i915#14544] / [i915#7828])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-tglu-1:       NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +2 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html

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

  * igt@kms_content_protection@atomic:
    - shard-tglu-1:       NOTRUN -> [SKIP][160] ([i915#15865]) +2 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][161] ([i915#15330]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-dg1:          NOTRUN -> [SKIP][162] ([i915#15330])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-19/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-tglu:         NOTRUN -> [SKIP][163] ([i915#15330])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-mtlp:         NOTRUN -> [SKIP][164] ([i915#15330])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

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

  * igt@kms_content_protection@dp-mst-type-1-suspend-resume:
    - shard-dg2:          NOTRUN -> [SKIP][166] ([i915#15330]) +1 other test skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html

  * igt@kms_content_protection@legacy-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][167] ([i915#15865]) +1 other test skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@kms_content_protection@legacy-hdcp14.html
    - shard-tglu:         NOTRUN -> [SKIP][168] ([i915#15865]) +3 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-7/igt@kms_content_protection@legacy-hdcp14.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-dg2:          NOTRUN -> [SKIP][169] ([i915#15865])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-6/igt@kms_content_protection@lic-type-0-hdcp14.html
    - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#15865]) +1 other test skip
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-19/igt@kms_content_protection@lic-type-0-hdcp14.html
    - shard-mtlp:         NOTRUN -> [SKIP][171] ([i915#15865])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-6/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [FAIL][172] ([i915#13566])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1:
    - shard-mtlp:         [PASS][173] -> [FAIL][174] ([i915#13566] / [i915#15733]) +2 other tests fail
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1.html

  * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
    - shard-rkl:          [PASS][175] -> [FAIL][176] ([i915#13566]) +1 other test fail
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-rkl:          NOTRUN -> [SKIP][177] ([i915#13049] / [i915#14544])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html

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

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-rkl:          NOTRUN -> [SKIP][179] ([i915#3555]) +3 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

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

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

  * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][182] -> [FAIL][183] ([i915#13566]) +3 other tests fail
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][184] ([i915#12358] / [i915#14152] / [i915#7882])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk9/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][185] ([i915#12358] / [i915#14152])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk9/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][186] ([i915#4103])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-dg1:          NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-19/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-tglu:         NOTRUN -> [SKIP][188] ([i915#4103])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-mtlp:         NOTRUN -> [SKIP][189] ([i915#4213])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-dg2:          NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][191] ([i915#13046] / [i915#5354]) +4 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
    - shard-mtlp:         NOTRUN -> [SKIP][192] ([i915#9809]) +3 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

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

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-dg2:          NOTRUN -> [SKIP][194] ([i915#13707])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
    - shard-rkl:          NOTRUN -> [SKIP][195] ([i915#13707])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
    - shard-tglu-1:       NOTRUN -> [SKIP][196] ([i915#13707])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html

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

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

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2:          NOTRUN -> [SKIP][199] ([i915#3840] / [i915#9053])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - shard-rkl:          NOTRUN -> [SKIP][200] ([i915#3840] / [i915#9053])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - shard-dg1:          NOTRUN -> [SKIP][201] ([i915#3840] / [i915#9053])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - shard-tglu:         NOTRUN -> [SKIP][202] ([i915#3840] / [i915#9053])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - shard-mtlp:         NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840] / [i915#9053])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

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

  * igt@kms_feature_discovery@psr2:
    - shard-dg1:          NOTRUN -> [SKIP][205] ([i915#658])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-17/igt@kms_feature_discovery@psr2.html
    - shard-tglu:         NOTRUN -> [SKIP][206] ([i915#658])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-7/igt@kms_feature_discovery@psr2.html
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#658])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_feature_discovery@psr2.html
    - shard-rkl:          NOTRUN -> [SKIP][208] ([i915#14544] / [i915#658])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-tglu:         NOTRUN -> [SKIP][209] ([i915#3637] / [i915#9934]) +4 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-6/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-dg2:          NOTRUN -> [SKIP][210] ([i915#9934]) +3 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-5/igt@kms_flip@2x-blocking-wf_vblank.html
    - shard-dg1:          NOTRUN -> [SKIP][211] ([i915#9934]) +2 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@kms_flip@2x-blocking-wf_vblank.html
    - shard-mtlp:         NOTRUN -> [SKIP][212] ([i915#3637] / [i915#9934]) +1 other test skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-4/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][213] ([i915#9934]) +9 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html
    - shard-tglu-1:       NOTRUN -> [SKIP][214] ([i915#3637] / [i915#9934]) +3 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-tglu:         NOTRUN -> [SKIP][215] ([i915#9934])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
    - shard-snb:          [PASS][216] -> [TIMEOUT][217] ([i915#14033]) +1 other test timeout
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-rkl:          NOTRUN -> [SKIP][218] ([i915#14544] / [i915#9934]) +1 other test skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1:
    - shard-tglu:         [PASS][219] -> [FAIL][220] ([i915#13027]) +1 other test fail
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-rkl:          [PASS][221] -> [INCOMPLETE][222] ([i915#6113])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-8/igt@kms_flip@flip-vs-suspend.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@c-hdmi-a2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][223] ([i915#6113])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-3/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-dg1:          NOTRUN -> [SKIP][224] ([i915#15643]) +3 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][225] ([i915#15643]) +3 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
    - shard-rkl:          NOTRUN -> [SKIP][226] ([i915#15643]) +3 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
    - shard-tglu:         NOTRUN -> [SKIP][227] ([i915#15643]) +3 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
    - shard-mtlp:         NOTRUN -> [SKIP][228] ([i915#15643]) +2 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][229] ([i915#15643]) +1 other test skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-mtlp:         [PASS][230] -> [SKIP][231] ([i915#15672])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
    - shard-tglu:         NOTRUN -> [SKIP][232] +48 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
    - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#1825]) +14 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][234] ([i915#1825]) +36 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-snb:          [PASS][235] -> [DMESG-WARN][236] ([i915#13899])
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-snb7/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-snb5/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-glk10:        NOTRUN -> [INCOMPLETE][237] ([i915#10056])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][238] ([i915#15102])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
    - shard-dg1:          NOTRUN -> [SKIP][239] ([i915#15102])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][241] +34 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
    - shard-tglu:         NOTRUN -> [SKIP][243] ([i915#15102]) +15 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][244] ([i915#15104])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
    - shard-rkl:          NOTRUN -> [SKIP][245] ([i915#15102]) +3 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
    - shard-dg1:          NOTRUN -> [SKIP][246] ([i915#15104])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-tglu-1:       NOTRUN -> [SKIP][248] ([i915#15102]) +8 other tests skip
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
    - shard-dg1:          NOTRUN -> [SKIP][249] ([i915#15102] / [i915#3458]) +4 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#5354]) +23 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][251] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#8708]) +5 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][253] ([i915#8708]) +9 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][254] ([i915#15102] / [i915#3023]) +17 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-mtlp:         NOTRUN -> [SKIP][255] ([i915#15725])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_hdr@bpc-switch:
    - shard-tglu:         NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-9/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +1 other test skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-1/igt@kms_hdr@static-swap.html
    - shard-tglu-1:       NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_hdr@static-swap.html
    - shard-dg1:          NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) +1 other test skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-18/igt@kms_hdr@static-swap.html
    - shard-mtlp:         NOTRUN -> [SKIP][260] ([i915#12713] / [i915#3555] / [i915#8228])
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-8/igt@kms_hdr@static-swap.html

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

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][262] ([i915#15459])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-3/igt@kms_joiner@basic-force-big-joiner.html

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

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][264] ([i915#15458])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-dg2:          NOTRUN -> [SKIP][265] ([i915#6301]) +1 other test skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-8/igt@kms_panel_fitting@atomic-fastset.html
    - shard-rkl:          NOTRUN -> [SKIP][266] ([i915#14544] / [i915#6301])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
    - shard-dg1:          NOTRUN -> [SKIP][267] ([i915#6301]) +1 other test skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_panel_fitting@legacy:
    - shard-tglu:         NOTRUN -> [SKIP][268] ([i915#6301]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-8/igt@kms_panel_fitting@legacy.html
    - shard-rkl:          NOTRUN -> [SKIP][269] ([i915#6301])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
    - shard-tglu-1:       NOTRUN -> [SKIP][270] +29 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-rkl:          [PASS][271] -> [ABORT][272] ([i915#15132])
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][273] ([i915#12756] / [i915#13409] / [i915#13476])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][274] ([i915#13409] / [i915#13476])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [ABORT][275] ([i915#15132])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-tglu:         NOTRUN -> [SKIP][276] ([i915#14712])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-mtlp:         NOTRUN -> [SKIP][277] ([i915#14712])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-dg2:          NOTRUN -> [SKIP][278] ([i915#14712])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-rkl:          NOTRUN -> [SKIP][279] ([i915#14712])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-dg1:          NOTRUN -> [SKIP][280] ([i915#14712])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-19/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
    - shard-tglu-1:       NOTRUN -> [SKIP][281] ([i915#15709]) +1 other test skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
    - shard-tglu:         NOTRUN -> [SKIP][282] ([i915#15709]) +2 other tests skip
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5:
    - shard-mtlp:         NOTRUN -> [SKIP][283] ([i915#15608]) +1 other test skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
    - shard-rkl:          NOTRUN -> [SKIP][284] ([i915#14544] / [i915#15709])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
    - shard-dg2:          NOTRUN -> [SKIP][285] ([i915#15709]) +3 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
    - shard-rkl:          NOTRUN -> [SKIP][286] ([i915#15608]) +1 other test skip
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
    - shard-mtlp:         NOTRUN -> [SKIP][287] ([i915#15709])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][288] ([i915#15709]) +5 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_plane@pixel-format-yf-tiled-modifier.html
    - shard-dg1:          NOTRUN -> [SKIP][289] ([i915#15709]) +3 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@kms_plane@pixel-format-yf-tiled-modifier.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb:
    - shard-glk:          NOTRUN -> [FAIL][290] ([i915#10647] / [i915#12177])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][291] ([i915#10647]) +1 other test fail
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-dg2:          NOTRUN -> [SKIP][292] ([i915#13958])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-none.html
    - shard-rkl:          NOTRUN -> [SKIP][293] ([i915#13958])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html

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

  * igt@kms_plane_multiple@tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][295] ([i915#14259])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-6/igt@kms_plane_multiple@tiling-y.html
    - shard-dg2:          NOTRUN -> [SKIP][296] ([i915#14259])
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_plane_multiple@tiling-y.html

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

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
    - shard-rkl:          NOTRUN -> [SKIP][298] ([i915#15329]) +7 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
    - shard-tglu:         NOTRUN -> [SKIP][299] ([i915#15329]) +4 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
    - shard-mtlp:         NOTRUN -> [SKIP][300] ([i915#15329]) +4 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html

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

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][302] ([i915#12343])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-5/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-rkl:          NOTRUN -> [SKIP][303] ([i915#12343])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc5-dpms-negative:
    - shard-mtlp:         NOTRUN -> [SKIP][304] ([i915#13441])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-6/igt@kms_pm_dc@dc5-dpms-negative.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2:          NOTRUN -> [SKIP][305] ([i915#3828])
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-6/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-tglu:         NOTRUN -> [SKIP][306] ([i915#9685])
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-5/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][307] ([i915#15739])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-rkl:          NOTRUN -> [SKIP][308] ([i915#8430])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html
    - shard-tglu:         NOTRUN -> [SKIP][309] ([i915#8430])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-7/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-rkl:          NOTRUN -> [SKIP][310] ([i915#15073])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@package-g7:
    - shard-tglu:         NOTRUN -> [SKIP][311] ([i915#15403])
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-7/igt@kms_pm_rpm@package-g7.html

  * igt@kms_pm_rpm@pc8-residency:
    - shard-dg2:          NOTRUN -> [SKIP][312] +5 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-3/igt@kms_pm_rpm@pc8-residency.html
    - shard-rkl:          NOTRUN -> [SKIP][313] ([i915#14544])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_pm_rpm@pc8-residency.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][314] ([i915#14419])
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-dg2:          NOTRUN -> [SKIP][315] ([i915#6524] / [i915#6805])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-1/igt@kms_prime@basic-crc-hybrid.html
    - shard-rkl:          NOTRUN -> [SKIP][316] ([i915#6524])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-rkl:          NOTRUN -> [SKIP][317] ([i915#11520] / [i915#14544])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

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

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          NOTRUN -> [SKIP][319] ([i915#11520]) +7 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
    - shard-mtlp:         NOTRUN -> [SKIP][320] ([i915#12316])
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

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

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

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

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-snb:          NOTRUN -> [SKIP][324] ([i915#11520]) +3 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-snb7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-dg1:          NOTRUN -> [SKIP][325] ([i915#11520]) +2 other tests skip
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][326] ([i915#11520]) +10 other tests skip
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk8/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

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

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][328] ([i915#9683])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
    - shard-rkl:          NOTRUN -> [SKIP][329] ([i915#9683])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
    - shard-dg1:          NOTRUN -> [SKIP][330] ([i915#9683])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@kms_psr2_su@frontbuffer-xrgb8888.html
    - shard-tglu:         NOTRUN -> [SKIP][331] ([i915#9683]) +1 other test skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
    - shard-mtlp:         NOTRUN -> [SKIP][332] ([i915#4348])
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html

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

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

  * igt@kms_psr@fbc-psr2-primary-mmap-gtt:
    - shard-tglu:         NOTRUN -> [SKIP][335] ([i915#9732]) +15 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-4/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html

  * igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][336] ([i915#9688]) +8 other tests skip
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-5/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html

  * igt@kms_psr@psr-no-drrs:
    - shard-rkl:          NOTRUN -> [SKIP][337] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_psr@psr-no-drrs.html

  * igt@kms_psr@psr-sprite-plane-move:
    - shard-rkl:          NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +27 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html
    - shard-dg1:          NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +9 other tests skip
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@kms_psr@psr-sprite-plane-move.html

  * igt@kms_psr@psr2-primary-mmap-gtt:
    - shard-tglu-1:       NOTRUN -> [SKIP][340] ([i915#9732]) +12 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_psr@psr2-primary-mmap-gtt.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][341] ([i915#12755] / [i915#15867] / [i915#5190])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
    - shard-rkl:          NOTRUN -> [SKIP][342] ([i915#5289]) +2 other tests skip
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_selftest@drm_framebuffer:
    - shard-glk11:        NOTRUN -> [ABORT][343] ([i915#13179]) +1 other test abort
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk11/igt@kms_selftest@drm_framebuffer.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-tglu:         NOTRUN -> [SKIP][344] ([i915#8623])
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern.html
    - shard-glk:          NOTRUN -> [FAIL][345] ([i915#10959])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk1/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][346] ([i915#15243] / [i915#3555])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-8/igt@kms_vrr@flip-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][347] ([i915#3555]) +1 other test skip
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-13/igt@kms_vrr@flip-dpms.html
    - shard-mtlp:         NOTRUN -> [SKIP][348] ([i915#3555] / [i915#8808])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-1/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@flip-suspend:
    - shard-tglu:         NOTRUN -> [SKIP][349] ([i915#3555]) +3 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-4/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@negative-basic:
    - shard-tglu:         NOTRUN -> [SKIP][350] ([i915#3555] / [i915#9906])
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-10/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-dg2:          NOTRUN -> [SKIP][351] ([i915#9906])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-drrs.html
    - shard-rkl:          NOTRUN -> [SKIP][352] ([i915#9906])
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-drrs.html
    - shard-dg1:          NOTRUN -> [SKIP][353] ([i915#9906])
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-drrs.html
    - shard-tglu:         NOTRUN -> [SKIP][354] ([i915#9906])
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-drrs.html
    - shard-mtlp:         NOTRUN -> [SKIP][355] ([i915#8808] / [i915#9906])
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-tglu-1:       NOTRUN -> [SKIP][356] ([i915#9906])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@perf@mi-rpc:
    - shard-rkl:          NOTRUN -> [SKIP][357] ([i915#14544] / [i915#2434])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@perf@mi-rpc.html

  * igt@perf@unprivileged-single-ctx-counters:
    - shard-rkl:          NOTRUN -> [SKIP][358] ([i915#14544] / [i915#2433])
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html
    - shard-dg1:          NOTRUN -> [SKIP][359] ([i915#2433])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-17/igt@perf@unprivileged-single-ctx-counters.html

  * igt@perf_pmu@module-unload:
    - shard-glk:          NOTRUN -> [ABORT][360] ([i915#15778])
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk1/igt@perf_pmu@module-unload.html
    - shard-dg2:          NOTRUN -> [ABORT][361] ([i915#13029] / [i915#15778])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-1/igt@perf_pmu@module-unload.html
    - shard-rkl:          NOTRUN -> [ABORT][362] ([i915#15778])
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-2/igt@perf_pmu@module-unload.html
    - shard-tglu-1:       NOTRUN -> [ABORT][363] ([i915#13029] / [i915#15778])
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-1/igt@perf_pmu@module-unload.html
    - shard-dg1:          NOTRUN -> [ABORT][364] ([i915#13029] / [i915#15778])
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-18/igt@perf_pmu@module-unload.html
    - shard-snb:          NOTRUN -> [ABORT][365] ([i915#15778])
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-snb6/igt@perf_pmu@module-unload.html
    - shard-mtlp:         NOTRUN -> [ABORT][366] ([i915#15778])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-8/igt@perf_pmu@module-unload.html

  * igt@perf_pmu@rc6-all-gts:
    - shard-tglu:         NOTRUN -> [SKIP][367] ([i915#8516])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html

  * igt@prime_vgem@coherency-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][368] ([i915#3708] / [i915#4077])
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-3/igt@prime_vgem@coherency-gtt.html
    - shard-rkl:          NOTRUN -> [SKIP][369] ([i915#14544] / [i915#3708])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@prime_vgem@coherency-gtt.html

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

  
#### Possible fixes ####

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          [INCOMPLETE][371] ([i915#13356]) -> [PASS][372] +2 other tests pass
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg2-3/igt@gem_ccs@suspend-resume.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-8/igt@gem_ccs@suspend-resume.html

  * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
    - shard-dg2:          [INCOMPLETE][373] ([i915#12392] / [i915#13356]) -> [PASS][374]
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html

  * igt@gem_softpin@noreloc-s3:
    - shard-rkl:          [ABORT][375] ([i915#15131]) -> [PASS][376]
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-1/igt@gem_softpin@noreloc-s3.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@gem_softpin@noreloc-s3.html

  * igt@gem_workarounds@suspend-resume:
    - shard-glk:          [INCOMPLETE][377] ([i915#13356] / [i915#14586]) -> [PASS][378]
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-glk4/igt@gem_workarounds@suspend-resume.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk1/igt@gem_workarounds@suspend-resume.html

  * igt@i915_module_load@reload-no-display:
    - shard-tglu:         [DMESG-WARN][379] ([i915#13029] / [i915#14545]) -> [PASS][380]
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-tglu-4/igt@i915_module_load@reload-no-display.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-10/igt@i915_module_load@reload-no-display.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-rkl:          [INCOMPLETE][381] ([i915#4817]) -> [PASS][382]
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-3/igt@i915_suspend@fence-restore-tiled2untiled.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@i915_suspend@sysfs-reader:
    - shard-tglu:         [ABORT][383] ([i915#15652]) -> [PASS][384]
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-tglu-5/igt@i915_suspend@sysfs-reader.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-2/igt@i915_suspend@sysfs-reader.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-rkl:          [INCOMPLETE][385] ([i915#12761]) -> [PASS][386] +1 other test pass
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait:
    - shard-dg1:          [DMESG-WARN][387] ([i915#4423]) -> [PASS][388]
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-18/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-18/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-mtlp:         [FAIL][389] ([i915#15733] / [i915#5138]) -> [PASS][390]
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-rkl:          [INCOMPLETE][391] ([i915#15582]) -> [PASS][392] +1 other test pass
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-tglu:         [FAIL][393] ([i915#13566]) -> [PASS][394] +5 other tests pass
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-rkl:          [FAIL][395] ([i915#13566]) -> [PASS][396] +1 other test pass
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-rkl:          [INCOMPLETE][397] ([i915#9878]) -> [PASS][398]
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-snb:          [TIMEOUT][399] ([i915#14033] / [i915#14350]) -> [PASS][400]
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
    - shard-snb:          [TIMEOUT][401] ([i915#14033]) -> [PASS][402]
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-mtlp:         [SKIP][403] ([i915#15725]) -> [PASS][404]
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-2/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-128:
    - shard-rkl:          [FAIL][405] -> [PASS][406] +3 other tests pass
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-2/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-128.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-128.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg1:          [SKIP][407] ([i915#15073]) -> [PASS][408] +1 other test pass
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg2:          [SKIP][409] ([i915#15073]) -> [PASS][410]
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-rkl:          [SKIP][411] ([i915#15073]) -> [PASS][412] +2 other tests pass
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-rkl:          [INCOMPLETE][413] ([i915#12276]) -> [PASS][414] +1 other test pass
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@perf_pmu@busy-double-start@ccs0:
    - shard-mtlp:         [FAIL][415] ([i915#4349]) -> [PASS][416]
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html

  
#### Warnings ####

  * igt@api_intel_bb@crc32:
    - shard-rkl:          [SKIP][417] ([i915#14544] / [i915#6230]) -> [SKIP][418] ([i915#6230])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@api_intel_bb@crc32.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@api_intel_bb@crc32.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-rkl:          [SKIP][419] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][420] ([i915#3555] / [i915#9323])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-rkl:          [SKIP][421] ([i915#280]) -> [SKIP][422] ([i915#14544] / [i915#280])
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_exec_big@single:
    - shard-tglu:         [DMESG-FAIL][423] ([i915#15478]) -> [FAIL][424] ([i915#15816])
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-tglu-7/igt@gem_exec_big@single.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-tglu-3/igt@gem_exec_big@single.html

  * igt@gem_exec_params@rsvd2-dirt:
    - shard-rkl:          [SKIP][425] ([i915#14544]) -> [SKIP][426] +1 other test skip
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@gem_exec_params@rsvd2-dirt.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-3/igt@gem_exec_params@rsvd2-dirt.html

  * igt@gem_exec_reloc@basic-gtt-cpu:
    - shard-rkl:          [SKIP][427] ([i915#14544] / [i915#3281]) -> [SKIP][428] ([i915#3281]) +3 other tests skip
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu.html

  * igt@gem_exec_reloc@basic-range-active:
    - shard-rkl:          [SKIP][429] ([i915#3281]) -> [SKIP][430] ([i915#14544] / [i915#3281]) +3 other tests skip
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-7/igt@gem_exec_reloc@basic-range-active.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gem_exec_reloc@basic-range-active.html

  * igt@gem_lmem_swapping@basic:
    - shard-rkl:          [SKIP][431] ([i915#4613]) -> [SKIP][432] ([i915#14544] / [i915#4613])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-2/igt@gem_lmem_swapping@basic.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gem_lmem_swapping@basic.html

  * igt@gem_partial_pwrite_pread@write-display:
    - shard-rkl:          [SKIP][433] ([i915#14544] / [i915#3282]) -> [SKIP][434] ([i915#3282]) +2 other tests skip
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-1/igt@gem_partial_pwrite_pread@write-display.html

  * igt@gem_pwrite@basic-random:
    - shard-rkl:          [SKIP][435] ([i915#3282]) -> [SKIP][436] ([i915#14544] / [i915#3282])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-3/igt@gem_pwrite@basic-random.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gem_pwrite@basic-random.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-rkl:          [SKIP][437] ([i915#8411]) -> [SKIP][438] ([i915#14544] / [i915#8411])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-rkl:          [SKIP][439] ([i915#14544] / [i915#3297]) -> [SKIP][440] ([i915#3297])
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@gem_userptr_blits@coherency-sync.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-rkl:          [SKIP][441] ([i915#2527]) -> [SKIP][442] ([i915#14544] / [i915#2527]) +2 other tests skip
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_module_load@fault-injection:
    - shard-dg1:          [ABORT][443] ([i915#11815]) -> [ABORT][444] ([i915#11815] / [i915#15481]) +1 other test abort
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-14/igt@i915_module_load@fault-injection.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-15/igt@i915_module_load@fault-injection.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-rkl:          [SKIP][445] ([i915#14544] / [i915#5286]) -> [SKIP][446] ([i915#5286]) +1 other test skip
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-rkl:          [SKIP][447] ([i915#5286]) -> [SKIP][448] ([i915#14544] / [i915#5286]) +2 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-rkl:          [SKIP][449] ([i915#3638]) -> [SKIP][450] ([i915#14544] / [i915#3638]) +2 other tests skip
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
    - shard-dg1:          [SKIP][451] ([i915#6095]) -> [SKIP][452] ([i915#4423] / [i915#6095])
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-15/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-12/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][453] ([i915#6095]) -> [SKIP][454] ([i915#14544] / [i915#6095]) +3 other tests skip
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][455] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][456] ([i915#14098] / [i915#6095]) +3 other tests skip
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][457] ([i915#14098] / [i915#6095]) -> [SKIP][458] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-rkl:          [SKIP][459] ([i915#12313] / [i915#14544]) -> [SKIP][460] ([i915#12313])
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-rkl:          [SKIP][461] ([i915#12805] / [i915#14544]) -> [SKIP][462] ([i915#12805])
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

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

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-glk:          [INCOMPLETE][465] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][466] ([i915#15582])
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][467] ([i915#14544] / [i915#6095]) -> [SKIP][468] ([i915#6095]) +3 other tests skip
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-rkl:          [SKIP][469] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][470] ([i915#11151] / [i915#7828]) +2 other tests skip
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-rkl:          [SKIP][471] ([i915#11151] / [i915#7828]) -> [SKIP][472] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-rkl:          [SKIP][473] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][474] ([i915#15330] / [i915#3116])
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-rkl:          [SKIP][475] ([i915#15330] / [i915#3116]) -> [SKIP][476] ([i915#14544] / [i915#15330] / [i915#3116])
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-rkl:          [SKIP][477] ([i915#15865]) -> [SKIP][478] ([i915#14544] / [i915#15865])
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@kms_content_protection@legacy.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg1:          [SKIP][479] ([i915#9433]) -> [SKIP][480] ([i915#15865])
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-13/igt@kms_content_protection@mei-interface.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-16/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@uevent:
    - shard-rkl:          [SKIP][481] ([i915#14544] / [i915#15865]) -> [SKIP][482] ([i915#15865])
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_content_protection@uevent.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-2/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-rkl:          [SKIP][483] ([i915#13049]) -> [SKIP][484] ([i915#13049] / [i915#14544]) +1 other test skip
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-rkl:          [SKIP][485] ([i915#4103]) -> [SKIP][486] ([i915#14544] / [i915#4103]) +1 other test skip
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-rkl:          [SKIP][487] -> [SKIP][488] ([i915#14544]) +11 other tests skip
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-rkl:          [SKIP][489] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][490] ([i915#3555] / [i915#3840])
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_feature_discovery@chamelium:
    - shard-rkl:          [SKIP][491] ([i915#14544] / [i915#4854]) -> [SKIP][492] ([i915#4854])
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-3/igt@kms_feature_discovery@chamelium.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-dg1:          [SKIP][493] ([i915#4423] / [i915#9934]) -> [SKIP][494] ([i915#9934])
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg1-18/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg1-16/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-rkl:          [SKIP][495] ([i915#14544] / [i915#9934]) -> [SKIP][496] ([i915#9934]) +1 other test skip
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-7/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-rkl:          [SKIP][497] ([i915#9934]) -> [SKIP][498] ([i915#14544] / [i915#9934]) +1 other test skip
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-2/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-glk:          [INCOMPLETE][499] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][500] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-glk3/igt@kms_flip@flip-vs-suspend.html
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk5/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
    - shard-glk:          [INCOMPLETE][501] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][502] ([i915#12314] / [i915#12745] / [i915#6113])
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-rkl:          [SKIP][503] ([i915#15643]) -> [SKIP][504] ([i915#14544] / [i915#15643]) +3 other tests skip
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-mtlp:         [SKIP][505] ([i915#15672]) -> [SKIP][506]
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
    - shard-rkl:          [SKIP][507] ([i915#1825]) -> [SKIP][508] ([i915#14544] / [i915#1825]) +7 other tests skip
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
    - shard-rkl:          [SKIP][511] ([i915#15102]) -> [SKIP][512] ([i915#14544] / [i915#15102]) +1 other test skip
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-rkl:          [SKIP][513] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][514] ([i915#15102] / [i915#3023]) +7 other tests skip
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
    - shard-dg2:          [SKIP][515] ([i915#15102] / [i915#3458]) -> [SKIP][516] ([i915#10433] / [i915#15102] / [i915#3458]) +4 other tests skip
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-rkl:          [SKIP][517] ([i915#15102] / [i915#3023]) -> [SKIP][518] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
    - shard-rkl:          [SKIP][519] ([i915#14544] / [i915#1825]) -> [SKIP][520] ([i915#1825]) +10 other tests skip
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
    - shard-dg2:          [SKIP][521] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][522] ([i915#15102] / [i915#3458]) +3 other tests skip
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html

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

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          [SKIP][525] ([i915#14544] / [i915#15815]) -> [SKIP][526] ([i915#15815])
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
    - shard-rkl:          [SKIP][527] ([i915#15709]) -> [SKIP][528] ([i915#14544] / [i915#15709]) +1 other test skip
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-rkl:          [SKIP][529] ([i915#14544] / [i915#3555]) -> [SKIP][530] ([i915#3555])
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-8/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-rkl:          [SKIP][531] ([i915#15329]) -> [SKIP][532] ([i915#14544] / [i915#15329]) +3 other tests skip
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-rkl:          [SKIP][533] ([i915#5354]) -> [SKIP][534] ([i915#14544] / [i915#5354])
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-8/igt@kms_pm_backlight@fade-with-dpms.html
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-rkl:          [SKIP][535] ([i915#9685]) -> [SKIP][536] ([i915#14544] / [i915#9685])
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-rkl:          [SKIP][537] ([i915#14544] / [i915#15073]) -> [SKIP][538] ([i915#15073])
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-rkl:          [SKIP][539] ([i915#11520] / [i915#14544]) -> [SKIP][540] ([i915#11520]) +2 other tests skip
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

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

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-rkl:          [SKIP][543] ([i915#14544] / [i915#9683]) -> [SKIP][544] ([i915#9683])
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-rkl:          [SKIP][545] ([i915#9683]) -> [SKIP][546] ([i915#14544] / [i915#9683])
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr-primary-page-flip:
    - shard-rkl:          [SKIP][547] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][548] ([i915#1072] / [i915#9732]) +5 other tests skip
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-6/igt@kms_psr@fbc-psr-primary-page-flip.html
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-4/igt@kms_psr@fbc-psr-primary-page-flip.html

  * igt@kms_psr@pr-cursor-mmap-cpu:
    - shard-rkl:          [SKIP][549] ([i915#1072] / [i915#9732]) -> [SKIP][550] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-2/igt@kms_psr@pr-cursor-mmap-cpu.html
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-rkl:          [SKIP][551] ([i915#5289]) -> [SKIP][552] ([i915#14544] / [i915#5289])
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-rkl:          [SKIP][553] ([i915#8623]) -> [SKIP][554] ([i915#14544] / [i915#8623]) +1 other test skip
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@prime_vgem@basic-write:
    - shard-rkl:          [SKIP][555] ([i915#3291] / [i915#3708]) -> [SKIP][556] ([i915#14544] / [i915#3291] / [i915#3708])
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-7/igt@prime_vgem@basic-write.html
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@prime_vgem@basic-write.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each:
    - shard-rkl:          [SKIP][557] ([i915#9917]) -> [SKIP][558] ([i915#14544] / [i915#9917])
   [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18259/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html
   [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14900/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html

  
  [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
  [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
  [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
  [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
  [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
  [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13899]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
  [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
  [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
  [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
  [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15391
  [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478
  [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
  [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
  [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15652
  [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
  [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
  [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
  [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
  [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
  [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
  [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8839 -> IGTPW_14900
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_18259: e024431a4dc3a2cc320e6093dd95d0c5d0e2935f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14900: 14900
  IGT_8839: 8839
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [PATCH i-g-t v1] README: Document skip message format
  2026-04-01  4:33 [PATCH i-g-t v1] README: Document skip message format Sowmiya S
                   ` (3 preceding siblings ...)
  2026-04-01 21:17 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-04-02  9:59 ` Kamil Konieczny
  2026-04-06  8:07   ` S, Sowmiya
  2026-04-02 12:51 ` Jani Nikula
  5 siblings, 1 reply; 9+ messages in thread
From: Kamil Konieczny @ 2026-04-02  9:59 UTC (permalink / raw)
  To: Sowmiya S
  Cc: igt-dev, karthik.b.s, swati2.sharma, Ashutosh Dixit,
	Juha-Pekka Heikkila, Juha-Pekka Heikkila, Ville Syrjälä,
	Jani Nikula

Hi Sowmiya,
On 2026-04-01 at 10:03:01 +0530, Sowmiya S wrote:
> Add a concise guide for writing consistent, machine-friendly skip
> messages in IGT tests. Defines the format:
> 
>   SKIP: <reason> [(<context_type>: <value>)]

Should this also include subsystem like display? For example:

  SKIP: <subsystem> <reason> [(<context_type>: <value>)]

Example:

  SKIP: display: no suitable connector available`

  SKIP: core: unsupported on DG2`

+cc Ashutosh, J-P, Jani and Ville

> 
> along with common context types, example messages and a code snippet.
> 

Please give a link here to GitLab issue it is related, btw GitLab
changed recently 'issues' into 'work items':
https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/work_items/24

Regards,
Kamil 

> Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
> ---
>  README.md | 37 +++++++++++++++++++++++++++++++++++++
>  1 file changed, 37 insertions(+)
> 
> diff --git a/README.md b/README.md
> index b4b9a37ea..a652cc0d1 100644
> --- a/README.md
> +++ b/README.md
> @@ -188,3 +188,40 @@ Imported non-DRM uapi headers from airlied's drm-next branch.
>  
>  Then, commit with a note of which exact commit from airlied's branch
>  was used to generate them.
> +
> +Skip Message Format
> +-------------------
> +
> +Keep skip messages consistent and machine-friendly. Use this concise
> +format and include a single, most-relevant context when available:
> +
> +- Format: `SKIP: <reason> [(<context_type>: <value>)]` (always end with `\n`)
> +- Rules: start with `SKIP:`, use a short lowercase `reason`, include at
> +    most one `context` in parentheses, use `0x%llx` for modifiers, and
> +    do not add a trailing period.
> +
> +### `Common context types and examples:`
> +
> +- `connector`: display connector name — `(connector: HDMI-A-1)`
> +- `plane`: plane type — `(plane: primary)`
> +- `format`: fourcc format — `(format: NV12)`
> +- `modifier`: buffer modifier (hex) — `(modifier: 0x%llx)`
> +- `pipe`: pipe id/name — `(pipe: A)`
> +- `platform`: GPU/platform name — `(platform: i915)`
> +
> +### `Common concise messages:`
> +
> +- `SKIP: no suitable connector available`
> +- `SKIP: connector is disconnected (connector: %s)`
> +- `SKIP: no suitable display mode available (connector: %s)`
> +- `SKIP: format not supported (plane: %s, format: %s)`
> +- `SKIP: modifier not supported (modifier: 0x%llx)`
> +- `SKIP: plane not available (plane: %s)`
> +
> +### `Example usage:`
> +
> +```c
> +        igt_skip_on_f(!fmt_supported(plane, fmt),
> +                            "SKIP: format not supported (plane: %s, format: %s)\n",
> +                            igt_plane_name(plane), igt_format_str(fmt));
> +```
> -- 
> 2.43.0
> 

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

* Re: [PATCH i-g-t v1] README: Document skip message format
  2026-04-01  4:33 [PATCH i-g-t v1] README: Document skip message format Sowmiya S
                   ` (4 preceding siblings ...)
  2026-04-02  9:59 ` [PATCH i-g-t v1] " Kamil Konieczny
@ 2026-04-02 12:51 ` Jani Nikula
  2026-04-06  7:58   ` S, Sowmiya
  5 siblings, 1 reply; 9+ messages in thread
From: Jani Nikula @ 2026-04-02 12:51 UTC (permalink / raw)
  To: Sowmiya S, igt-dev; +Cc: karthik.b.s, swati2.sharma, Sowmiya S

On Wed, 01 Apr 2026, Sowmiya S <sowmiya.s@intel.com> wrote:
> Add a concise guide for writing consistent, machine-friendly skip
> messages in IGT tests. Defines the format:
>
>   SKIP: <reason> [(<context_type>: <value>)]
>
> along with common context types, example messages and a code snippet.
>
> Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
> ---
>  README.md | 37 +++++++++++++++++++++++++++++++++++++
>  1 file changed, 37 insertions(+)
>
> diff --git a/README.md b/README.md
> index b4b9a37ea..a652cc0d1 100644
> --- a/README.md
> +++ b/README.md
> @@ -188,3 +188,40 @@ Imported non-DRM uapi headers from airlied's drm-next branch.
>  
>  Then, commit with a note of which exact commit from airlied's branch
>  was used to generate them.
> +
> +Skip Message Format
> +-------------------
> +
> +Keep skip messages consistent and machine-friendly. Use this concise
> +format and include a single, most-relevant context when available:
> +
> +- Format: `SKIP: <reason> [(<context_type>: <value>)]` (always end with `\n`)
> +- Rules: start with `SKIP:`, use a short lowercase `reason`, include at
> +    most one `context` in parentheses, use `0x%llx` for modifiers, and
> +    do not add a trailing period.
> +
> +### `Common context types and examples:`
> +
> +- `connector`: display connector name — `(connector: HDMI-A-1)`
> +- `plane`: plane type — `(plane: primary)`
> +- `format`: fourcc format — `(format: NV12)`
> +- `modifier`: buffer modifier (hex) — `(modifier: 0x%llx)`
> +- `pipe`: pipe id/name — `(pipe: A)`
> +- `platform`: GPU/platform name — `(platform: i915)`
> +
> +### `Common concise messages:`
> +
> +- `SKIP: no suitable connector available`
> +- `SKIP: connector is disconnected (connector: %s)`
> +- `SKIP: no suitable display mode available (connector: %s)`
> +- `SKIP: format not supported (plane: %s, format: %s)`
> +- `SKIP: modifier not supported (modifier: 0x%llx)`
> +- `SKIP: plane not available (plane: %s)`
> +
> +### `Example usage:`
> +
> +```c
> +        igt_skip_on_f(!fmt_supported(plane, fmt),
> +                            "SKIP: format not supported (plane: %s, format: %s)\n",
> +                            igt_plane_name(plane), igt_format_str(fmt));
> +```

"SKIP:" comes from the plumbing already, doesn't it? There's no point in
having every igt_skip* call in the codebase add that.

In general, you'd do well to document current usage first, and then
suggest changes. Writing a wishlist documenting what you'd like to see
is not going to make it magically happen.

BR,
Jani.

-- 
Jani Nikula, Intel

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

* RE: [PATCH i-g-t v1] README: Document skip message format
  2026-04-02 12:51 ` Jani Nikula
@ 2026-04-06  7:58   ` S, Sowmiya
  0 siblings, 0 replies; 9+ messages in thread
From: S, Sowmiya @ 2026-04-06  7:58 UTC (permalink / raw)
  To: Nikula, Jani, igt-dev@lists.freedesktop.org; +Cc: B S, Karthik, Sharma, Swati2

Hi @Nikula, Jani,

> -----Original Message-----
> From: Nikula, Jani <jani.nikula@intel.com>
> Sent: 02 April 2026 18:22
> To: S, Sowmiya <sowmiya.s@intel.com>; igt-dev@lists.freedesktop.org
> Cc: B S, Karthik <karthik.b.s@intel.com>; Sharma, Swati2
> <swati2.sharma@intel.com>; S, Sowmiya <sowmiya.s@intel.com>
> Subject: Re: [PATCH i-g-t v1] README: Document skip message format
> 
> On Wed, 01 Apr 2026, Sowmiya S <sowmiya.s@intel.com> wrote:
> > Add a concise guide for writing consistent, machine-friendly skip
> > messages in IGT tests. Defines the format:
> >
> >   SKIP: <reason> [(<context_type>: <value>)]
> >
> > along with common context types, example messages and a code snippet.
> >
> > Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
> > ---
> >  README.md | 37 +++++++++++++++++++++++++++++++++++++
> >  1 file changed, 37 insertions(+)
> >
> > diff --git a/README.md b/README.md
> > index b4b9a37ea..a652cc0d1 100644
> > --- a/README.md
> > +++ b/README.md
> > @@ -188,3 +188,40 @@ Imported non-DRM uapi headers from airlied's drm-
> next branch.
> >
> >  Then, commit with a note of which exact commit from airlied's branch
> > was used to generate them.
> > +
> > +Skip Message Format
> > +-------------------
> > +
> > +Keep skip messages consistent and machine-friendly. Use this concise
> > +format and include a single, most-relevant context when available:
> > +
> > +- Format: `SKIP: <reason> [(<context_type>: <value>)]` (always end
> > +with `\n`)
> > +- Rules: start with `SKIP:`, use a short lowercase `reason`, include at
> > +    most one `context` in parentheses, use `0x%llx` for modifiers, and
> > +    do not add a trailing period.
> > +
> > +### `Common context types and examples:`
> > +
> > +- `connector`: display connector name — `(connector: HDMI-A-1)`
> > +- `plane`: plane type — `(plane: primary)`
> > +- `format`: fourcc format — `(format: NV12)`
> > +- `modifier`: buffer modifier (hex) — `(modifier: 0x%llx)`
> > +- `pipe`: pipe id/name — `(pipe: A)`
> > +- `platform`: GPU/platform name — `(platform: i915)`
> > +
> > +### `Common concise messages:`
> > +
> > +- `SKIP: no suitable connector available`
> > +- `SKIP: connector is disconnected (connector: %s)`
> > +- `SKIP: no suitable display mode available (connector: %s)`
> > +- `SKIP: format not supported (plane: %s, format: %s)`
> > +- `SKIP: modifier not supported (modifier: 0x%llx)`
> > +- `SKIP: plane not available (plane: %s)`
> > +
> > +### `Example usage:`
> > +
> > +```c
> > +        igt_skip_on_f(!fmt_supported(plane, fmt),
> > +                            "SKIP: format not supported (plane: %s, format: %s)\n",
> > +                            igt_plane_name(plane),
> > +igt_format_str(fmt)); ```
> 
> "SKIP:" comes from the plumbing already, doesn't it? There's no point in having
> every igt_skip* call in the codebase add that.
> 
> In general, you'd do well to document current usage first, and then suggest
> changes. Writing a wishlist documenting what you'd like to see is not going to
> make it magically happen.
> 
> BR,
> Jani.

Thanks for the comment, Jani. You’re right — the SKIP: prefix is already added by the framework at the end of the subtest, and here I was including it as part of the skip reason, which is indeed redundant. I’ll remove that.
I’ll also update the explanation to first document the current usage and behavior, and then outline the motivation and steps for improving and standardizing the skip reasons going forward.
Regards,
Sowmiya S. 
> 
> --
> Jani Nikula, Intel

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

* RE: [PATCH i-g-t v1] README: Document skip message format
  2026-04-02  9:59 ` [PATCH i-g-t v1] " Kamil Konieczny
@ 2026-04-06  8:07   ` S, Sowmiya
  0 siblings, 0 replies; 9+ messages in thread
From: S, Sowmiya @ 2026-04-06  8:07 UTC (permalink / raw)
  To: Kamil Konieczny
  Cc: igt-dev@lists.freedesktop.org, B S, Karthik, Sharma, Swati2,
	Dixit, Ashutosh, Juha-Pekka Heikkila, Heikkila, Juha-pekka,
	Ville Syrjälä, Nikula, Jani

Hi @Kamil Konieczny,

> -----Original Message-----
> From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Sent: 02 April 2026 15:29
> To: S, Sowmiya <sowmiya.s@intel.com>
> Cc: igt-dev@lists.freedesktop.org; B S, Karthik <karthik.b.s@intel.com>;
> Sharma, Swati2 <swati2.sharma@intel.com>; Dixit, Ashutosh
> <ashutosh.dixit@intel.com>; Juha-Pekka Heikkila
> <juhapekka.heikkila@gmail.com>; Heikkila, Juha-pekka <juha-
> pekka.heikkila@intel.com>; Ville Syrjälä <ville.syrjala@linux.intel.com>; Nikula,
> Jani <jani.nikula@intel.com>
> Subject: Re: [PATCH i-g-t v1] README: Document skip message format
> 
> Hi Sowmiya,
> On 2026-04-01 at 10:03:01 +0530, Sowmiya S wrote:
> > Add a concise guide for writing consistent, machine-friendly skip
> > messages in IGT tests. Defines the format:
> >
> >   SKIP: <reason> [(<context_type>: <value>)]
> 
> Should this also include subsystem like display? For example:
> 
>   SKIP: <subsystem> <reason> [(<context_type>: <value>)]
> 
> Example:
> 
>   SKIP: display: no suitable connector available`
> 
>   SKIP: core: unsupported on DG2`
> 
> +cc Ashutosh, J-P, Jani and Ville
> 
> >
> > along with common context types, example messages and a code snippet.
> >
> 
> Please give a link here to GitLab issue it is related, btw GitLab changed recently
> 'issues' into 'work items':
> https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/work_items/24
> 
> Regards,
> Kamil
> 
Thanks for updating the gitlab issue here,
https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/work_items/24

Thanks for the suggestion Kamil. 
Regards,
Sowmiya S.

> > Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
> > ---
> >  README.md | 37 +++++++++++++++++++++++++++++++++++++
> >  1 file changed, 37 insertions(+)
> >
> > diff --git a/README.md b/README.md
> > index b4b9a37ea..a652cc0d1 100644
> > --- a/README.md
> > +++ b/README.md
> > @@ -188,3 +188,40 @@ Imported non-DRM uapi headers from airlied's drm-
> next branch.
> >
> >  Then, commit with a note of which exact commit from airlied's branch
> > was used to generate them.
> > +
> > +Skip Message Format
> > +-------------------
> > +
> > +Keep skip messages consistent and machine-friendly. Use this concise
> > +format and include a single, most-relevant context when available:
> > +
> > +- Format: `SKIP: <reason> [(<context_type>: <value>)]` (always end
> > +with `\n`)
> > +- Rules: start with `SKIP:`, use a short lowercase `reason`, include at
> > +    most one `context` in parentheses, use `0x%llx` for modifiers, and
> > +    do not add a trailing period.
> > +
> > +### `Common context types and examples:`
> > +
> > +- `connector`: display connector name — `(connector: HDMI-A-1)`
> > +- `plane`: plane type — `(plane: primary)`
> > +- `format`: fourcc format — `(format: NV12)`
> > +- `modifier`: buffer modifier (hex) — `(modifier: 0x%llx)`
> > +- `pipe`: pipe id/name — `(pipe: A)`
> > +- `platform`: GPU/platform name — `(platform: i915)`
> > +
> > +### `Common concise messages:`
> > +
> > +- `SKIP: no suitable connector available`
> > +- `SKIP: connector is disconnected (connector: %s)`
> > +- `SKIP: no suitable display mode available (connector: %s)`
> > +- `SKIP: format not supported (plane: %s, format: %s)`
> > +- `SKIP: modifier not supported (modifier: 0x%llx)`
> > +- `SKIP: plane not available (plane: %s)`
> > +
> > +### `Example usage:`
> > +
> > +```c
> > +        igt_skip_on_f(!fmt_supported(plane, fmt),
> > +                            "SKIP: format not supported (plane: %s, format: %s)\n",
> > +                            igt_plane_name(plane),
> > +igt_format_str(fmt)); ```
> > --
> > 2.43.0
> >

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

end of thread, other threads:[~2026-04-06  8:07 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-01  4:33 [PATCH i-g-t v1] README: Document skip message format Sowmiya S
2026-04-01  4:51 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-01  5:02 ` ✓ i915.CI.BAT: " Patchwork
2026-04-01 11:26 ` ✓ Xe.CI.FULL: " Patchwork
2026-04-01 21:17 ` ✗ i915.CI.Full: failure " Patchwork
2026-04-02  9:59 ` [PATCH i-g-t v1] " Kamil Konieczny
2026-04-06  8:07   ` S, Sowmiya
2026-04-02 12:51 ` Jani Nikula
2026-04-06  7:58   ` S, Sowmiya

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