public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/1] Bash autocompletion feature for igt
@ 2026-02-26 13:39 Jan Sokolowski
  2026-02-26 13:39 ` [PATCH i-g-t 1/1] scripts/bash-autocomplete: Create autocompletion for tests Jan Sokolowski
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Jan Sokolowski @ 2026-02-26 13:39 UTC (permalink / raw)
  To: igt-dev
  Cc: Jan Sokolowski, Jan Sokolowski, Zbigniew Kempczyński,
	Kamil Konieczny, Katarzyna Piecielska, Juha-Pekka Heikkila,
	Ashutosh Dixit

This is a RFC for a feature that I've found to be useful not only
for me, but according to the rest of my team, to be of use to other
igt developers and users, that is, bash autocompletion feature.

This patch currently only has an incomplete support for igt tests,
and supports following suggestions: --*, --run-subtest *, --device *.

Signed-off-by: Jan Sokolowski <jan.sokolowski@gmail.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Katarzyna Piecielska <katarzyna.piecielska@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>

Jan Sokolowski (1):
  scripts/bash-autocomplete: Create autocompletion for tests

 meson.sh                                      |  6 ++
 .../install_completions.sh                    | 88 +++++++++++++++++++
 2 files changed, 94 insertions(+)
 create mode 100755 scripts/bash_autocompletion/install_completions.sh

-- 
2.43.0


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

* [PATCH i-g-t 1/1] scripts/bash-autocomplete: Create autocompletion for tests
  2026-02-26 13:39 [PATCH i-g-t 0/1] Bash autocompletion feature for igt Jan Sokolowski
@ 2026-02-26 13:39 ` Jan Sokolowski
  2026-03-02  6:14   ` Zbigniew Kempczyński
  2026-02-26 23:52 ` ✓ i915.CI.BAT: success for Bash autocompletion feature for igt Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 7+ messages in thread
From: Jan Sokolowski @ 2026-02-26 13:39 UTC (permalink / raw)
  To: igt-dev
  Cc: Jan Sokolowski, Zbigniew Kempczyński, Kamil Konieczny,
	Katarzyna Piecielska, Juha-Pekka Heikkila, Ashutosh Dixit

Add installation and uninstallation scripts for bash autocompletion
for tests.

To install: run 'make install-completions' after generating Makefile via
meson.sh.

To uninstall: run 'make uninstall-completions'.

By default autocompletions are installed to
~/.local/share/bash-completion/completions and use
build/tests/test_list.txt directory as list of what completions
to install.

In order to install them as root to
/usr/share/bash-completion/completions, run
./install_completions.sh --install from scripts/bash_autocompletion
directory. It uses /usr/local/libexec/igt-gpu-tools/test_list.txt as
list of what completions to install.

Please note that these completions might be unavailable due to
.bashrc configuration, for example Ubuntu root does not
source bash_completion because it is commented out.

Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Katarzyna Piecielska <katarzyna.piecielska@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
 meson.sh                                      |  6 ++
 .../install_completions.sh                    | 88 +++++++++++++++++++
 2 files changed, 94 insertions(+)
 create mode 100755 scripts/bash_autocompletion/install_completions.sh

diff --git a/meson.sh b/meson.sh
index 1563a85b1..e5fbdcc0c 100755
--- a/meson.sh
+++ b/meson.sh
@@ -60,6 +60,12 @@ install: build/build.ninja
 uninstall: build/build.ninja
 	\$(Q)ninja -C build uninstall \$(quiet_build)
 
+install-completions: all
+	./scripts/bash_autocompletion/install_completions.sh --local-install
+
+uninstall-completions: all
+	./scripts/bash_autocompletion/install_completions.sh --local-uninstall
+
 docs:
 	\$(Q)ninja -C build igt-gpu-tools-doc \$(quiet_build)
 
diff --git a/scripts/bash_autocompletion/install_completions.sh b/scripts/bash_autocompletion/install_completions.sh
new file mode 100755
index 000000000..d3db63af0
--- /dev/null
+++ b/scripts/bash_autocompletion/install_completions.sh
@@ -0,0 +1,88 @@
+#!/bin/bash
+# SPDX-License-Identifier: MIT
+# Copyright © 2025 Intel Corporation
+# Author: Jan Sokolowski <jan.sokolowski@intel.com>
+
+usage() {
+echo "install_completions.sh - creates bash autocompletion scripts for installed igt gpu tools tests."
+echo "Usage: "
+echo "--install : installs completions for installed /usr/local/libexec/igt_gpu_tools tests to ~/.local/share/bash-completion/completions"
+echo "--local-install : uses ../../build/tests as list of completions to install to ~/.local/share/bash-completion/completions"
+echo "--uninstall : uninstalls completions installed to /usrl/local/libexec/igt_gpu_tools from ~/.local/share/bash-completion/completions"
+echo "--local-uninstall : uses ../../build/tests as list of completions to uninstall from ~/.local/share/bash-completion-completions"
+}
+
+__generate_completion() {
+
+cat <<EOF > $1
+_$1()
+{
+	local cur prev words cword
+	_init_completion || return
+	case \$prev in
+		--run-subtest | --dynamic-subtest)
+			local IFS=$'\n\b'
+			LIST_OF_TESTS="\`\$1 --list-subtest\`"
+			COMPREPLY=(\$(compgen -W "\$LIST_OF_TESTS" -- "\$cur"))
+			return
+			;;
+		--device)
+			COMPREPLY=(\$(compgen -o nospace -W "sys: pci: sriov: drm:" -- "\$cur"))
+			;;
+	esac
+
+	if [[ \$cur == * ]]; then
+		COMPREPLY=(\$(compgen -W '\$(_parse_help "\$1")' -- "\$cur"))
+	fi
+
+} &&
+
+complete -F _$1 $1
+EOF
+
+}
+
+__install_completions() {
+	mkdir -p ~/.local/share/bash-completion/completions
+	cd ~/.local/share/bash-completion/completions
+
+	echo "Installing bash autocompletion scripts to ~/.local/share/bash_completion/completions"
+	for ENTRY in `sed -n 2p $1/test-list-full.txt`;
+	do
+		TEST=`echo $ENTRY | rev | cut -f1 -d'/' | rev`
+		__generate_completion $TEST
+	done
+	cd - > /dev/null
+}
+
+__uninstall_completions() {
+	cd ~/.local/share/bash-completion/completions
+	echo "Unnstalling bash autocompletion scripts from ~/.local/share/bash_completion/completions"
+	for ENTRY in `sed -n 2p $1/test-list-full.txt`;
+	do
+		TEST=`echo $ENTRY | rev | cut -f1 -d'/' | rev`
+		rm ~/.local/share/bash-completion/completions/$TEST
+	done
+	cd - > /dev/null
+}
+
+case "$1" in
+	"--install")
+		__install_completions "/usr/local/libexec/igt-gpu-tools"
+		;;
+	"--local-install")
+		__install_completions "$PWD/build/tests"
+		;;
+	"--uninstall")
+		__uninstall_completions "/usr/local/libexec/igt-gpu-tools"
+		;;
+	"--local-uninstall")
+		__uninstall_completions "$PWD/build/tests"
+		;;
+	"--help")
+		usage
+		;;
+	*)
+		__install_completions "/usr/local/libexec/igt-gpu-tools"
+		;;
+esac
-- 
2.43.0


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

* ✓ i915.CI.BAT: success for Bash autocompletion feature for igt
  2026-02-26 13:39 [PATCH i-g-t 0/1] Bash autocompletion feature for igt Jan Sokolowski
  2026-02-26 13:39 ` [PATCH i-g-t 1/1] scripts/bash-autocomplete: Create autocompletion for tests Jan Sokolowski
@ 2026-02-26 23:52 ` Patchwork
  2026-02-27  0:13 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-26 23:52 UTC (permalink / raw)
  To: Jan Sokolowski; +Cc: igt-dev

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

== Series Details ==

Series: Bash autocompletion feature for igt
URL   : https://patchwork.freedesktop.org/series/162218/
State : success

== Summary ==

CI Bug Log - changes from IGT_8774 -> IGTPW_14626
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (4): bat-dg2-13 bat-dg2-9 bat-atsm-1 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@workarounds:
    - bat-dg2-14:         [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8774/bat-dg2-14/igt@i915_selftest@live@workarounds.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/bat-dg2-14/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_8774 -> IGTPW_14626
  * Linux: CI_DRM_18056 -> CI_DRM_18057

  CI-20190529: 20190529
  CI_DRM_18056: 340c78371713a8fdd88fbfe77fd0f7165294c31f @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18057: e42f7566b0d3eba44a6aeeae2c810025c66c44ed @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14626: 8ccfc0864f4ce8f3f62addc161041289a3776350 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8774: 8892452285d691f612ecb3b2a6fefc50983af15f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ Xe.CI.BAT: success for Bash autocompletion feature for igt
  2026-02-26 13:39 [PATCH i-g-t 0/1] Bash autocompletion feature for igt Jan Sokolowski
  2026-02-26 13:39 ` [PATCH i-g-t 1/1] scripts/bash-autocomplete: Create autocompletion for tests Jan Sokolowski
  2026-02-26 23:52 ` ✓ i915.CI.BAT: success for Bash autocompletion feature for igt Patchwork
@ 2026-02-27  0:13 ` Patchwork
  2026-02-27  6:14 ` ✗ Xe.CI.FULL: failure " Patchwork
  2026-02-27  7:23 ` ✗ i915.CI.Full: " Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-27  0:13 UTC (permalink / raw)
  To: Jan Sokolowski; +Cc: igt-dev

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

== Series Details ==

Series: Bash autocompletion feature for igt
URL   : https://patchwork.freedesktop.org/series/162218/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8774_BAT -> XEIGTPW_14626_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Additional (10): bat-bmg-1 bat-lnl-2 bat-lnl-1 bat-ptl-vm bat-atsm-2 bat-bmg-3 bat-wcl-1 bat-wcl-2 bat-bmg-2 bat-adlp-7 
  Missing    (1): bat-dg2-oem2 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@info:
    - bat-atsm-2:         NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@fbdev@info.html

  * igt@fbdev@nullptr:
    - bat-bmg-2:          NOTRUN -> [SKIP][2] ([Intel XE#2134]) +4 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-2/igt@fbdev@nullptr.html
    - bat-lnl-2:          NOTRUN -> [SKIP][3] ([Intel XE#2134]) +4 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@fbdev@nullptr.html

  * igt@fbdev@write:
    - bat-wcl-2:          NOTRUN -> [SKIP][4] ([Intel XE#7241]) +4 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@fbdev@write.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-lnl-1:          NOTRUN -> [SKIP][5] ([Intel XE#1466])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-wcl-2:          NOTRUN -> [SKIP][6] ([Intel XE#7245])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-bmg-2:          NOTRUN -> [SKIP][7] ([Intel XE#2233])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-bmg-1:          NOTRUN -> [SKIP][8] ([Intel XE#2233])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-lnl-2:          NOTRUN -> [SKIP][9] ([Intel XE#1466] / [Intel XE#2235])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-wcl-1:          NOTRUN -> [SKIP][10] ([Intel XE#7245])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@invalid-set-prop-any:
    - bat-atsm-2:         NOTRUN -> [SKIP][11] ([i915#6077]) +30 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
    - bat-atsm-2:         NOTRUN -> [SKIP][12] ([Intel XE#1024] / [Intel XE#782] / [Intel XE#947]) +5 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - bat-bmg-2:          NOTRUN -> [SKIP][13] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-lnl-1:          NOTRUN -> [SKIP][14] ([Intel XE#2244])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@kms_dsc@dsc-basic.html
    - bat-adlp-7:         NOTRUN -> [SKIP][15] ([Intel XE#2244] / [Intel XE#455])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@kms_dsc@dsc-basic.html
    - bat-bmg-1:          NOTRUN -> [SKIP][16] ([Intel XE#2244])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-1/igt@kms_dsc@dsc-basic.html
    - bat-atsm-2:         NOTRUN -> [SKIP][17] ([Intel XE#1024] / [Intel XE#784] / [Intel XE#947])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@kms_dsc@dsc-basic.html
    - bat-wcl-1:          NOTRUN -> [SKIP][18] ([Intel XE#7244])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-1/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@basic-flip-vs-dpms:
    - bat-adlp-7:         NOTRUN -> [DMESG-WARN][19] ([Intel XE#7483]) +12 other tests dmesg-warn
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
    - bat-lnl-2:          NOTRUN -> [SKIP][20] ([Intel XE#2235] / [Intel XE#2482]) +3 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@kms_flip@basic-flip-vs-dpms.html

  * igt@kms_flip@basic-flip-vs-modeset:
    - bat-wcl-2:          NOTRUN -> [SKIP][21] ([Intel XE#7240]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@kms_flip@basic-flip-vs-modeset.html
    - bat-bmg-2:          NOTRUN -> [SKIP][22] ([Intel XE#2482]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html

  * igt@kms_force_connector_basic@force-connector-state:
    - bat-lnl-1:          NOTRUN -> [SKIP][23] ([Intel XE#352]) +2 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html
    - bat-lnl-2:          NOTRUN -> [SKIP][24] ([Intel XE#2235] / [Intel XE#352]) +2 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-wcl-2:          NOTRUN -> [SKIP][25] ([Intel XE#7246])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@kms_frontbuffer_tracking@basic.html
    - bat-bmg-2:          NOTRUN -> [SKIP][26] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
    - bat-lnl-2:          NOTRUN -> [SKIP][27] ([Intel XE#2235] / [Intel XE#2548])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html
    - bat-atsm-2:         NOTRUN -> [SKIP][28] ([Intel XE#1024] / [Intel XE#783] / [Intel XE#947])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_hdmi_inject@inject-audio:
    - bat-atsm-2:         NOTRUN -> [SKIP][29] ([Intel XE#540]) +3 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@kms_hdmi_inject@inject-audio.html
    - bat-lnl-1:          NOTRUN -> [SKIP][30] ([Intel XE#1470] / [Intel XE#2853])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html
    - bat-lnl-2:          NOTRUN -> [SKIP][31] ([Intel XE#1470] / [Intel XE#2235] / [Intel XE#2853])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
    - bat-lnl-2:          NOTRUN -> [SKIP][32] ([Intel XE#2235]) +13 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html

  * igt@kms_pipe_crc_basic@hang-read-crc:
    - bat-wcl-2:          NOTRUN -> [SKIP][33] ([Intel XE#7237]) +13 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@kms_pipe_crc_basic@hang-read-crc.html

  * igt@kms_pipe_crc_basic@nonblocking-crc:
    - bat-atsm-2:         NOTRUN -> [SKIP][34] ([Intel XE#829] / [i915#1836]) +6 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@kms_pipe_crc_basic@nonblocking-crc.html

  * igt@kms_prop_blob@basic:
    - bat-atsm-2:         NOTRUN -> [SKIP][35] ([Intel XE#780])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@kms_prop_blob@basic.html

  * igt@kms_psr@psr-cursor-plane-move:
    - bat-lnl-2:          NOTRUN -> [SKIP][36] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@kms_psr@psr-cursor-plane-move.html

  * igt@kms_psr@psr-primary-page-flip:
    - bat-atsm-2:         NOTRUN -> [SKIP][37] ([Intel XE#1024] / [Intel XE#947]) +6 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - bat-wcl-2:          NOTRUN -> [SKIP][38] ([Intel XE#2850]) +2 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@kms_psr@psr-sprite-plane-onoff.html
    - bat-bmg-2:          NOTRUN -> [SKIP][39] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
    - bat-bmg-1:          NOTRUN -> [SKIP][40] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - bat-lnl-1:          NOTRUN -> [SKIP][41] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
    - bat-lnl-2:          NOTRUN -> [SKIP][42] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_evict@evict-beng-small:
    - bat-adlp-7:         NOTRUN -> [SKIP][43] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@xe_evict@evict-beng-small.html
    - bat-lnl-2:          NOTRUN -> [SKIP][44] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@xe_evict@evict-beng-small.html

  * igt@xe_evict@evict-beng-small-cm:
    - bat-ptl-vm:         NOTRUN -> [SKIP][45] ([Intel XE#5764]) +10 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html
    - bat-lnl-1:          NOTRUN -> [SKIP][46] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@xe_evict@evict-beng-small-cm.html

  * igt@xe_evict@evict-small-external-cm:
    - bat-wcl-1:          NOTRUN -> [SKIP][47] ([Intel XE#7238]) +11 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-1/igt@xe_evict@evict-small-external-cm.html

  * igt@xe_evict@evict-small-multi-vm:
    - bat-wcl-2:          NOTRUN -> [SKIP][48] ([Intel XE#7238]) +11 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@xe_evict@evict-small-multi-vm.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
    - bat-adlp-7:         NOTRUN -> [SKIP][49] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html

  * igt@xe_exec_balancer@no-exec-parallel-basic:
    - bat-lnl-1:          NOTRUN -> [SKIP][50] ([Intel XE#7482]) +17 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@xe_exec_balancer@no-exec-parallel-basic.html

  * igt@xe_exec_balancer@no-exec-virtual-basic:
    - bat-lnl-2:          NOTRUN -> [SKIP][51] ([Intel XE#7482]) +17 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@xe_exec_balancer@no-exec-virtual-basic.html

  * igt@xe_exec_balancer@twice-cm-virtual-userptr:
    - bat-wcl-2:          NOTRUN -> [SKIP][52] ([Intel XE#7482]) +17 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@xe_exec_balancer@twice-cm-virtual-userptr.html

  * igt@xe_exec_balancer@twice-parallel-basic:
    - bat-ptl-vm:         NOTRUN -> [SKIP][53] ([Intel XE#7482]) +17 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-ptl-vm/igt@xe_exec_balancer@twice-parallel-basic.html

  * igt@xe_exec_balancer@twice-virtual-rebind:
    - bat-wcl-1:          NOTRUN -> [SKIP][54] ([Intel XE#7482]) +17 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-1/igt@xe_exec_balancer@twice-virtual-rebind.html

  * igt@xe_exec_balancer@twice-virtual-userptr-invalidate:
    - bat-adlp-7:         NOTRUN -> [SKIP][55] ([Intel XE#7482]) +17 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@xe_exec_balancer@twice-virtual-userptr-invalidate.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
    - bat-atsm-2:         NOTRUN -> [SKIP][56] ([Intel XE#288]) +32 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
    - bat-adlp-7:         NOTRUN -> [SKIP][57] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html

  * igt@xe_huc_copy@huc_copy:
    - bat-atsm-2:         NOTRUN -> [SKIP][58] ([Intel XE#255])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@xe_huc_copy@huc_copy.html

  * igt@xe_live_ktest@xe_bo:
    - bat-lnl-1:          NOTRUN -> [SKIP][59] ([Intel XE#2229]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@xe_live_ktest@xe_bo.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - bat-wcl-2:          NOTRUN -> [SKIP][60] ([Intel XE#7239]) +2 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
    - bat-adlp-7:         NOTRUN -> [SKIP][61] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
    - bat-lnl-2:          NOTRUN -> [SKIP][62] ([Intel XE#2229]) +2 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - bat-bmg-2:          NOTRUN -> [SKIP][63] ([Intel XE#2229])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
    - bat-bmg-1:          NOTRUN -> [SKIP][64] ([Intel XE#2229])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-atsm-2:         NOTRUN -> [SKIP][65] ([Intel XE#2229])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
    - bat-wcl-1:          NOTRUN -> [SKIP][66] ([Intel XE#7239]) +2 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
    - bat-ptl-vm:         NOTRUN -> [SKIP][67] ([Intel XE#5775])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
    - bat-adlp-7:         NOTRUN -> [SKIP][68] ([Intel XE#2229] / [Intel XE#5488])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@vram:
    - bat-ptl-vm:         NOTRUN -> [SKIP][69] ([Intel XE#5776])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-ptl-vm/igt@xe_mmap@vram.html
    - bat-lnl-1:          NOTRUN -> [SKIP][70] ([Intel XE#1416])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@xe_mmap@vram.html
    - bat-wcl-2:          NOTRUN -> [SKIP][71] ([Intel XE#7243])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@xe_mmap@vram.html
    - bat-adlp-7:         NOTRUN -> [SKIP][72] ([Intel XE#1008] / [Intel XE#5591])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@xe_mmap@vram.html
    - bat-lnl-2:          NOTRUN -> [SKIP][73] ([Intel XE#1416])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@xe_mmap@vram.html
    - bat-wcl-1:          NOTRUN -> [SKIP][74] ([Intel XE#7243])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-1/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xe2:
    - bat-atsm-2:         NOTRUN -> [SKIP][75] ([Intel XE#977])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@xe_pat@pat-index-xe2.html
    - bat-adlp-7:         NOTRUN -> [SKIP][76] ([Intel XE#977])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-ptl-vm:         NOTRUN -> [SKIP][77] ([Intel XE#5777])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
    - bat-lnl-1:          NOTRUN -> [SKIP][78] ([Intel XE#1420] / [Intel XE#2838])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html
    - bat-wcl-2:          NOTRUN -> [SKIP][79] ([Intel XE#7247])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@xe_pat@pat-index-xehpc.html
    - bat-bmg-2:          NOTRUN -> [SKIP][80] ([Intel XE#1420])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
    - bat-bmg-1:          NOTRUN -> [SKIP][81] ([Intel XE#1420])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html
    - bat-adlp-7:         NOTRUN -> [SKIP][82] ([Intel XE#2838] / [Intel XE#979])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html
    - bat-lnl-2:          NOTRUN -> [SKIP][83] ([Intel XE#1420] / [Intel XE#2838])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@xe_pat@pat-index-xehpc.html
    - bat-wcl-1:          NOTRUN -> [SKIP][84] ([Intel XE#7247])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-1/igt@xe_pat@pat-index-xehpc.html
    - bat-atsm-2:         NOTRUN -> [SKIP][85] ([Intel XE#2838] / [Intel XE#979])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - bat-bmg-2:          NOTRUN -> [SKIP][86] ([Intel XE#2245])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
    - bat-bmg-1:          NOTRUN -> [SKIP][87] ([Intel XE#2245])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
    - bat-lnl-2:          NOTRUN -> [SKIP][88] ([Intel XE#977])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@xe_pat@pat-index-xelp.html
    - bat-wcl-1:          NOTRUN -> [SKIP][89] ([Intel XE#7242])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-1/igt@xe_pat@pat-index-xelp.html
    - bat-ptl-vm:         NOTRUN -> [SKIP][90] ([Intel XE#5771])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
    - bat-wcl-2:          NOTRUN -> [SKIP][91] ([Intel XE#7242])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@xe_pat@pat-index-xelp.html
    - bat-lnl-1:          NOTRUN -> [SKIP][92] ([Intel XE#977])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-ptl-vm:         NOTRUN -> [SKIP][93] ([Intel XE#5780])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
    - bat-lnl-1:          NOTRUN -> [SKIP][94] ([Intel XE#979])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html
    - bat-wcl-2:          NOTRUN -> [SKIP][95] ([Intel XE#7248])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-2/igt@xe_pat@pat-index-xelpg.html
    - bat-bmg-2:          NOTRUN -> [SKIP][96] ([Intel XE#2236])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
    - bat-bmg-1:          NOTRUN -> [SKIP][97] ([Intel XE#2236])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
    - bat-adlp-7:         NOTRUN -> [SKIP][98] ([Intel XE#979])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html
    - bat-lnl-2:          NOTRUN -> [SKIP][99] ([Intel XE#2236] / [Intel XE#979])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@xe_pat@pat-index-xelpg.html
    - bat-wcl-1:          NOTRUN -> [SKIP][100] ([Intel XE#7248])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-wcl-1/igt@xe_pat@pat-index-xelpg.html
    - bat-atsm-2:         NOTRUN -> [SKIP][101] ([Intel XE#979])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-atsm-2/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p:
    - bat-bmg-3:          NOTRUN -> [SKIP][102] ([Intel XE#6566]) +3 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - bat-lnl-2:          NOTRUN -> [SKIP][103] ([Intel XE#3342])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html
    - bat-lnl-1:          NOTRUN -> [SKIP][104] ([Intel XE#3342])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/bat-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html

  
  [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
  [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
  [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
  [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
  [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
  [Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
  [Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
  [Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
  [Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
  [Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
  [Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
  [Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
  [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#7237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7237
  [Intel XE#7238]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7238
  [Intel XE#7239]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7239
  [Intel XE#7240]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7240
  [Intel XE#7241]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7241
  [Intel XE#7242]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7242
  [Intel XE#7243]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7243
  [Intel XE#7244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7244
  [Intel XE#7245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7245
  [Intel XE#7246]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7246
  [Intel XE#7247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7247
  [Intel XE#7248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7248
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
  [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
  [Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
  [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
  [Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
  [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
  [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077


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

  * IGT: IGT_8774 -> IGTPW_14626
  * Linux: xe-4626-340c78371713a8fdd88fbfe77fd0f7165294c31f -> xe-4627-e42f7566b0d3eba44a6aeeae2c810025c66c44ed

  IGTPW_14626: 8ccfc0864f4ce8f3f62addc161041289a3776350 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8774: 8892452285d691f612ecb3b2a6fefc50983af15f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4626-340c78371713a8fdd88fbfe77fd0f7165294c31f: 340c78371713a8fdd88fbfe77fd0f7165294c31f
  xe-4627-e42f7566b0d3eba44a6aeeae2c810025c66c44ed: e42f7566b0d3eba44a6aeeae2c810025c66c44ed

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for Bash autocompletion feature for igt
  2026-02-26 13:39 [PATCH i-g-t 0/1] Bash autocompletion feature for igt Jan Sokolowski
                   ` (2 preceding siblings ...)
  2026-02-27  0:13 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-27  6:14 ` Patchwork
  2026-02-27  7:23 ` ✗ i915.CI.Full: " Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-27  6:14 UTC (permalink / raw)
  To: Jan Sokolowski; +Cc: igt-dev

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

== Series Details ==

Series: Bash autocompletion feature for igt
URL   : https://patchwork.freedesktop.org/series/162218/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8774_FULL -> XEIGTPW_14626_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_crc@cursor-size-hints:
    - shard-bmg:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-4/igt@kms_cursor_crc@cursor-size-hints.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_cursor_crc@cursor-size-hints.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-bmg:          NOTRUN -> [FAIL][3] ([Intel XE#3718] / [Intel XE#6078])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][4] ([Intel XE#6078])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear:
    - shard-lnl:          [PASS][5] -> [FAIL][6] ([Intel XE#5993]) +3 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2370])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2327]) +5 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-270.html

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

  * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#1124]) +5 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#1124]) +4 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2328])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#2191])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#367])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-3/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#2887]) +2 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html

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

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

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-1:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2652]) +7 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-1.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2724])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#4418])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-3/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_audio@dp-audio:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#373]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-2/igt@kms_chamelium_audio@dp-audio.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2252]) +3 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2325]) +2 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-9/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#306]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-2/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_color_pipeline@plane-lut1d@pipe-b-plane-1:
    - shard-lnl:          NOTRUN -> [FAIL][26] ([Intel XE#7305]) +9 other tests fail
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-8/igt@kms_color_pipeline@plane-lut1d@pipe-b-plane-1.html

  * igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][27] ([Intel XE#1178] / [Intel XE#3304])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2.html

  * igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-1:
    - shard-bmg:          NOTRUN -> [FAIL][28] ([Intel XE#3304])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-5/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-1.html

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

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#1424]) +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_legacy@forked-move@all-pipes:
    - shard-bmg:          [PASS][31] -> [ABORT][32] ([Intel XE#5545]) +1 other test abort
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-4/igt@kms_cursor_legacy@forked-move@all-pipes.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_cursor_legacy@forked-move@all-pipes.html

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#323]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@single-bo:
    - shard-bmg:          [PASS][35] -> [DMESG-WARN][36] ([Intel XE#5354]) +1 other test dmesg-warn
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-7/igt@kms_cursor_legacy@single-bo.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-1/igt@kms_cursor_legacy@single-bo.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#4210])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-9/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#2244])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2244])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_feature_discovery@display-4x:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#1138])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-7/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#1421]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#7178])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#7178]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#7061]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#4141]) +12 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#7061]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2350])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2313]) +18 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#656]) +13 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#6901])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-5/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#6901])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-1/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#7283]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-a-plane-0:
    - shard-lnl:          NOTRUN -> [FAIL][55] ([Intel XE#7337]) +1 other test fail
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-3/igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#7283])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#599]) +4 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-4/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html

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

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#5020])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-9/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#870])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-9/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][61] -> [FAIL][62] ([Intel XE#7340])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          [PASS][63] -> [SKIP][64] ([Intel XE#6693])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-3/igt@kms_pm_rpm@i2c.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_pm_rpm@i2c.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#2893])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#1489]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-4/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html

  * igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#1406] / [Intel XE#4609])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html

  * igt@kms_psr@pr-cursor-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#1406]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-5/igt@kms_psr@pr-cursor-plane-onoff.html

  * igt@kms_psr@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-7/igt@kms_psr@psr-suspend.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#3414] / [Intel XE#3904])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

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

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#1499])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-1/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [PASS][73] -> [FAIL][74] ([Intel XE#2142]) +1 other test fail
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#4837]) +5 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html

  * igt@xe_eudebug_online@resume-dss:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-3/igt@xe_eudebug_online@resume-dss.html

  * igt@xe_evict@evict-beng-mixed-threads-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-4/igt@xe_evict@evict-beng-mixed-threads-large-multi-vm.html

  * igt@xe_evict@evict-mixed-threads-small-multi-queue:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#7140])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-6/igt@xe_evict@evict-mixed-threads-small-multi-queue.html

  * igt@xe_exec_balancer@once-cm-parallel-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#7482]) +5 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-2/igt@xe_exec_balancer@once-cm-parallel-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#1392]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html

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

  * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm:
    - shard-bmg:          [PASS][83] -> [SKIP][84] ([Intel XE#6703]) +32 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#7136]) +8 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-5/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#7136]) +5 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-4/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html

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

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-basic-smem:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#6874]) +8 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-3/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-basic-smem.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#4837]) +3 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-1/igt@xe_exec_sip_eudebug@breakpoint-writesip.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#6196])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma.html

  * igt@xe_exec_system_allocator@process-many-large-mmap-shared-remap-dontunmap:
    - shard-bmg:          [PASS][91] -> [DMESG-FAIL][92] ([Intel XE#5213] / [Intel XE#6652])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-mmap-shared-remap-dontunmap.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-mmap-shared-remap-dontunmap.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap:
    - shard-bmg:          [PASS][93] -> [SKIP][94] ([Intel XE#6557] / [Intel XE#6703])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#7138]) +3 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html

  * igt@xe_exec_threads@threads-multi-queue-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#7138]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-userptr-invalidate.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#2229])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@small-bar:
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#586] / [Intel XE#7323])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-1/igt@xe_mmap@small-bar.html

  * igt@xe_multigpu_svm@mgpu-pagefault-basic:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#6964])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-9/igt@xe_multigpu_svm@mgpu-pagefault-basic.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#2236])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-lnl:          NOTRUN -> [SKIP][101] ([Intel XE#1948])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-3/igt@xe_pm@d3hot-mmap-vram.html

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

  * igt@xe_pxp@display-black-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#4733]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-3/igt@xe_pxp@display-black-pxp-fb.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#944]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-3/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#944]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-9/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          [PASS][107] -> [FAIL][108] ([Intel XE#6569])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#4273])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-7/igt@xe_sriov_flr@flr-twice.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets:
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#4351])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html

  * igt@xe_vm@bind-execqueues-independent:
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#6703]) +5 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@xe_vm@bind-execqueues-independent.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][112] -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
    - shard-bmg:          [DMESG-FAIL][114] ([Intel XE#1727]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [FAIL][116] ([Intel XE#301]) -> [PASS][117] +1 other test pass
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][118] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][119] +1 other test pass
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_rotation_crc@multiplane-rotation:
    - shard-bmg:          [FAIL][120] ([Intel XE#6946]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@kms_rotation_crc@multiplane-rotation.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][122] ([Intel XE#6321]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_exec_reset@long-spin-reuse-many-preempt-threads:
    - shard-bmg:          [SKIP][124] ([Intel XE#6703]) -> [PASS][125] +13 other tests pass
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-9/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html

  * igt@xe_exec_system_allocator@many-64k-malloc-mlock:
    - shard-bmg:          [DMESG-FAIL][126] -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-malloc-mlock.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-7/igt@xe_exec_system_allocator@many-64k-malloc-mlock.html

  * igt@xe_exec_system_allocator@once-large-malloc:
    - shard-bmg:          [ABORT][128] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_system_allocator@once-large-malloc.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-1/igt@xe_exec_system_allocator@once-large-malloc.html

  * igt@xe_exec_system_allocator@threads-many-stride-malloc-multi-fault:
    - shard-bmg:          [DMESG-WARN][130] ([Intel XE#5213] / [Intel XE#6652]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-stride-malloc-multi-fault.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-stride-malloc-multi-fault.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared:
    - shard-bmg:          [DMESG-FAIL][132] ([Intel XE#6652]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared.html

  
#### Warnings ####

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-bmg:          [SKIP][134] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][135] ([Intel XE#6703])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
    - shard-bmg:          [SKIP][136] ([Intel XE#2887]) -> [SKIP][137] ([Intel XE#6703]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          [SKIP][138] ([Intel XE#2252]) -> [SKIP][139] ([Intel XE#6703])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][140] ([Intel XE#2311]) -> [SKIP][141] ([Intel XE#6703]) +1 other test skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          [SKIP][142] ([Intel XE#6703]) -> [SKIP][143] ([Intel XE#2393])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@kms_plane_lowres@tiling-yf.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          [SKIP][144] ([Intel XE#1489]) -> [SKIP][145] ([Intel XE#6703])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr@fbc-pr-suspend:
    - shard-bmg:          [SKIP][146] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][147] ([Intel XE#6703])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@kms_psr@fbc-pr-suspend.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@kms_psr@fbc-pr-suspend.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][148] ([Intel XE#1729]) -> [SKIP][149] ([Intel XE#2426])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_evict@evict-small-multi-queue-cm:
    - shard-bmg:          [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#7140])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-cm.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-cm.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-bmg:          [SKIP][152] ([Intel XE#6703]) -> [SKIP][153] ([Intel XE#2322])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-rebind.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_exec_multi_queue@two-queues-basic-smem:
    - shard-bmg:          [SKIP][154] ([Intel XE#6874]) -> [SKIP][155] ([Intel XE#6703]) +1 other test skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-basic-smem.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14626/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-basic-smem.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
  [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6946
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305
  [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
  [Intel XE#7337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7337
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8774 -> IGTPW_14626
  * Linux: xe-4626-340c78371713a8fdd88fbfe77fd0f7165294c31f -> xe-4627-e42f7566b0d3eba44a6aeeae2c810025c66c44ed

  IGTPW_14626: 8ccfc0864f4ce8f3f62addc161041289a3776350 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8774: 8892452285d691f612ecb3b2a6fefc50983af15f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4626-340c78371713a8fdd88fbfe77fd0f7165294c31f: 340c78371713a8fdd88fbfe77fd0f7165294c31f
  xe-4627-e42f7566b0d3eba44a6aeeae2c810025c66c44ed: e42f7566b0d3eba44a6aeeae2c810025c66c44ed

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for Bash autocompletion feature for igt
  2026-02-26 13:39 [PATCH i-g-t 0/1] Bash autocompletion feature for igt Jan Sokolowski
                   ` (3 preceding siblings ...)
  2026-02-27  6:14 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-27  7:23 ` Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-27  7:23 UTC (permalink / raw)
  To: Jan Sokolowski; +Cc: igt-dev

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

== Series Details ==

Series: Bash autocompletion feature for igt
URL   : https://patchwork.freedesktop.org/series/162218/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_18057_full -> IGTPW_14626_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_14626_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_14626_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_14626/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_14626_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_cleanup:
    - shard-mtlp:         [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-mtlp-2/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_cleanup.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-4/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_cleanup.html

  * igt@perf@polling:
    - shard-dg2:          NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@perf@polling.html

  * igt@perf_pmu@busy-hang:
    - shard-dg2:          [PASS][4] -> [SKIP][5] +4 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-3/igt@perf_pmu@busy-hang.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@perf_pmu@busy-hang.html

  
#### Warnings ####

  * igt@i915_drm_fdinfo@busy-hang:
    - shard-dg2:          [SKIP][6] ([i915#14073]) -> [SKIP][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-3/igt@i915_drm_fdinfo@busy-hang.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@i915_drm_fdinfo@busy-hang.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg2:          [SKIP][8] ([i915#15073]) -> [SKIP][9] +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@package-g7:
    - shard-dg2:          [SKIP][10] ([i915#15403]) -> [SKIP][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-5/igt@kms_pm_rpm@package-g7.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_pm_rpm@package-g7.html

  * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
    - shard-mtlp:         [ABORT][12] ([i915#13179]) -> [DMESG-FAIL][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-mtlp-2/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-4/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html

  
New tests
---------

  New tests have been introduced between CI_DRM_18057_full and IGTPW_14626_full:

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

  * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-hdmi-a-2:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-keep-cache:
    - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#8411])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-3/igt@api_intel_bb@blit-reloc-keep-cache.html

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

  * igt@fbdev@eof:
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#2582]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@fbdev@eof.html

  * igt@gem_caching@read-writes:
    - shard-mtlp:         NOTRUN -> [SKIP][17] ([i915#4873])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-8/igt@gem_caching@read-writes.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-dg1:          NOTRUN -> [SKIP][18] ([i915#9323])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html

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

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html
    - shard-dg1:          NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy.html
    - shard-tglu:         NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy.html
    - shard-mtlp:         NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-rkl:          NOTRUN -> [SKIP][24] ([i915#9323]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
    - shard-tglu:         NOTRUN -> [SKIP][25] ([i915#9323])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][26] ([i915#13008])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-1/igt@gem_ccs@large-ctrl-surf-copy.html
    - shard-dg1:          NOTRUN -> [SKIP][27] ([i915#13008])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@gem_ccs@large-ctrl-surf-copy.html

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

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-tglu:         NOTRUN -> [SKIP][29] ([i915#6335])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-9/igt@gem_create@create-ext-cpu-access-big.html
    - shard-mtlp:         NOTRUN -> [SKIP][30] ([i915#6335])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html
    - shard-dg2:          NOTRUN -> [FAIL][31] ([i915#15454])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
    - shard-rkl:          NOTRUN -> [SKIP][32] ([i915#6335])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html

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

  * igt@gem_ctx_isolation@preservation-s3:
    - shard-rkl:          [PASS][34] -> [INCOMPLETE][35] ([i915#13356]) +1 other test incomplete
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html

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

  * igt@gem_ctx_persistence@idempotent:
    - shard-snb:          NOTRUN -> [SKIP][37] ([i915#1099])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-snb6/igt@gem_ctx_persistence@idempotent.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
    - shard-dg2:          NOTRUN -> [SKIP][38] ([i915#5882]) +6 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#280]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@gem_ctx_sseu@invalid-args.html
    - shard-mtlp:         NOTRUN -> [SKIP][40] ([i915#280]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-1/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-rkl:          NOTRUN -> [SKIP][41] ([i915#280]) +3 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
    - shard-dg1:          NOTRUN -> [SKIP][42] ([i915#280]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-tglu:         NOTRUN -> [SKIP][43] ([i915#280]) +2 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-5/igt@gem_ctx_sseu@mmap-args.html

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

  * igt@gem_eio@reset-stress@blt:
    - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#15314])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-2/igt@gem_eio@reset-stress@blt.html

  * igt@gem_eio@reset-stress@bsd:
    - shard-snb:          NOTRUN -> [FAIL][46] ([i915#8898]) +1 other test fail
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-snb4/igt@gem_eio@reset-stress@bsd.html

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

  * igt@gem_exec_balancer@noheartbeat:
    - shard-dg2:          NOTRUN -> [SKIP][48] ([i915#8555])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@gem_exec_balancer@noheartbeat.html

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

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

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-tglu-1:       NOTRUN -> [SKIP][51] ([i915#4525])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_balancer@sliced:
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#4812]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@gem_exec_balancer@sliced.html

  * igt@gem_exec_big@single:
    - shard-tglu:         NOTRUN -> [ABORT][53] ([i915#11713])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-7/igt@gem_exec_big@single.html

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

  * igt@gem_exec_capture@capture@vecs0-lmem0:
    - shard-dg2:          NOTRUN -> [FAIL][55] ([i915#11965]) +3 other tests fail
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@gem_exec_capture@capture@vecs0-lmem0.html

  * igt@gem_exec_endless@dispatch@bcs0:
    - shard-dg1:          [PASS][56] -> [TIMEOUT][57] ([i915#3778]) +1 other test timeout
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-18/igt@gem_exec_endless@dispatch@bcs0.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@gem_exec_endless@dispatch@bcs0.html

  * igt@gem_exec_fence@concurrent:
    - shard-mtlp:         NOTRUN -> [SKIP][58] ([i915#4812])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-2/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_flush@basic-uc-ro-default:
    - shard-dg2:          NOTRUN -> [SKIP][59] ([i915#3539] / [i915#4852]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@gem_exec_flush@basic-uc-ro-default.html
    - shard-dg1:          NOTRUN -> [SKIP][60] ([i915#3539] / [i915#4852]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@gem_exec_flush@basic-uc-ro-default.html

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

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

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

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

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

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

  * igt@gem_exec_schedule@reorder-wide:
    - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#15689] / [i915#2575]) +48 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html

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

  * igt@gem_fence_thrash@bo-write-verify-y:
    - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#4860])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][70] ([i915#4860])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html

  * igt@gem_lmem_swapping@heavy-random:
    - shard-glk:          NOTRUN -> [SKIP][71] ([i915#4613]) +6 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk5/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][72] ([i915#12193])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][73] ([i915#4613])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][74] ([i915#4565])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-dg2:          NOTRUN -> [SKIP][75] ([i915#15689]) +77 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html
    - shard-tglu-1:       NOTRUN -> [SKIP][76] ([i915#4613]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html

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

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

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg2:          NOTRUN -> [CRASH][79] ([i915#5493])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_media_vme:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#284])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@gem_media_vme.html
    - shard-rkl:          NOTRUN -> [SKIP][81] ([i915#284])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@gem_media_vme.html

  * igt@gem_mmap@basic-small-bo:
    - shard-dg2:          NOTRUN -> [SKIP][82] ([i915#4083]) +2 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@gem_mmap@basic-small-bo.html

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

  * igt@gem_mmap_gtt@big-bo-tiledy:
    - shard-mtlp:         NOTRUN -> [SKIP][84] ([i915#4077]) +7 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-2/igt@gem_mmap_gtt@big-bo-tiledy.html

  * igt@gem_mmap_gtt@flink-race:
    - shard-dg1:          NOTRUN -> [SKIP][85] ([i915#4077]) +6 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@gem_mmap_gtt@flink-race.html

  * igt@gem_mmap_wc@read-write:
    - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4083]) +2 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-8/igt@gem_mmap_wc@read-write.html

  * igt@gem_mmap_wc@write-read:
    - shard-dg1:          NOTRUN -> [SKIP][87] ([i915#4083]) +8 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-18/igt@gem_mmap_wc@write-read.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - shard-dg1:          NOTRUN -> [SKIP][88] ([i915#3282]) +5 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

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

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

  * igt@gem_pxp@create-regular-buffer:
    - shard-rkl:          NOTRUN -> [SKIP][92] ([i915#4270])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@gem_pxp@create-regular-buffer.html

  * igt@gem_pxp@hw-rejects-pxp-buffer:
    - shard-rkl:          NOTRUN -> [SKIP][93] ([i915#13717]) +1 other test skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-buffer.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-tglu:         NOTRUN -> [SKIP][94] ([i915#13398])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-context.html
    - shard-mtlp:         NOTRUN -> [SKIP][95] ([i915#13398])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-4/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_pxp@reject-modify-context-protection-off-1:
    - shard-dg1:          NOTRUN -> [SKIP][96] ([i915#4270]) +3 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-off-1.html

  * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
    - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#4270]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html

  * igt@gem_readwrite@beyond-eob:
    - shard-dg2:          NOTRUN -> [SKIP][98] ([i915#3282])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@gem_readwrite@beyond-eob.html
    - shard-rkl:          NOTRUN -> [SKIP][99] ([i915#3282]) +6 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@gem_readwrite@beyond-eob.html

  * igt@gem_readwrite@new-obj:
    - shard-mtlp:         NOTRUN -> [SKIP][100] ([i915#3282]) +3 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-8/igt@gem_readwrite@new-obj.html

  * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][101] ([i915#8428]) +3 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html

  * igt@gem_render_copy@yf-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][102] ([i915#5190] / [i915#8428]) +5 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@gem_render_copy@yf-tiled.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][103] ([i915#4079])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-18/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-mtlp:         NOTRUN -> [SKIP][104] ([i915#3297]) +2 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@sd-probe:
    - shard-dg2:          NOTRUN -> [SKIP][105] ([i915#3297] / [i915#4958])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@gem_userptr_blits@sd-probe.html
    - shard-dg1:          NOTRUN -> [SKIP][106] ([i915#3297] / [i915#4958])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-tglu-1:       NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-dg2:          NOTRUN -> [SKIP][108] ([i915#3297])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap-cycles.html
    - shard-rkl:          NOTRUN -> [SKIP][109] ([i915#3297]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html
    - shard-dg1:          NOTRUN -> [SKIP][110] ([i915#3297])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@gem_userptr_blits@unsync-unmap-cycles.html
    - shard-tglu:         NOTRUN -> [SKIP][111] ([i915#3297]) +2 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gem_workarounds@suspend-resume:
    - shard-rkl:          [PASS][112] -> [ABORT][113] ([i915#15152])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-5/igt@gem_workarounds@suspend-resume.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-1/igt@gem_workarounds@suspend-resume.html

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

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

  * igt@gen9_exec_parse@batch-zero-length:
    - shard-tglu:         NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) +4 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-dg1:          NOTRUN -> [SKIP][117] ([i915#2527]) +3 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-18/igt@gen9_exec_parse@bb-start-cmd.html
    - shard-mtlp:         NOTRUN -> [SKIP][118] ([i915#2856]) +1 other test skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-6/igt@gen9_exec_parse@bb-start-cmd.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-rkl:          NOTRUN -> [SKIP][119] ([i915#2527]) +5 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_drm_fdinfo@busy-check-all@vecs0:
    - shard-dg2:          NOTRUN -> [SKIP][120] ([i915#11527]) +7 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@i915_drm_fdinfo@busy-check-all@vecs0.html

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

  * igt@i915_module_load@fault-injection@__uc_init:
    - shard-rkl:          NOTRUN -> [SKIP][122] ([i915#15479]) +4 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@i915_module_load@fault-injection@__uc_init.html

  * igt@i915_module_load@fault-injection@intel_connector_register:
    - shard-rkl:          NOTRUN -> [ABORT][123] ([i915#15342]) +1 other test abort
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@i915_module_load@fault-injection@intel_connector_register.html
    - shard-tglu:         NOTRUN -> [ABORT][124] ([i915#15342]) +1 other test abort
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-5/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][125] ([i915#15479]) +4 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-5/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html

  * igt@i915_module_load@reload-no-display:
    - shard-tglu:         [PASS][126] -> [DMESG-WARN][127] ([i915#13029] / [i915#14545])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-tglu-8/igt@i915_module_load@reload-no-display.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-5/igt@i915_module_load@reload-no-display.html

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

  * igt@i915_pm_freq_api@freq-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][129] ([i915#8399])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-tglu-1:       NOTRUN -> [SKIP][130] ([i915#14498])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rps@thresholds-park:
    - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#11681])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@i915_pm_rps@thresholds-park.html

  * igt@i915_power@sanity:
    - shard-rkl:          NOTRUN -> [SKIP][132] ([i915#7984])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@i915_power@sanity.html

  * igt@i915_selftest@perf:
    - shard-dg2:          [PASS][133] -> [FAIL][134] ([i915#15689]) +6 other tests fail
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@i915_selftest@perf.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@i915_selftest@perf.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-dg1:          [PASS][135] -> [DMESG-WARN][136] ([i915#4391] / [i915#4423])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-18/igt@i915_suspend@basic-s3-without-i915.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@i915_suspend@basic-s3-without-i915.html

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

  * igt@i915_suspend@forcewake:
    - shard-glk:          NOTRUN -> [INCOMPLETE][139] ([i915#4817])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk6/igt@i915_suspend@forcewake.html

  * igt@i915_suspend@sysfs-reader:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][140] ([i915#4817])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk10/igt@i915_suspend@sysfs-reader.html

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

  * igt@kms_addfb_basic@addfb25-x-tiled-legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][142] ([i915#4212]) +3 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html

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

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-rkl:          NOTRUN -> [SKIP][145] ([i915#12454] / [i915#12712])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][146] ([i915#12761]) +1 other test incomplete
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][147] ([i915#12761]) +1 other test incomplete
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-mtlp:         NOTRUN -> [SKIP][148] ([i915#1769] / [i915#3555])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-dg2:          [PASS][149] -> [FAIL][150] ([i915#5956]) +1 other test fail
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [FAIL][151] ([i915#5956])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
    - shard-rkl:          NOTRUN -> [SKIP][152] ([i915#14544] / [i915#5286])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-dg2:          [PASS][153] -> [ABORT][154] ([i915#15759]) +2 other tests abort
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-dg1:          NOTRUN -> [SKIP][155] ([i915#4538] / [i915#5286]) +3 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
    - shard-tglu:         NOTRUN -> [SKIP][156] ([i915#5286]) +2 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-tglu-1:       NOTRUN -> [SKIP][157] ([i915#5286]) +4 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-mtlp:         [PASS][159] -> [FAIL][160] ([i915#15733] / [i915#5138])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][161] ([i915#3638]) +4 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@kms_big_fb@linear-32bpp-rotate-90.html

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

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][163] ([i915#3638]) +6 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-dg1:          NOTRUN -> [SKIP][164] ([i915#4538]) +4 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
    - shard-mtlp:         NOTRUN -> [SKIP][165] +10 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-dg2:          NOTRUN -> [SKIP][166] ([i915#4538] / [i915#5190]) +4 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-rkl:          NOTRUN -> [SKIP][167] +28 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#15689] / [i915#5190]) +1 other test skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][169] ([i915#10307] / [i915#6095]) +102 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/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-mtl-rc-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][170] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][171] ([i915#6095]) +211 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html

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

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][173] ([i915#6095]) +84 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][174] ([i915#6095]) +46 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
    - shard-glk11:        NOTRUN -> [SKIP][175] +31 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][176] ([i915#12313]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][177] ([i915#12313]) +1 other test skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][178] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][179] ([i915#14098] / [i915#6095]) +48 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][180] ([i915#12313]) +1 other test skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][181] ([i915#12313]) +1 other test skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][182] ([i915#6095]) +49 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
    - shard-mtlp:         NOTRUN -> [SKIP][183] ([i915#6095]) +44 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][184] ([i915#12313]) +1 other test skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][185] ([i915#12313] / [i915#14544])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

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

  * igt@kms_cdclk@mode-transition:
    - shard-rkl:          NOTRUN -> [SKIP][187] ([i915#3742]) +1 other test skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_cdclk@mode-transition.html
    - shard-dg1:          NOTRUN -> [SKIP][188] ([i915#3742]) +1 other test skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-18/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2:          NOTRUN -> [SKIP][189] ([i915#13784])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-tglu:         NOTRUN -> [SKIP][190] ([i915#3742])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-9/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-mtlp:         NOTRUN -> [SKIP][191] ([i915#13784])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-1/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][192] ([i915#11151] / [i915#7828]) +2 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
    - shard-rkl:          NOTRUN -> [SKIP][193] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html

  * igt@kms_chamelium_frames@hdmi-frame-dump:
    - shard-tglu-1:       NOTRUN -> [SKIP][194] ([i915#11151] / [i915#7828]) +7 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-mtlp:         NOTRUN -> [SKIP][195] ([i915#11151] / [i915#7828]) +4 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-rkl:          NOTRUN -> [SKIP][196] ([i915#11151] / [i915#7828]) +11 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-dg1:          NOTRUN -> [SKIP][197] ([i915#11151] / [i915#7828]) +5 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@kms_chamelium_hpd@vga-hpd-fast.html

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

  * igt@kms_color_pipeline@plane-ctm3x4:
    - shard-mtlp:         NOTRUN -> [FAIL][199] ([i915#15733]) +12 other tests fail
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-4/igt@kms_color_pipeline@plane-ctm3x4.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][200] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][201] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-2/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@atomic-hdcp14:
    - shard-dg2:          NOTRUN -> [SKIP][202] ([i915#6944])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_content_protection@atomic-hdcp14.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][203] ([i915#15330]) +1 other test skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

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

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-dg2:          NOTRUN -> [SKIP][205] ([i915#15330])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
    - shard-mtlp:         NOTRUN -> [SKIP][206] ([i915#15330])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

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

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

  * igt@kms_content_protection@lic-type-0:
    - shard-rkl:          NOTRUN -> [SKIP][209] ([i915#14544] / [i915#6944] / [i915#9424])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_content_protection@lic-type-0.html
    - shard-tglu-1:       NOTRUN -> [SKIP][210] ([i915#6944] / [i915#9424])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][211] ([i915#6944])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_content_protection@lic-type-1:
    - shard-rkl:          NOTRUN -> [SKIP][212] ([i915#6944] / [i915#9424])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_content_protection@lic-type-1.html
    - shard-dg1:          NOTRUN -> [SKIP][213] ([i915#6944] / [i915#9424])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@kms_content_protection@lic-type-1.html
    - shard-tglu:         NOTRUN -> [SKIP][214] ([i915#6944] / [i915#9424])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-3/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@uevent:
    - shard-mtlp:         NOTRUN -> [SKIP][215] ([i915#6944] / [i915#9424]) +1 other test skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-8/igt@kms_content_protection@uevent.html
    - shard-tglu-1:       NOTRUN -> [SKIP][216] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_content_protection@uevent.html

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

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-rkl:          NOTRUN -> [SKIP][219] ([i915#3555]) +6 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html

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

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][221] ([i915#13049]) +1 other test skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-rkl:          NOTRUN -> [SKIP][222] ([i915#13049]) +2 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#13049]) +1 other test skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-tglu:         NOTRUN -> [SKIP][224] ([i915#13049]) +1 other test skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-mtlp:         NOTRUN -> [SKIP][225] ([i915#13049]) +1 other test skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-dg1:          NOTRUN -> [SKIP][226] ([i915#3555]) +3 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
    - shard-tglu:         NOTRUN -> [SKIP][227] ([i915#3555]) +4 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][228] ([i915#13046] / [i915#5354]) +2 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-mtlp:         NOTRUN -> [SKIP][229] ([i915#9809]) +1 other test skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-rkl:          NOTRUN -> [SKIP][230] ([i915#4103])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-rkl:          NOTRUN -> [SKIP][231] ([i915#13691])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html

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

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-rkl:          NOTRUN -> [SKIP][233] ([i915#13749]) +1 other test skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-tglu-1:       NOTRUN -> [SKIP][234] ([i915#13749])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-tglu:         NOTRUN -> [SKIP][235] ([i915#13749])
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-7/igt@kms_dp_link_training@non-uhbr-sst.html

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

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-rkl:          NOTRUN -> [SKIP][237] ([i915#13707])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][238] ([i915#8812])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-gtt.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg1:          NOTRUN -> [SKIP][239] ([i915#3840])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-tglu:         NOTRUN -> [SKIP][240] ([i915#3840]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp.html

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

  * igt@kms_dsc@dsc-with-bpc:
    - shard-rkl:          NOTRUN -> [SKIP][242] ([i915#3555] / [i915#3840])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_dsc@dsc-with-bpc.html

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

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-tglu-1:       NOTRUN -> [SKIP][244] ([i915#3840] / [i915#9053])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@psr:
    - shard-rkl:          NOTRUN -> [SKIP][245] ([i915#3955])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2:          NOTRUN -> [SKIP][246] ([i915#1839])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_feature_discovery@display-4x.html
    - shard-rkl:          NOTRUN -> [SKIP][247] ([i915#1839])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@kms_feature_discovery@display-4x.html
    - shard-dg1:          NOTRUN -> [SKIP][248] ([i915#1839]) +1 other test skip
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-17/igt@kms_feature_discovery@display-4x.html
    - shard-tglu:         NOTRUN -> [SKIP][249] ([i915#1839])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-9/igt@kms_feature_discovery@display-4x.html
    - shard-mtlp:         NOTRUN -> [SKIP][250] ([i915#1839])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-1/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg1:          NOTRUN -> [SKIP][251] ([i915#658])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-17/igt@kms_feature_discovery@psr2.html

  * igt@kms_fence_pin_leak:
    - shard-dg1:          NOTRUN -> [SKIP][252] ([i915#4881])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@kms_fence_pin_leak.html

  * igt@kms_flip@2x-dpms-vs-vblank-race:
    - shard-rkl:          NOTRUN -> [SKIP][253] ([i915#14544] / [i915#9934]) +1 other test skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html
    - shard-tglu-1:       NOTRUN -> [SKIP][254] ([i915#3637] / [i915#9934]) +3 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_flip@2x-dpms-vs-vblank-race.html

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

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][256] ([i915#8381])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html

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

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

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][259] ([i915#9934]) +5 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@2x-plain-flip:
    - shard-rkl:          NOTRUN -> [SKIP][260] ([i915#9934]) +10 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-dg1:          NOTRUN -> [SKIP][261] ([i915#9934]) +5 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][262] ([i915#3637] / [i915#9934]) +5 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
    - shard-mtlp:         NOTRUN -> [SKIP][263] ([i915#3637] / [i915#9934]) +1 other test skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg1:          [PASS][264] -> [DMESG-WARN][265] ([i915#4423]) +3 other tests dmesg-warn
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-14/igt@kms_flip@flip-vs-suspend-interruptible.html
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@kms_flip@flip-vs-suspend-interruptible.html

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

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

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

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][269] ([i915#8810] / [i915#8813])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][270] ([i915#15643]) +5 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][272] ([i915#8708]) +4 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-snb:          [PASS][273] -> [SKIP][274] +13 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][275] ([i915#1825]) +18 other tests skip
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][276] ([i915#15102]) +5 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-dg1:          NOTRUN -> [SKIP][277] ([i915#15102] / [i915#3458]) +7 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
    - shard-tglu-1:       NOTRUN -> [SKIP][278] +31 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
    - shard-dg1:          NOTRUN -> [SKIP][279] +26 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
    - shard-dg2:          NOTRUN -> [SKIP][280] ([i915#5354]) +11 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html

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

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

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][283] ([i915#15102] / [i915#3023]) +21 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html

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

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

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][286] ([i915#15102])
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
    - shard-dg1:          NOTRUN -> [SKIP][287] ([i915#15102]) +1 other test skip
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
    - shard-tglu:         NOTRUN -> [SKIP][288] ([i915#15102]) +21 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][289] ([i915#1825]) +50 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html

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

  * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#8708]) +6 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html

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

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-dg2:          NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8228])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html
    - shard-dg1:          NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8228])
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-17/igt@kms_hdr@invalid-metadata-sizes.html
    - shard-tglu:         NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8228])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-10/igt@kms_hdr@invalid-metadata-sizes.html
    - shard-mtlp:         NOTRUN -> [SKIP][296] ([i915#12713] / [i915#3555] / [i915#8228])
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-4/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8228]) +3 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
    - shard-tglu-1:       NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][299] ([i915#15460])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@kms_joiner@basic-big-joiner.html

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

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][301] ([i915#15458]) +1 other test skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2:          NOTRUN -> [SKIP][302] ([i915#4816])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-rkl:          NOTRUN -> [SKIP][303] ([i915#1839] / [i915#4816])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-rkl:          NOTRUN -> [SKIP][304] ([i915#6301])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html
    - shard-tglu:         NOTRUN -> [SKIP][305] ([i915#6301])
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-5/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
    - shard-dg2:          NOTRUN -> [SKIP][306] +7 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html

  * igt@kms_pipe_stress@stress-xrgb8888-4tiled:
    - shard-dg1:          NOTRUN -> [SKIP][307] ([i915#14712])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
    - shard-glk10:        NOTRUN -> [SKIP][308] +109 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html

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

  * igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-3:
    - shard-dg1:          NOTRUN -> [ABORT][310] ([i915#15759])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-3.html

  * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7:
    - shard-tglu-1:       NOTRUN -> [SKIP][311] ([i915#15608]) +1 other test skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
    - shard-tglu-1:       NOTRUN -> [SKIP][312] ([i915#15709]) +1 other test skip
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html

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

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

  * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
    - shard-dg1:          [PASS][315] -> [ABORT][316] ([i915#15759]) +8 other tests abort
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-14/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
    - shard-dg1:          NOTRUN -> [SKIP][317] ([i915#15709]) +3 other tests skip
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-17/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
    - shard-tglu:         NOTRUN -> [SKIP][318] ([i915#15709]) +4 other tests skip
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
    - shard-mtlp:         NOTRUN -> [SKIP][319] ([i915#15709]) +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][320] ([i915#15709]) +4 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@kms_plane@pixel-format-yf-tiled-modifier.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
    - shard-glk:          NOTRUN -> [INCOMPLETE][321] ([i915#13026]) +1 other test incomplete
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html

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

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-rkl:          NOTRUN -> [SKIP][323] ([i915#13958] / [i915#14544])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-mtlp:         NOTRUN -> [SKIP][324] ([i915#13958])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-6/igt@kms_plane_multiple@2x-tiling-x.html

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

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

  * igt@kms_plane_multiple@tiling-yf:
    - shard-rkl:          NOTRUN -> [SKIP][327] ([i915#14259]) +1 other test skip
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2:          NOTRUN -> [SKIP][328] ([i915#6953] / [i915#9423])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-rkl:          NOTRUN -> [SKIP][329] ([i915#6953])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-dg1:          NOTRUN -> [SKIP][330] ([i915#6953])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-mtlp:         NOTRUN -> [SKIP][331] ([i915#6953])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-5/igt@kms_plane_scaling@intel-max-src-size.html

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

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers:
    - shard-dg2:          [PASS][333] -> [SKIP][334] ([i915#15689] / [i915#9423]) +4 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html

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

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

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

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
    - shard-dg2:          NOTRUN -> [SKIP][338] ([i915#15689] / [i915#9423]) +2 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-mtlp:         NOTRUN -> [SKIP][339] ([i915#15329] / [i915#6953])
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
    - shard-mtlp:         NOTRUN -> [SKIP][340] ([i915#15329]) +8 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][341] ([i915#12343])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][342] ([i915#12343])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade:
    - shard-tglu:         NOTRUN -> [SKIP][343] ([i915#9812]) +1 other test skip
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-6/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][344] ([i915#5354])
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html
    - shard-dg1:          NOTRUN -> [SKIP][345] ([i915#5354]) +1 other test skip
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2:          NOTRUN -> [SKIP][346] ([i915#9685])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_pm_dc@dc5-psr.html
    - shard-rkl:          NOTRUN -> [SKIP][347] ([i915#9685])
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-tglu-1:       NOTRUN -> [FAIL][348] ([i915#15752])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html

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

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-rkl:          NOTRUN -> [SKIP][350] ([i915#8430])
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@kms_pm_lpsp@screens-disabled.html
    - shard-dg1:          NOTRUN -> [SKIP][351] ([i915#8430])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html
    - shard-tglu:         NOTRUN -> [SKIP][352] ([i915#8430])
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html
    - shard-mtlp:         NOTRUN -> [SKIP][353] ([i915#8430])
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-2/igt@kms_pm_lpsp@screens-disabled.html

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

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

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-rkl:          [PASS][356] -> [SKIP][357] ([i915#15073])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@package-g7:
    - shard-mtlp:         NOTRUN -> [SKIP][358] ([i915#15403])
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-4/igt@kms_pm_rpm@package-g7.html

  * igt@kms_prime@d3hot:
    - shard-rkl:          NOTRUN -> [SKIP][359] ([i915#6524])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-dg1:          NOTRUN -> [SKIP][360] ([i915#11520]) +3 other tests skip
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-17/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          NOTRUN -> [SKIP][361] ([i915#11520] / [i915#14544])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
    - shard-tglu-1:       NOTRUN -> [SKIP][362] ([i915#11520]) +6 other tests skip
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

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

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

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-snb:          NOTRUN -> [SKIP][365] ([i915#11520]) +2 other tests skip
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-tglu:         NOTRUN -> [SKIP][366] ([i915#11520]) +6 other tests skip
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-dg2:          NOTRUN -> [SKIP][367] ([i915#11520]) +3 other tests skip
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
    - shard-glk11:        NOTRUN -> [SKIP][368] ([i915#11520]) +1 other test skip
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk11/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html

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

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-rkl:          NOTRUN -> [SKIP][370] ([i915#9683])
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-pr-primary-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][371] ([i915#9688]) +14 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-3/igt@kms_psr@fbc-pr-primary-blt.html

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

  * igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
    - shard-glk:          NOTRUN -> [SKIP][373] +448 other tests skip
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk5/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][374] ([i915#1072] / [i915#9732]) +31 other tests skip
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_psr@psr2-primary-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][375] ([i915#1072] / [i915#9732]) +13 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_psr@psr2-primary-mmap-gtt.html

  * igt@kms_psr@psr2-primary-mmap-gtt@edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][376] ([i915#4077] / [i915#9688]) +3 other tests skip
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-1/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html

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

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-dg1:          NOTRUN -> [SKIP][379] ([i915#9685]) +1 other test skip
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-tglu:         NOTRUN -> [SKIP][380] ([i915#9685]) +1 other test skip
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-tglu-1:       NOTRUN -> [SKIP][381] ([i915#9685])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

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

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-dg2:          NOTRUN -> [SKIP][384] ([i915#12755] / [i915#5190])
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-dg2:          NOTRUN -> [SKIP][385] ([i915#12755])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-mtlp:         NOTRUN -> [SKIP][386] ([i915#12755])
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-90.html

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

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][388] ([i915#12276]) +1 other test incomplete
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk5/igt@kms_vblank@ts-continuation-suspend.html

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

  * igt@kms_vrr@flip-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][391] ([i915#15243] / [i915#3555])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_vrr@flip-suspend.html

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

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-mtlp:         NOTRUN -> [SKIP][393] ([i915#8808] / [i915#9906])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-5/igt@kms_vrr@seamless-rr-switch-drrs.html

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

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-rkl:          NOTRUN -> [SKIP][395] ([i915#9906])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-tglu:         NOTRUN -> [SKIP][396] ([i915#9906]) +1 other test skip
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          NOTRUN -> [FAIL][397] ([i915#9100])
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html

  * igt@perf@per-context-mode-unprivileged:
    - shard-rkl:          NOTRUN -> [SKIP][398] ([i915#2435])
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html

  * igt@perf@whitelisted-registers-userspace-config:
    - shard-dg2:          [PASS][399] -> [SKIP][400] ([i915#15607]) +2 other tests skip
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-3/igt@perf@whitelisted-registers-userspace-config.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@perf@whitelisted-registers-userspace-config.html

  * igt@perf_pmu@busy-accuracy-98:
    - shard-snb:          NOTRUN -> [SKIP][401] +167 other tests skip
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-snb7/igt@perf_pmu@busy-accuracy-98.html

  * igt@perf_pmu@busy-double-start@bcs0:
    - shard-mtlp:         [PASS][402] -> [FAIL][403] ([i915#4349]) +6 other tests fail
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html

  * igt@perf_pmu@frequency:
    - shard-dg2:          NOTRUN -> [FAIL][404] ([i915#12549] / [i915#6806]) +1 other test fail
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@perf_pmu@frequency.html

  * igt@perf_pmu@rc6-suspend:
    - shard-rkl:          [PASS][405] -> [INCOMPLETE][406] ([i915#13520])
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-2/igt@perf_pmu@rc6-suspend.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@perf_pmu@rc6-suspend.html

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

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

  * igt@prime_mmap@test_reprime:
    - shard-dg2:          [PASS][409] -> [SKIP][410] ([i915#15689] / [i915#2575]) +96 other tests skip
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-7/igt@prime_mmap@test_reprime.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@prime_mmap@test_reprime.html

  * igt@prime_vgem@basic-fence-mmap:
    - shard-mtlp:         NOTRUN -> [SKIP][411] ([i915#3708] / [i915#4077])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-write:
    - shard-dg2:          NOTRUN -> [SKIP][412] ([i915#3291] / [i915#3708])
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@prime_vgem@basic-write.html
    - shard-rkl:          NOTRUN -> [SKIP][413] ([i915#3291] / [i915#3708])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@prime_vgem@basic-write.html
    - shard-dg1:          NOTRUN -> [SKIP][414] ([i915#3708]) +1 other test skip
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-18/igt@prime_vgem@basic-write.html
    - shard-mtlp:         NOTRUN -> [SKIP][415] ([i915#10216] / [i915#3708])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-7/igt@prime_vgem@basic-write.html

  * igt@prime_vgem@fence-write-hang:
    - shard-tglu:         NOTRUN -> [SKIP][416] +63 other tests skip
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-10/igt@prime_vgem@fence-write-hang.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg1:          NOTRUN -> [SKIP][417] ([i915#9917]) +1 other test skip
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
    - shard-tglu:         NOTRUN -> [FAIL][418] ([i915#12910]) +9 other tests fail
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each:
    - shard-rkl:          NOTRUN -> [SKIP][419] ([i915#9917])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html

  * igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
    - shard-dg2:          [PASS][420] -> [SKIP][421] ([i915#15689]) +158 other tests skip
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html

  
#### Possible fixes ####

  * igt@fbdev@write:
    - shard-dg2:          [SKIP][422] ([i915#2582]) -> [PASS][423]
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@fbdev@write.html
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@fbdev@write.html

  * igt@gem_ctx_freq@sysfs@gt0:
    - shard-dg2:          [FAIL][424] ([i915#9561]) -> [PASS][425] +1 other test pass
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@gem_ctx_freq@sysfs@gt0.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-3/igt@gem_ctx_freq@sysfs@gt0.html

  * igt@gem_eio@hibernate:
    - shard-rkl:          [ABORT][426] ([i915#7975]) -> [PASS][427]
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-1/igt@gem_eio@hibernate.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@gem_eio@hibernate.html

  * igt@gem_exec_suspend@basic-s3:
    - shard-rkl:          [INCOMPLETE][428] ([i915#13356]) -> [PASS][429] +1 other test pass
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_gpgpu_fill@offset-16x16:
    - shard-dg2:          [SKIP][430] ([i915#15689] / [i915#2575]) -> [PASS][431] +114 other tests pass
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_gpgpu_fill@offset-16x16.html
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@gem_gpgpu_fill@offset-16x16.html

  * igt@gem_lmem_swapping@parallel-random@lmem0:
    - shard-dg2:          [ABORT][432] ([i915#15759]) -> [PASS][433] +1 other test pass
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-3/igt@gem_lmem_swapping@parallel-random@lmem0.html
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@gem_lmem_swapping@parallel-random@lmem0.html

  * igt@gem_mmap_offset@clear-via-pagefault:
    - shard-mtlp:         [ABORT][434] ([i915#14809]) -> [PASS][435] +1 other test pass
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html

  * igt@gem_softpin@noreloc-s3:
    - shard-rkl:          [INCOMPLETE][436] ([i915#13809]) -> [PASS][437]
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@gem_softpin@noreloc-s3.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - shard-dg1:          [DMESG-WARN][438] ([i915#4391] / [i915#4423]) -> [PASS][439]
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-17/igt@i915_suspend@basic-s2idle-without-i915.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
    - shard-rkl:          [FAIL][440] ([i915#13566]) -> [PASS][441] +2 other tests pass
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
    - shard-tglu:         [FAIL][442] ([i915#13566]) -> [PASS][443] +3 other tests pass
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
    - shard-rkl:          [INCOMPLETE][444] ([i915#6113]) -> [PASS][445] +1 other test pass
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-snb:          [SKIP][446] -> [PASS][447] +9 other tests pass
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-0:
    - shard-dg1:          [ABORT][448] ([i915#15759]) -> [PASS][449]
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-14/igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-0.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-0.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25:
    - shard-dg2:          [SKIP][450] ([i915#15689] / [i915#9423]) -> [PASS][451] +6 other tests pass
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
    - shard-dg1:          [DMESG-WARN][452] ([i915#4423]) -> [PASS][453] +3 other tests pass
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg1:          [SKIP][454] ([i915#15073]) -> [PASS][455]
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-dg2:          [SKIP][456] ([i915#15689]) -> [PASS][457] +171 other tests pass
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
    - shard-rkl:          [INCOMPLETE][458] ([i915#12276]) -> [PASS][459]
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@perf@create-destroy-userspace-config:
    - shard-dg2:          [SKIP][460] -> [PASS][461] +3 other tests pass
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@perf@create-destroy-userspace-config.html

  * igt@perf@gen12-group-concurrent-oa-buffer-read:
    - shard-tglu:         [FAIL][462] ([i915#10538]) -> [PASS][463]
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-tglu-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-6/igt@perf@gen12-group-concurrent-oa-buffer-read.html

  * igt@perf@polling-small-buf:
    - shard-dg2:          [SKIP][464] ([i915#15607]) -> [PASS][465]
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@perf@polling-small-buf.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@perf@polling-small-buf.html

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

  
#### Warnings ####

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-dg2:          [SKIP][468] ([i915#8411]) -> [SKIP][469] ([i915#15689] / [i915#2575])
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@api_intel_bb@object-reloc-purge-cache.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@gem_busy@semaphore:
    - shard-dg2:          [SKIP][470] ([i915#3936]) -> [SKIP][471] ([i915#15689] / [i915#2575])
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@gem_busy@semaphore.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_busy@semaphore.html

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          [INCOMPLETE][472] ([i915#13356]) -> [SKIP][473] ([i915#15689] / [i915#2575])
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@gem_ccs@suspend-resume.html
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_ccs@suspend-resume.html

  * igt@gem_create@create-ext-set-pat:
    - shard-dg2:          [SKIP][474] ([i915#15689] / [i915#2575]) -> [SKIP][475] ([i915#8562])
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_create@create-ext-set-pat.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_persistence@heartbeat-many:
    - shard-dg2:          [SKIP][476] ([i915#15689] / [i915#2575]) -> [SKIP][477] ([i915#8555]) +1 other test skip
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-many.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt:
    - shard-dg2:          [SKIP][478] ([i915#15689] / [i915#2575]) -> [SKIP][479] ([i915#5882])
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-dg2:          [SKIP][480] ([i915#280]) -> [SKIP][481] ([i915#15689] / [i915#2575]) +1 other test skip
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-3/igt@gem_ctx_sseu@invalid-sseu.html
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_exec_balancer@bonded-true-hang:
    - shard-dg2:          [SKIP][482] ([i915#15689] / [i915#2575]) -> [SKIP][483] ([i915#4812])
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@gem_exec_balancer@bonded-true-hang.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-dg2:          [SKIP][484] ([i915#4036]) -> [SKIP][485] ([i915#15689] / [i915#2575])
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_capture@capture:
    - shard-dg2:          [SKIP][486] ([i915#15689] / [i915#2575]) -> [FAIL][487] ([i915#11965])
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_exec_capture@capture.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@gem_exec_capture@capture.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-rkl:          [SKIP][488] ([i915#14544] / [i915#6344]) -> [SKIP][489] ([i915#6344])
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_fence@submit67:
    - shard-dg2:          [SKIP][490] ([i915#4812]) -> [SKIP][491] ([i915#15689] / [i915#2575])
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@gem_exec_fence@submit67.html
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_exec_fence@submit67.html

  * igt@gem_exec_flush@basic-uc-pro-default:
    - shard-dg2:          [SKIP][492] ([i915#15689] / [i915#2575]) -> [SKIP][493] ([i915#3539] / [i915#4852]) +4 other tests skip
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@gem_exec_flush@basic-uc-pro-default.html

  * igt@gem_exec_flush@basic-uc-set-default:
    - shard-dg2:          [SKIP][494] ([i915#3539]) -> [SKIP][495] ([i915#15689] / [i915#2575])
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@gem_exec_flush@basic-uc-set-default.html
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html

  * igt@gem_exec_reloc@basic-gtt:
    - shard-rkl:          [SKIP][496] ([i915#3281]) -> [SKIP][497] ([i915#14544] / [i915#3281]) +1 other test skip
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-5/igt@gem_exec_reloc@basic-gtt.html
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@gem_exec_reloc@basic-gtt.html

  * igt@gem_exec_reloc@basic-gtt-cpu-active:
    - shard-dg2:          [SKIP][498] ([i915#15689] / [i915#2575]) -> [SKIP][499] ([i915#3281]) +8 other tests skip
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html

  * igt@gem_exec_reloc@basic-wc-gtt-active:
    - shard-dg2:          [SKIP][500] ([i915#3281]) -> [SKIP][501] ([i915#15689] / [i915#2575]) +9 other tests skip
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@gem_exec_reloc@basic-wc-gtt-active.html
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_exec_reloc@basic-wc-gtt-active.html

  * igt@gem_exec_schedule@preempt-queue:
    - shard-dg2:          [SKIP][502] ([i915#15689] / [i915#2575]) -> [SKIP][503] ([i915#4537] / [i915#4812])
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_exec_schedule@preempt-queue.html
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@gem_exec_schedule@preempt-queue.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-dg2:          [SKIP][504] ([i915#4537] / [i915#4812]) -> [SKIP][505] ([i915#15689] / [i915#2575])
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_fence_thrash@bo-write-verify-x:
    - shard-dg2:          [SKIP][506] ([i915#15689] / [i915#2575]) -> [SKIP][507] ([i915#4860]) +1 other test skip
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-x.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
    - shard-dg2:          [SKIP][508] ([i915#4860]) -> [SKIP][509] ([i915#15689] / [i915#2575]) +1 other test skip
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-rkl:          [SKIP][510] ([i915#14544] / [i915#4613]) -> [SKIP][511] ([i915#4613]) +2 other tests skip
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-rkl:          [SKIP][512] ([i915#4613]) -> [SKIP][513] ([i915#14544] / [i915#4613])
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-2/igt@gem_lmem_swapping@parallel-multi.html
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-dg2:          [SKIP][514] -> [FAIL][515] ([i915#15734])
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_lmem_swapping@smem-oom.html
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_madvise@dontneed-before-pwrite:
    - shard-dg2:          [SKIP][516] ([i915#3282]) -> [SKIP][517] ([i915#15689] / [i915#2575]) +2 other tests skip
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@gem_madvise@dontneed-before-pwrite.html
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_madvise@dontneed-before-pwrite.html

  * igt@gem_media_fill@media-fill:
    - shard-dg2:          [SKIP][518] ([i915#15689] / [i915#2575]) -> [SKIP][519] ([i915#8289])
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_media_fill@media-fill.html
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@gem_media_fill@media-fill.html

  * igt@gem_mmap_gtt@basic-read-write-distinct:
    - shard-dg2:          [SKIP][520] ([i915#4077]) -> [SKIP][521] ([i915#15689] / [i915#2575]) +11 other tests skip
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@gem_mmap_gtt@basic-read-write-distinct.html
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_mmap_gtt@basic-read-write-distinct.html

  * igt@gem_mmap_wc@copy:
    - shard-dg2:          [SKIP][522] ([i915#15689] / [i915#2575]) -> [SKIP][523] ([i915#4083]) +5 other tests skip
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_mmap_wc@copy.html
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@gem_mmap_wc@copy.html

  * igt@gem_mmap_wc@write-wc-read-gtt:
    - shard-dg2:          [SKIP][524] ([i915#4083]) -> [SKIP][525] ([i915#15689] / [i915#2575]) +2 other tests skip
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@gem_mmap_wc@write-wc-read-gtt.html
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-display:
    - shard-dg2:          [SKIP][526] ([i915#15689] / [i915#2575]) -> [SKIP][527] ([i915#3282]) +7 other tests skip
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html

  * igt@gem_pxp@display-protected-crc:
    - shard-dg2:          [SKIP][528] ([i915#4270]) -> [SKIP][529] ([i915#15689] / [i915#2575]) +1 other test skip
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@gem_pxp@display-protected-crc.html
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_pxp@display-protected-crc.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-dg2:          [SKIP][530] ([i915#15689] / [i915#2575]) -> [SKIP][531] ([i915#4270]) +8 other tests skip
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-dg2:          [SKIP][532] ([i915#15689] / [i915#2575] / [i915#5190]) -> [SKIP][533] ([i915#5190] / [i915#8428]) +6 other tests skip
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
    - shard-dg2:          [SKIP][534] ([i915#5190] / [i915#8428]) -> [SKIP][535] ([i915#15689] / [i915#2575] / [i915#5190]) +7 other tests skip
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-dg2:          [SKIP][536] ([i915#4079]) -> [SKIP][537] ([i915#15689] / [i915#2575])
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
    - shard-rkl:          [SKIP][538] ([i915#8411]) -> [SKIP][539] ([i915#14544] / [i915#8411])
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-rkl:          [SKIP][540] ([i915#14544] / [i915#8411]) -> [SKIP][541] ([i915#8411])
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

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

  * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
    - shard-rkl:          [SKIP][544] ([i915#3282]) -> [SKIP][545] ([i915#14544] / [i915#3282]) +1 other test skip
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_tiled_pread_basic@basic:
    - shard-dg2:          [SKIP][546] ([i915#15689] / [i915#2575]) -> [SKIP][547] ([i915#15657])
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_tiled_pread_basic@basic.html
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@gem_tiled_pread_basic@basic.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg2:          [SKIP][548] ([i915#15689] / [i915#2575]) -> [SKIP][549] ([i915#4079]) +1 other test skip
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_tiled_pread_pwrite.html
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@gem_tiled_pread_pwrite.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-dg2:          [SKIP][550] ([i915#15689] / [i915#2575]) -> [SKIP][551] ([i915#4077]) +7 other tests skip
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_tiled_swapping@non-threaded.html
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@gem_tiled_swapping@non-threaded.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-rkl:          [SKIP][552] ([i915#14544] / [i915#3297]) -> [SKIP][553] ([i915#3297]) +1 other test skip
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-dg2:          [SKIP][554] ([i915#15689] / [i915#2575]) -> [SKIP][555] ([i915#3297]) +1 other test skip
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-dg2:          [SKIP][556] ([i915#3297]) -> [SKIP][557] ([i915#15689] / [i915#2575]) +1 other test skip
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-7/igt@gem_userptr_blits@dmabuf-unsync.html
   [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-dg2:          [SKIP][558] ([i915#15689] / [i915#2575]) -> [SKIP][559] ([i915#3282] / [i915#3297])
   [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_userptr_blits@forbidden-operations.html
   [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gem_userptr_blits@map-fixed-invalidate:
    - shard-dg2:          [SKIP][560] ([i915#15689] / [i915#2575]) -> [SKIP][561] ([i915#3297] / [i915#4880])
   [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html
   [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-dg2:          [SKIP][562] ([i915#3297] / [i915#4880]) -> [SKIP][563] ([i915#15689] / [i915#2575])
   [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_userptr_blits@relocations:
    - shard-dg2:          [SKIP][564] ([i915#15689] / [i915#2575]) -> [SKIP][565] ([i915#3281] / [i915#3297])
   [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gem_userptr_blits@relocations.html
   [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@gem_userptr_blits@relocations.html
    - shard-rkl:          [SKIP][566] ([i915#14544] / [i915#3281] / [i915#3297]) -> [SKIP][567] ([i915#3281] / [i915#3297])
   [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@gem_userptr_blits@relocations.html
   [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@gem_userptr_blits@relocations.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-rkl:          [SKIP][568] ([i915#3297]) -> [SKIP][569] ([i915#14544] / [i915#3297]) +1 other test skip
   [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-8/igt@gem_userptr_blits@unsync-overlap.html
   [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gen3_render_linear_blits:
    - shard-dg2:          [SKIP][570] ([i915#15689] / [i915#2575]) -> [SKIP][571] +6 other tests skip
   [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gen3_render_linear_blits.html
   [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@gen3_render_linear_blits.html

  * igt@gen7_exec_parse@basic-rejected:
    - shard-dg2:          [SKIP][572] -> [SKIP][573] ([i915#15689] / [i915#2575]) +5 other tests skip
   [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@gen7_exec_parse@basic-rejected.html
   [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-rkl:          [SKIP][574] ([i915#2527]) -> [SKIP][575] ([i915#14544] / [i915#2527])
   [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
   [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html

  * igt@gen9_exec_parse@batch-without-end:
    - shard-dg2:          [SKIP][576] ([i915#2856]) -> [SKIP][577] ([i915#15689] / [i915#2575]) +1 other test skip
   [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@gen9_exec_parse@batch-without-end.html
   [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@gen9_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-dg2:          [SKIP][578] ([i915#15689] / [i915#2575]) -> [SKIP][579] ([i915#2856]) +1 other test skip
   [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@gen9_exec_parse@secure-batches.html
   [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_drm_fdinfo@most-busy-check-all:
    - shard-dg2:          [SKIP][580] ([i915#14073]) -> [SKIP][581] ([i915#15689])
   [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@i915_drm_fdinfo@most-busy-check-all.html
   [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@i915_drm_fdinfo@most-busy-check-all.html

  * igt@i915_drm_fdinfo@virtual-busy:
    - shard-dg2:          [SKIP][582] ([i915#15689]) -> [SKIP][583] ([i915#14118])
   [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@i915_drm_fdinfo@virtual-busy.html
   [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@i915_drm_fdinfo@virtual-busy.html

  * igt@i915_fb_tiling@basic-x-tiling:
    - shard-dg2:          [SKIP][584] ([i915#15689] / [i915#2575]) -> [SKIP][585] ([i915#13786])
   [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@i915_fb_tiling@basic-x-tiling.html
   [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@i915_fb_tiling@basic-x-tiling.html

  * igt@i915_module_load@fault-injection:
    - shard-dg2:          [ABORT][586] ([i915#15342] / [i915#15481]) -> [SKIP][587] ([i915#15689] / [i915#2575])
   [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@i915_module_load@fault-injection.html
   [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@i915_module_load@fault-injection.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-rkl:          [SKIP][588] ([i915#14498]) -> [SKIP][589] ([i915#14498] / [i915#14544])
   [588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html
   [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@gem-evict-pwrite:
    - shard-dg2:          [SKIP][590] ([i915#4077]) -> [SKIP][591] ([i915#15689])
   [590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-5/igt@i915_pm_rpm@gem-evict-pwrite.html
   [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@i915_pm_rpm@gem-evict-pwrite.html

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg2:          [SKIP][592] ([i915#15689] / [i915#2575]) -> [SKIP][593] ([i915#11681] / [i915#6621])
   [592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
   [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@i915_pm_rps@min-max-config-idle.html

  * igt@i915_pm_rps@thresholds:
    - shard-dg2:          [SKIP][594] ([i915#15689] / [i915#2575]) -> [SKIP][595] ([i915#11681])
   [594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@i915_pm_rps@thresholds.html
   [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@i915_pm_rps@thresholds.html

  * igt@i915_pm_sseu@full-enable:
    - shard-dg2:          [SKIP][596] ([i915#4387]) -> [SKIP][597] ([i915#15689] / [i915#2575])
   [596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-7/igt@i915_pm_sseu@full-enable.html
   [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@i915_pm_sseu@full-enable.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - shard-dg2:          [SKIP][598] ([i915#15689]) -> [SKIP][599] ([i915#4212])
   [598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
   [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg2:          [SKIP][600] ([i915#4215] / [i915#5190]) -> [SKIP][601] ([i915#15689] / [i915#5190])
   [600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-dg2:          [SKIP][602] ([i915#1769] / [i915#3555]) -> [SKIP][603] ([i915#15689]) +1 other test skip
   [602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-dg2:          [SKIP][604] ([i915#15689]) -> [FAIL][605] ([i915#5956])
   [604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
    - shard-rkl:          [SKIP][606] ([i915#14544] / [i915#5286]) -> [SKIP][607] ([i915#5286]) +2 other tests skip
   [606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
   [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2:          [SKIP][608] -> [SKIP][609] ([i915#15689]) +5 other tests skip
   [608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-rkl:          [SKIP][610] ([i915#5286]) -> [SKIP][611] ([i915#14544] / [i915#5286])
   [610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-rkl:          [SKIP][612] ([i915#14544] / [i915#3638]) -> [SKIP][613] ([i915#3638])
   [612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
   [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg1:          [SKIP][614] ([i915#3828] / [i915#4423]) -> [SKIP][615] ([i915#3828])
   [614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-12/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
   [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
    - shard-dg2:          [SKIP][616] ([i915#15689]) -> [SKIP][617] ([i915#3828])
   [616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
   [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-0:
    - shard-dg2:          [SKIP][618] ([i915#15689] / [i915#5190]) -> [SKIP][619] ([i915#4538] / [i915#5190]) +8 other tests skip
   [618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
   [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-dg2:          [SKIP][620] ([i915#4538] / [i915#5190]) -> [SKIP][621] ([i915#15689] / [i915#5190]) +10 other tests skip
   [620]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
   [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2:          [SKIP][622] ([i915#15689] / [i915#5190]) -> [SKIP][623] ([i915#5190]) +2 other tests skip
   [622]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb.html
   [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-3/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
    - shard-dg2:          [SKIP][624] ([i915#10307] / [i915#6095]) -> [SKIP][625] ([i915#15689]) +11 other tests skip
   [624]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-7/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
   [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][626] ([i915#6095]) -> [SKIP][627] ([i915#14544] / [i915#6095]) +1 other test skip
   [626]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
   [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][628] ([i915#14098] / [i915#6095]) -> [SKIP][629] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
   [628]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
   [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-dg2:          [SKIP][630] ([i915#15689]) -> [SKIP][631] ([i915#12313])
   [630]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
   [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-glk:          [INCOMPLETE][632] ([i915#15582]) -> [INCOMPLETE][633] ([i915#14694] / [i915#15582])
   [632]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
   [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
    - shard-glk:          [INCOMPLETE][634] ([i915#15582]) -> [INCOMPLETE][635] ([i915#14694])
   [634]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
   [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2:          [SKIP][636] ([i915#15689]) -> [SKIP][637] ([i915#6095]) +3 other tests skip
   [636]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
    - shard-rkl:          [SKIP][638] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][639] ([i915#14098] / [i915#6095])
   [638]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2:          [SKIP][640] ([i915#6095]) -> [SKIP][641] ([i915#15689]) +1 other test skip
   [640]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2:          [SKIP][642] ([i915#12313]) -> [SKIP][643] ([i915#15689])
   [642]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
    - shard-dg2:          [SKIP][644] ([i915#15689]) -> [SKIP][645] ([i915#10307] / [i915#6095]) +12 other tests skip
   [644]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
   [645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-dg2:          [SKIP][646] ([i915#15689]) -> [SKIP][647] +9 other tests skip
   [646]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_chamelium_color@ctm-negative.html
   [647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_color@degamma:
    - shard-rkl:          [SKIP][648] ([i915#14544]) -> [SKIP][649] +4 other tests skip
   [648]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_chamelium_color@degamma.html
   [649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-7/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@dp-mode-timings:
    - shard-dg1:          [SKIP][650] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][651] ([i915#11151] / [i915#7828]) +1 other test skip
   [650]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-18/igt@kms_chamelium_edid@dp-mode-timings.html
   [651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@kms_chamelium_edid@dp-mode-timings.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-dg2:          [SKIP][652] ([i915#11151] / [i915#7828]) -> [SKIP][653] ([i915#15689]) +7 other tests skip
   [652]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_chamelium_frames@dp-frame-dump.html
   [653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-dg2:          [SKIP][654] ([i915#15689]) -> [SKIP][655] ([i915#11151] / [i915#7828]) +10 other tests skip
   [654]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
   [655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
    - shard-rkl:          [SKIP][656] ([i915#11151] / [i915#7828]) -> [SKIP][657] ([i915#11151] / [i915#14544] / [i915#7828])
   [656]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
   [657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
    - shard-rkl:          [SKIP][658] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][659] ([i915#11151] / [i915#7828]) +1 other test skip
   [658]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
   [659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic:
    - shard-dg2:          [SKIP][660] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][661] ([i915#15689])
   [660]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-3/igt@kms_content_protection@atomic.html
   [661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2:          [SKIP][662] ([i915#15689]) -> [SKIP][663] ([i915#15330] / [i915#3299])
   [662]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html
   [663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-1-suspend-resume:
    - shard-rkl:          [SKIP][664] ([i915#14544] / [i915#15330]) -> [SKIP][665] ([i915#15330])
   [664]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
   [665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-dg2:          [SKIP][666] ([i915#15689]) -> [SKIP][667] ([i915#6944])
   [666]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_content_protection@lic-type-0-hdcp14.html
   [667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_content_protection@suspend-resume:
    - shard-dg2:          [SKIP][668] ([i915#6944]) -> [SKIP][669] ([i915#15689])
   [668]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_content_protection@suspend-resume.html
   [669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_content_protection@suspend-resume.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          [SKIP][670] ([i915#15689]) -> [SKIP][671] ([i915#6944] / [i915#7118] / [i915#9424])
   [670]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_content_protection@type1.html
   [671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@kms_content_protection@type1.html
    - shard-dg1:          [SKIP][672] ([i915#4423] / [i915#6944] / [i915#7116] / [i915#9424]) -> [SKIP][673] ([i915#6944] / [i915#7116] / [i915#9424])
   [672]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-12/igt@kms_content_protection@type1.html
   [673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-13/igt@kms_content_protection@type1.html

  * igt@kms_content_protection@uevent:
    - shard-rkl:          [SKIP][674] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][675] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
   [674]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-3/igt@kms_content_protection@uevent.html
   [675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          [SKIP][676] ([i915#13049]) -> [SKIP][677] ([i915#15689]) +2 other tests skip
   [676]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html
   [677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-dg2:          [SKIP][678] ([i915#15689]) -> [SKIP][679] ([i915#13049]) +1 other test skip
   [678]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
   [679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-rkl:          [SKIP][680] ([i915#13049] / [i915#14544]) -> [SKIP][681] ([i915#13049])
   [680]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          [SKIP][682] ([i915#3555]) -> [SKIP][683] ([i915#15689]) +5 other tests skip
   [682]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
   [683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-rkl:          [SKIP][684] -> [SKIP][685] ([i915#14544]) +4 other tests skip
   [684]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-dg2:          [SKIP][686] ([i915#13046] / [i915#5354]) -> [SKIP][687] ([i915#15689]) +4 other tests skip
   [686]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

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

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-dg2:          [SKIP][690] ([i915#15689]) -> [SKIP][691] ([i915#13046] / [i915#5354]) +3 other tests skip
   [690]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
   [691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-8bpc:
    - shard-dg2:          [SKIP][692] ([i915#15689]) -> [SKIP][693] ([i915#3555]) +4 other tests skip
   [692]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
   [693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html

  * igt@kms_draw_crc@draw-method-mmap-wc:
    - shard-dg2:          [SKIP][694] ([i915#15689]) -> [SKIP][695] ([i915#8812])
   [694]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html
   [695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-dg2:          [SKIP][696] ([i915#15689]) -> [SKIP][697] ([i915#3840])
   [696]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
   [697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2:          [SKIP][698] ([i915#15689]) -> [SKIP][699] ([i915#3469])
   [698]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_fbcon_fbt@psr.html
   [699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_fbcon_fbt@psr.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2:          [SKIP][700] ([i915#3469]) -> [SKIP][701] ([i915#15689])
   [700]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html
   [701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2:          [SKIP][702] ([i915#658]) -> [SKIP][703] ([i915#15689]) +1 other test skip
   [702]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@kms_feature_discovery@psr1.html
   [703]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_feature_discovery@psr1.html

  * igt@kms_fence_pin_leak:
    - shard-dg2:          [SKIP][704] ([i915#15689] / [i915#2575]) -> [SKIP][705] ([i915#4881])
   [704]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_fence_pin_leak.html
   [705]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@kms_fence_pin_leak.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-rkl:          [SKIP][706] ([i915#9934]) -> [SKIP][707] ([i915#14544] / [i915#9934])
   [706]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-8/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [707]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-fences:
    - shard-dg2:          [SKIP][708] ([i915#8381]) -> [SKIP][709] ([i915#15689]) +1 other test skip
   [708]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences.html
   [709]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html

  * igt@kms_flip@2x-flip-vs-panning:
    - shard-dg1:          [SKIP][710] ([i915#9934]) -> [SKIP][711] ([i915#4423] / [i915#9934])
   [710]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-18/igt@kms_flip@2x-flip-vs-panning.html
   [711]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-16/igt@kms_flip@2x-flip-vs-panning.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          [SKIP][712] ([i915#9934]) -> [SKIP][713] ([i915#15689]) +9 other tests skip
   [712]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
   [713]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-dg2:          [SKIP][714] ([i915#15689]) -> [SKIP][715] ([i915#9934]) +4 other tests skip
   [714]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
   [715]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-rkl:          [SKIP][716] ([i915#14544] / [i915#9934]) -> [SKIP][717] ([i915#9934]) +2 other tests skip
   [716]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html
   [717]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-glk:          [INCOMPLETE][718] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][719] ([i915#12745] / [i915#4839] / [i915#6113])
   [718]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-glk6/igt@kms_flip@flip-vs-suspend.html
   [719]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk2/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
    - shard-glk:          [INCOMPLETE][720] ([i915#12745]) -> [INCOMPLETE][721] ([i915#12745] / [i915#6113])
   [720]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
   [721]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-glk2/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-rkl:          [SKIP][722] ([i915#14544] / [i915#15643]) -> [SKIP][723] ([i915#15643])
   [722]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
   [723]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg2:          [SKIP][724] ([i915#15643] / [i915#5190]) -> [SKIP][725] ([i915#15689] / [i915#5190]) +1 other test skip
   [724]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [725]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-rkl:          [SKIP][726] ([i915#15643]) -> [SKIP][727] ([i915#14544] / [i915#15643]) +2 other tests skip
   [726]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
   [727]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-dg2:          [SKIP][728] ([i915#15643]) -> [SKIP][729] ([i915#15689]) +1 other test skip
   [728]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
   [729]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-dg2:          [SKIP][730] ([i915#15689]) -> [SKIP][731] ([i915#15643]) +2 other tests skip
   [730]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
   [731]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-dg2:          [SKIP][732] ([i915#15689] / [i915#5190]) -> [SKIP][733] ([i915#15643] / [i915#5190]) +3 other tests skip
   [732]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
   [733]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          [SKIP][734] ([i915#15689]) -> [SKIP][735] ([i915#15104]) +2 other tests skip
   [734]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
   [735]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-dg2:          [SKIP][736] ([i915#8708]) -> [SKIP][737] ([i915#15689]) +16 other tests skip
   [736]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
   [737]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-dg2:          [SKIP][738] ([i915#15689]) -> [SKIP][739] ([i915#5354]) +38 other tests skip
   [738]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [739]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          [SKIP][740] ([i915#15689]) -> [SKIP][741] ([i915#8708]) +24 other tests skip
   [740]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
   [741]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
    - shard-rkl:          [SKIP][742] ([i915#1825]) -> [SKIP][743] ([i915#14544] / [i915#1825]) +7 other tests skip
   [742]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
   [743]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-dg2:          [SKIP][744] ([i915#15689]) -> [SKIP][745] ([i915#15102])
   [744]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
   [745]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][746] ([i915#15102]) -> [SKIP][747] ([i915#15689]) +2 other tests skip
   [746]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
   [747]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          [SKIP][748] ([i915#15104]) -> [SKIP][749] ([i915#15689]) +1 other test skip
   [748]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
   [749]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-dg1:          [SKIP][750] ([i915#4423] / [i915#8708]) -> [SKIP][751] ([i915#8708])
   [750]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
   [751]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][752] ([i915#14544] / [i915#1825]) -> [SKIP][753] ([i915#1825]) +16 other tests skip
   [752]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
   [753]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          [SKIP][754] ([i915#15689]) -> [SKIP][755] ([i915#10055]) +1 other test skip
   [754]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [755]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][756] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][757] ([i915#15102] / [i915#3458])
   [756]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
   [757]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
    - shard-dg1:          [SKIP][758] ([i915#15102] / [i915#3458] / [i915#4423]) -> [SKIP][759] ([i915#15102] / [i915#3458])
   [758]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
   [759]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][760] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][761] ([i915#15102] / [i915#3023]) +4 other tests skip
   [760]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
   [761]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
    - shard-dg2:          [SKIP][762] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][763] ([i915#15689])
   [762]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
   [763]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-dg2:          [SKIP][764] ([i915#5354]) -> [SKIP][765] ([i915#15689]) +30 other tests skip
   [764]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
   [765]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
    - shard-dg2:          [SKIP][766] ([i915#15102] / [i915#3458]) -> [SKIP][767] ([i915#15689]) +16 other tests skip
   [766]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
   [767]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
    - shard-dg2:          [SKIP][768] ([i915#15689]) -> [SKIP][769] ([i915#15102] / [i915#3458]) +13 other tests skip
   [768]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
   [769]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-rkl:          [SKIP][770] ([i915#15102] / [i915#3023]) -> [SKIP][771] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
   [770]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-suspend.html
   [771]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-dg2:          [SKIP][772] ([i915#3555] / [i915#8228]) -> [SKIP][773] ([i915#15689]) +1 other test skip
   [772]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms.html
   [773]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-rkl:          [SKIP][774] ([i915#13331] / [i915#14544]) -> [SKIP][775] ([i915#12713])
   [774]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
   [775]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html
    - shard-tglu:         [SKIP][776] ([i915#1187] / [i915#12713]) -> [SKIP][777] ([i915#12713])
   [776]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
   [777]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-tglu-10/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2:          [SKIP][778] ([i915#15689]) -> [SKIP][779] ([i915#3555] / [i915#8228]) +1 other test skip
   [778]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
   [779]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2:          [SKIP][780] ([i915#15460]) -> [SKIP][781] ([i915#15689])
   [780]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-8/igt@kms_joiner@basic-big-joiner.html
   [781]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-dg2:          [SKIP][782] ([i915#15689]) -> [SKIP][783] ([i915#13688])
   [782]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_joiner@basic-max-non-joiner.html
   [783]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-dg2:          [SKIP][784] ([i915#15689]) -> [SKIP][785] ([i915#15458])
   [784]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [785]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-dg2:          [SKIP][786] ([i915#15689]) -> [SKIP][787] ([i915#6301])
   [786]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_panel_fitting@legacy.html
   [787]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2:          [SKIP][788] ([i915#15689]) -> [SKIP][789] ([i915#13705])
   [788]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
   [789]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
    - shard-dg2:          [SKIP][790] ([i915#15689]) -> [SKIP][791] ([i915#15709]) +3 other tests skip
   [790]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
   [791]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html

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

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
    - shard-dg2:          [SKIP][794] ([i915#15709]) -> [SKIP][795] ([i915#15689]) +5 other tests skip
   [794]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
   [795]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
    - shard-rkl:          [SKIP][796] ([i915#15709]) -> [SKIP][797] ([i915#14544] / [i915#15709]) +1 other test skip
   [796]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
   [797]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-dg2:          [SKIP][798] ([i915#13958]) -> [SKIP][799] ([i915#15689])
   [798]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-4.html
   [799]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_plane_multiple@2x-tiling-4.html
    - shard-rkl:          [SKIP][800] ([i915#13958]) -> [SKIP][801] ([i915#13958] / [i915#14544])
   [800]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-4.html
   [801]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-dg2:          [SKIP][802] ([i915#15689]) -> [SKIP][803] ([i915#13958])
   [802]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_plane_multiple@2x-tiling-none.html
   [803]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-dg2:          [SKIP][804] ([i915#15689]) -> [SKIP][805] ([i915#14259])
   [804]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_plane_multiple@tiling-yf.html
   [805]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-dg2:          [SKIP][806] ([i915#15689] / [i915#9423]) -> [SKIP][807] ([i915#13046] / [i915#5354] / [i915#9423])
   [806]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [807]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2:          [SKIP][808] ([i915#9685]) -> [SKIP][809] ([i915#15689]) +1 other test skip
   [808]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [809]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2:          [SKIP][810] ([i915#15751]) -> [SKIP][811] ([i915#15689])
   [810]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@kms_pm_dc@dc6-dpms.html
   [811]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@fences-dpms:
    - shard-dg2:          [SKIP][812] ([i915#15689]) -> [SKIP][813] ([i915#4077]) +1 other test skip
   [812]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_pm_rpm@fences-dpms.html
   [813]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_pm_rpm@fences-dpms.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2:          [SKIP][814] ([i915#15073]) -> [SKIP][815] ([i915#15689])
   [814]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
   [815]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@pm-tiling:
    - shard-dg2:          [SKIP][816] ([i915#4077]) -> [SKIP][817] ([i915#15693])
   [816]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-7/igt@kms_pm_rpm@pm-tiling.html
   [817]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_pm_rpm@pm-tiling.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-dg2:          [SKIP][818] ([i915#15689]) -> [SKIP][819] ([i915#6524] / [i915#6805]) +1 other test skip
   [818]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
   [819]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_prime@basic-crc-vgem:
    - shard-dg2:          [SKIP][820] -> [SKIP][821] ([i915#6524] / [i915#6805])
   [820]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_prime@basic-crc-vgem.html
   [821]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2:          [SKIP][822] ([i915#15689]) -> [SKIP][823] ([i915#11520]) +9 other tests skip
   [822]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
   [823]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-rkl:          [SKIP][824] ([i915#11520] / [i915#14544]) -> [SKIP][825] ([i915#11520]) +4 other tests skip
   [824]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
   [825]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-dg1:          [SKIP][826] ([i915#11520] / [i915#4423]) -> [SKIP][827] ([i915#11520])
   [826]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-12/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
   [827]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-12/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
    - shard-rkl:          [SKIP][828] ([i915#11520]) -> [SKIP][829] ([i915#11520] / [i915#14544])
   [828]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
   [829]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
    - shard-dg2:          [SKIP][830] ([i915#11520]) -> [SKIP][831] ([i915#15689]) +8 other tests skip
   [830]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
   [831]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr@fbc-pr-suspend:
    - shard-dg2:          [SKIP][832] ([i915#1072] / [i915#9732]) -> [SKIP][833] ([i915#15689]) +16 other tests skip
   [832]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-7/igt@kms_psr@fbc-pr-suspend.html
   [833]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_psr@fbc-pr-suspend.html

  * igt@kms_psr@fbc-psr-cursor-blt:
    - shard-rkl:          [SKIP][834] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][835] ([i915#1072] / [i915#9732]) +6 other tests skip
   [834]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-blt.html
   [835]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@kms_psr@fbc-psr-cursor-blt.html

  * igt@kms_psr@psr-sprite-mmap-gtt:
    - shard-rkl:          [SKIP][836] ([i915#1072] / [i915#9732]) -> [SKIP][837] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
   [836]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@kms_psr@psr-sprite-mmap-gtt.html
   [837]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_psr@psr-sprite-mmap-gtt.html

  * igt@kms_psr@psr2-cursor-blt:
    - shard-dg2:          [SKIP][838] ([i915#15689]) -> [SKIP][839] ([i915#1072] / [i915#9732]) +20 other tests skip
   [838]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_psr@psr2-cursor-blt.html
   [839]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_psr@psr2-cursor-blt.html

  * igt@kms_psr@psr2-cursor-mmap-gtt:
    - shard-dg1:          [SKIP][840] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][841] ([i915#1072] / [i915#9732])
   [840]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg1-12/igt@kms_psr@psr2-cursor-mmap-gtt.html
   [841]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg1-14/igt@kms_psr@psr2-cursor-mmap-gtt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-dg2:          [SKIP][842] ([i915#15689]) -> [SKIP][843] ([i915#9685])
   [842]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [843]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-rkl:          [SKIP][844] ([i915#9685]) -> [SKIP][845] ([i915#14544] / [i915#9685])
   [844]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [845]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-dg2:          [SKIP][846] ([i915#15689]) -> [SKIP][847] ([i915#12755]) +1 other test skip
   [846]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_rotation_crc@bad-tiling.html
   [847]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@exhaust-fences:
    - shard-dg2:          [SKIP][848] ([i915#15689]) -> [SKIP][849] ([i915#4235])
   [848]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_rotation_crc@exhaust-fences.html
   [849]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_rotation_crc@exhaust-fences.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-dg2:          [ABORT][850] ([i915#15759]) -> [SKIP][851] ([i915#15689])
   [850]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
   [851]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-dg2:          [SKIP][852] ([i915#12755]) -> [SKIP][853] ([i915#15689])
   [852]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-90.html
   [853]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2:          [SKIP][854] ([i915#5190]) -> [SKIP][855] ([i915#15689] / [i915#5190])
   [854]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [855]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2:          [SKIP][856] ([i915#12755] / [i915#5190]) -> [SKIP][857] ([i915#15689] / [i915#5190]) +1 other test skip
   [856]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
   [857]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-rkl:          [SKIP][858] ([i915#14544] / [i915#3555]) -> [SKIP][859] ([i915#3555])
   [858]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-center.html
   [859]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-8/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-rkl:          [SKIP][860] ([i915#14544] / [i915#8623]) -> [SKIP][861] ([i915#8623])
   [860]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
   [861]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-rkl:          [SKIP][862] ([i915#9906]) -> [SKIP][863] ([i915#14544] / [i915#9906])
   [862]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-2/igt@kms_vrr@flip-basic-fastset.html
   [863]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@flipline:
    - shard-dg2:          [SKIP][864] ([i915#15689]) -> [SKIP][865] ([i915#15243] / [i915#3555]) +1 other test skip
   [864]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_vrr@flipline.html
   [865]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@kms_vrr@flipline.html

  * igt@kms_vrr@max-min:
    - shard-dg2:          [SKIP][866] ([i915#9906]) -> [SKIP][867] ([i915#15689]) +1 other test skip
   [866]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-6/igt@kms_vrr@max-min.html
   [867]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-11/igt@kms_vrr@max-min.html

  * igt@kms_vrr@negative-basic:
    - shard-dg2:          [SKIP][868] ([i915#15689]) -> [SKIP][869] ([i915#3555] / [i915#9906])
   [868]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_vrr@negative-basic.html
   [869]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-dg2:          [SKIP][870] ([i915#15689]) -> [SKIP][871] ([i915#9906])
   [870]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-virtual.html
   [871]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - shard-dg2:          [SKIP][872] ([i915#15689]) -> [SKIP][873] ([i915#2436])
   [872]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html
   [873]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-4/igt@perf@gen8-unprivileged-single-ctx-counters.html

  * igt@perf@non-zero-reason:
    - shard-dg2:          [SKIP][874] ([i915#15689]) -> [FAIL][875] ([i915#9100])
   [874]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@perf@non-zero-reason.html
   [875]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@perf@non-zero-reason.html

  * igt@prime_vgem@coherency-gtt:
    - shard-dg2:          [SKIP][876] ([i915#15689] / [i915#2575]) -> [SKIP][877] ([i915#3708] / [i915#4077])
   [876]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@prime_vgem@coherency-gtt.html
   [877]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-5/igt@prime_vgem@coherency-gtt.html
    - shard-rkl:          [SKIP][878] ([i915#14544] / [i915#3708]) -> [SKIP][879] ([i915#3708])
   [878]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
   [879]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-rkl-2/igt@prime_vgem@coherency-gtt.html

  * igt@prime_vgem@fence-write-hang:
    - shard-dg2:          [SKIP][880] ([i915#15689] / [i915#2575]) -> [SKIP][881] ([i915#3708])
   [880]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@prime_vgem@fence-write-hang.html
   [881]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-1/igt@prime_vgem@fence-write-hang.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2:          [SKIP][882] ([i915#15689]) -> [SKIP][883] ([i915#9917]) +1 other test skip
   [882]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@sriov_basic@enable-vfs-autoprobe-off.html
   [883]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-7/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-dg2:          [SKIP][884] ([i915#15689] / [i915#2575] / [i915#4818]) -> [SKIP][885] ([i915#4818])
   [884]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18057/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html
   [885]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14626/shard-dg2-8/igt@tools_test@sysfs_l3_parity.html

  
  [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
  [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [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#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
  [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
  [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
  [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
  [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
  [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
  [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#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
  [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
  [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
  [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
  [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
  [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
  [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [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#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
  [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#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
  [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#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
  [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
  [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15607]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15607
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
  [i915#15689]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15689
  [i915#15693]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15693
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734
  [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
  [i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751
  [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
  [i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
  [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [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#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
  [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
  [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
  [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#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
  [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
  [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#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
  [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [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#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
  [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
  [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [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#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
  [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
  [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
  [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#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [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_8774 -> IGTPW_14626
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_18057: e42f7566b0d3eba44a6aeeae2c810025c66c44ed @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14626: 8ccfc0864f4ce8f3f62addc161041289a3776350 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8774: 8892452285d691f612ecb3b2a6fefc50983af15f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [PATCH i-g-t 1/1] scripts/bash-autocomplete: Create autocompletion for tests
  2026-02-26 13:39 ` [PATCH i-g-t 1/1] scripts/bash-autocomplete: Create autocompletion for tests Jan Sokolowski
@ 2026-03-02  6:14   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2026-03-02  6:14 UTC (permalink / raw)
  To: Jan Sokolowski
  Cc: igt-dev, Kamil Konieczny, Katarzyna Piecielska,
	Juha-Pekka Heikkila, Ashutosh Dixit

On Thu, Feb 26, 2026 at 02:39:16PM +0100, Jan Sokolowski wrote:
> Add installation and uninstallation scripts for bash autocompletion
> for tests.
> 
> To install: run 'make install-completions' after generating Makefile via
> meson.sh.

You may use meson.sh script directly with:

./meson.sh install-completions
./meson.sh uninstall-completions

> 
> To uninstall: run 'make uninstall-completions'.
> 
> By default autocompletions are installed to
> ~/.local/share/bash-completion/completions and use
> build/tests/test_list.txt directory as list of what completions
> to install.
> 
> In order to install them as root to
> /usr/share/bash-completion/completions, run
> ./install_completions.sh --install from scripts/bash_autocompletion
> directory. It uses /usr/local/libexec/igt-gpu-tools/test_list.txt as
> list of what completions to install.
> 
> Please note that these completions might be unavailable due to
> .bashrc configuration, for example Ubuntu root does not
> source bash_completion because it is commented out.
> 
> Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Katarzyna Piecielska <katarzyna.piecielska@intel.com>
> Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
> ---
>  meson.sh                                      |  6 ++
>  .../install_completions.sh                    | 88 +++++++++++++++++++
>  2 files changed, 94 insertions(+)
>  create mode 100755 scripts/bash_autocompletion/install_completions.sh
> 
> diff --git a/meson.sh b/meson.sh
> index 1563a85b1..e5fbdcc0c 100755
> --- a/meson.sh
> +++ b/meson.sh
> @@ -60,6 +60,12 @@ install: build/build.ninja
>  uninstall: build/build.ninja
>  	\$(Q)ninja -C build uninstall \$(quiet_build)
>  
> +install-completions: all
> +	./scripts/bash_autocompletion/install_completions.sh --local-install
> +
> +uninstall-completions: all
> +	./scripts/bash_autocompletion/install_completions.sh --local-uninstall
> +
>  docs:
>  	\$(Q)ninja -C build igt-gpu-tools-doc \$(quiet_build)
>  
> diff --git a/scripts/bash_autocompletion/install_completions.sh b/scripts/bash_autocompletion/install_completions.sh
> new file mode 100755
> index 000000000..d3db63af0
> --- /dev/null
> +++ b/scripts/bash_autocompletion/install_completions.sh
> @@ -0,0 +1,88 @@
> +#!/bin/bash
> +# SPDX-License-Identifier: MIT
> +# Copyright © 2025 Intel Corporation
> +# Author: Jan Sokolowski <jan.sokolowski@intel.com>
> +
> +usage() {
> +echo "install_completions.sh - creates bash autocompletion scripts for installed igt gpu tools tests."
> +echo "Usage: "
> +echo "--install : installs completions for installed /usr/local/libexec/igt_gpu_tools tests to ~/.local/share/bash-completion/completions"
> +echo "--local-install : uses ../../build/tests as list of completions to install to ~/.local/share/bash-completion/completions"
> +echo "--uninstall : uninstalls completions installed to /usrl/local/libexec/igt_gpu_tools from ~/.local/share/bash-completion/completions"
> +echo "--local-uninstall : uses ../../build/tests as list of completions to uninstall from ~/.local/share/bash-completion-completions"
> +}
> +
> +__generate_completion() {
> +
> +cat <<EOF > $1
> +_$1()
> +{
> +	local cur prev words cword
> +	_init_completion || return
> +	case \$prev in
> +		--run-subtest | --dynamic-subtest)
> +			local IFS=$'\n\b'
> +			LIST_OF_TESTS="\`\$1 --list-subtest\`"
> +			COMPREPLY=(\$(compgen -W "\$LIST_OF_TESTS" -- "\$cur"))
> +			return
> +			;;
> +		--device)
> +			COMPREPLY=(\$(compgen -o nospace -W "sys: pci: sriov: drm:" -- "\$cur"))
> +			;;
> +	esac
> +
> +	if [[ \$cur == * ]]; then
> +		COMPREPLY=(\$(compgen -W '\$(_parse_help "\$1")' -- "\$cur"))
> +	fi
> +
> +} &&
> +
> +complete -F _$1 $1
> +EOF
> +
> +}
> +
> +__install_completions() {
> +	mkdir -p ~/.local/share/bash-completion/completions
> +	cd ~/.local/share/bash-completion/completions
> +
> +	echo "Installing bash autocompletion scripts to ~/.local/share/bash_completion/completions"
> +	for ENTRY in `sed -n 2p $1/test-list-full.txt`;
> +	do
> +		TEST=`echo $ENTRY | rev | cut -f1 -d'/' | rev`
> +		__generate_completion $TEST
> +	done
> +	cd - > /dev/null
> +}
> +
> +__uninstall_completions() {
> +	cd ~/.local/share/bash-completion/completions
> +	echo "Unnstalling bash autocompletion scripts from ~/.local/share/bash_completion/completions"
> +	for ENTRY in `sed -n 2p $1/test-list-full.txt`;
> +	do
> +		TEST=`echo $ENTRY | rev | cut -f1 -d'/' | rev`
> +		rm ~/.local/share/bash-completion/completions/$TEST

When I look at above line, I think best would be add -f option to rm, as
we don't have guarantee test-list-full.txt will contain same entries
between compilations. And removing whole dir is not an option because we
don't want to remove user completions.

I wondered to copy test list to completion dir to process it during
uninstall but this also might be unreliable if in the meantime we would
build and install igts many times.

With my nits address (meson.sh note in commit message) and -f rm option:

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

--
Zbigniew

> +	done
> +	cd - > /dev/null
> +}
> +
> +case "$1" in
> +	"--install")
> +		__install_completions "/usr/local/libexec/igt-gpu-tools"
> +		;;
> +	"--local-install")
> +		__install_completions "$PWD/build/tests"
> +		;;
> +	"--uninstall")
> +		__uninstall_completions "/usr/local/libexec/igt-gpu-tools"
> +		;;
> +	"--local-uninstall")
> +		__uninstall_completions "$PWD/build/tests"
> +		;;
> +	"--help")
> +		usage
> +		;;
> +	*)
> +		__install_completions "/usr/local/libexec/igt-gpu-tools"
> +		;;
> +esac
> -- 
> 2.43.0
> 

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

end of thread, other threads:[~2026-03-02  6:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-26 13:39 [PATCH i-g-t 0/1] Bash autocompletion feature for igt Jan Sokolowski
2026-02-26 13:39 ` [PATCH i-g-t 1/1] scripts/bash-autocomplete: Create autocompletion for tests Jan Sokolowski
2026-03-02  6:14   ` Zbigniew Kempczyński
2026-02-26 23:52 ` ✓ i915.CI.BAT: success for Bash autocompletion feature for igt Patchwork
2026-02-27  0:13 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-27  6:14 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-27  7:23 ` ✗ i915.CI.Full: " Patchwork

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