Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t][V3] tests/kms_hdr: Add visual HDR verification subtests
@ 2026-05-07 21:13 Alex Hung
  2026-05-07 22:52 ` ✓ i915.CI.BAT: success for " Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Alex Hung @ 2026-05-07 21:13 UTC (permalink / raw)
  To: igt-dev
  Cc: alex.hung, Mark.Broadworth, vitaly.prosyak, swati2.sharma,
	kamil.konieczny, jani.nikula, Wayne Lin

From: Wayne Lin <wayne.lin@amd.com>

The new subtests display an HDR test pattern under a given metadata
mode and pause for user confirmation, enabling manual inspection of
HDR output quality on a connected HDR panel.

New subtests:
kms_hdr --run-subtest static-swap-smpte2084 --interactive-debug=smpte2084
kms_hdr --run-subtest static-swap-traditional-sdr --interactive-debug=traditional-sdr

Co-developed-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Wayne Lin <wayne.lin@amd.com>
Assisted-by: Copilot:Claude-Sonnet-4.6
---
 tests/kms_hdr.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 89 insertions(+)

diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
index 876c1c03a..c13e985e1 100644
--- a/tests/kms_hdr.c
+++ b/tests/kms_hdr.c
@@ -67,6 +67,14 @@
  *
  * @swap:                    swapping static HDR metadata
  * @toggle:                  entering and exiting HDR mode
+ *
+ * SUBTEST: static-swap-smpte2084
+ * Description: Show a visual HDR pattern with SMPTE ST 2084 metadata and
+ * require user confirmation.
+ *
+ * SUBTEST: static-swap-traditional-sdr
+ * Description: Show a visual HDR pattern with traditional SDR gamma metadata
+ * and require user confirmation.
  */

 IGT_TEST_DESCRIPTION("Test HDR metadata interfaces and bpc switch");
@@ -647,6 +655,79 @@ static void test_hdr(data_t *data, uint32_t flags)
 	}
 }

+static void test_hdr_visual(data_t *data,
+			     void (*fill_metadata)(struct hdr_output_metadata *),
+			     const char *mode_name)
+{
+	igt_display_t *display = &data->display;
+	igt_output_t *output;
+	igt_fb_t afb;
+	int afb_id;
+	bool found = false;
+	struct hdr_output_metadata hdr;
+
+	igt_display_reset(display);
+
+	for_each_connected_output(display, output) {
+		igt_crtc_t *crtc;
+
+		if (!has_max_bpc(output) || !igt_output_supports_hdr(output)) {
+			igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n",
+				 igt_output_name(output));
+			continue;
+		}
+
+		if (!igt_is_panel_hdr(data->fd, output)) {
+			igt_info("Panel attached via %s connector is non-HDR\n", igt_output_name(output));
+			continue;
+		}
+
+		if (igt_get_output_max_bpc(output) < 10) {
+			igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output));
+			continue;
+		}
+
+		for_each_crtc(display, crtc) {
+			igt_output_set_crtc(output, crtc);
+			if (!igt_crtc_connector_valid(crtc, output))
+				continue;
+
+			prepare_test(data, output, crtc);
+
+			afb_id = igt_create_fb(data->fd, 512, 512,
+					       DRM_FORMAT_XRGB2101010,
+					       DRM_FORMAT_MOD_LINEAR, &afb);
+			igt_assert(afb_id);
+
+			draw_hdr_pattern(&afb);
+
+			igt_plane_set_fb(data->primary, &afb);
+			igt_plane_set_size(data->primary, data->w, data->h);
+			fill_metadata(&hdr);
+			igt_hdr_set_metadata(data->output, &hdr);
+			igt_output_set_prop_value(data->output, IGT_CONNECTOR_MAX_BPC, 10);
+			igt_display_commit_atomic(display,
+						  DRM_MODE_ATOMIC_ALLOW_MODESET,
+						  NULL);
+
+			igt_info("Displaying %s HDR pattern. Press a key to continue.\n", mode_name);
+			igt_debug_wait_for_keypress(mode_name);
+
+			igt_hdr_set_metadata(data->output, NULL);
+			igt_output_set_prop_value(data->output, IGT_CONNECTOR_MAX_BPC, 8);
+			igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+
+			test_fini(data);
+			igt_remove_fb(data->fd, &afb);
+
+			found = true;
+			break;
+		}
+	}
+
+	igt_require_f(found, "No HDR-capable connector found.\n");
+}
+
 int igt_main()
 {
 	data_t data = {};
@@ -698,6 +779,14 @@ int igt_main()
 	igt_subtest_with_dynamic("invalid-hdr")
 		test_hdr(&data, TEST_INVALID_HDR);

+	igt_describe("Show HDR pattern with SMPTE ST 2084 metadata and require user confirmation");
+	igt_subtest("static-swap-smpte2084")
+		test_hdr_visual(&data, igt_hdr_fill_st2084, "smpte2084");
+
+	igt_describe("Show HDR pattern with traditional SDR gamma metadata and require user confirmation");
+	igt_subtest("static-swap-traditional-sdr")
+		test_hdr_visual(&data, igt_hdr_fill_sdr, "traditional-sdr");
+
 	igt_fixture() {
 		igt_display_fini(&data.display);
 		drm_close_driver(data.fd);
--
2.43.0


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

* ✓ i915.CI.BAT: success for tests/kms_hdr: Add visual HDR verification subtests
  2026-05-07 21:13 [PATCH i-g-t][V3] tests/kms_hdr: Add visual HDR verification subtests Alex Hung
@ 2026-05-07 22:52 ` Patchwork
  2026-05-07 23:31 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-07 22:52 UTC (permalink / raw)
  To: Alex Hung; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_hdr: Add visual HDR verification subtests
URL   : https://patchwork.freedesktop.org/series/166166/
State : success

== Summary ==

CI Bug Log - changes from IGT_8899 -> IGTPW_15131
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Additional (2): bat-atsm-1 bat-adls-6 
  Missing    (2): bat-dg2-13 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@dmabuf@all-tests:
    - bat-atsm-1:         NOTRUN -> [SKIP][1] ([i915#15931])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@dmabuf@all-tests.html
    - bat-adls-6:         NOTRUN -> [SKIP][2] ([i915#15931])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-adls-6/igt@dmabuf@all-tests.html

  * igt@fbdev@info:
    - bat-atsm-1:         NOTRUN -> [SKIP][3] ([i915#1849] / [i915#2582])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@fbdev@info.html

  * igt@fbdev@read:
    - bat-atsm-1:         NOTRUN -> [SKIP][4] ([i915#2582]) +3 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@fbdev@read.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-adls-6:         NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_mmap@basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][6] ([i915#4083])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@gem_mmap@basic.html

  * igt@gem_render_tiled_blits@basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][7] ([i915#4079])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@gem_render_tiled_blits@basic.html

  * igt@gem_tiled_fence_blits@basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][8] ([i915#4077]) +4 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html

  * igt@gem_tiled_pread_basic@basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][9] ([i915#15657])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@gem_tiled_pread_basic@basic.html
    - bat-adls-6:         NOTRUN -> [SKIP][10] ([i915#15656])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-adls-6/igt@gem_tiled_pread_basic@basic.html

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

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

  * igt@i915_selftest@live@late_gt_pm:
    - fi-cfl-8109u:       [PASS][14] -> [DMESG-WARN][15] ([i915#13735]) +80 other tests dmesg-warn
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html

  * igt@i915_selftest@live@workarounds:
    - bat-atsm-1:         NOTRUN -> [DMESG-FAIL][16] ([i915#12061]) +1 other test dmesg-fail
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@i915_selftest@live@workarounds.html
    - bat-mtlp-9:         [PASS][17] -> [DMESG-FAIL][18] ([i915#12061]) +1 other test dmesg-fail
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-mtlp-9/igt@i915_selftest@live@workarounds.html

  * igt@intel_hwmon@hwmon-read:
    - bat-adls-6:         NOTRUN -> [SKIP][19] ([i915#7707]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-adls-6/igt@intel_hwmon@hwmon-read.html

  * igt@kms_addfb_basic@size-max:
    - bat-atsm-1:         NOTRUN -> [SKIP][20] ([i915#6077]) +37 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@kms_addfb_basic@size-max.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-adls-6:         NOTRUN -> [SKIP][21] ([i915#4103]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
    - bat-atsm-1:         NOTRUN -> [SKIP][22] ([i915#6078]) +22 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html

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

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-atsm-1:         NOTRUN -> [SKIP][24] ([i915#6093]) +4 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@kms_force_connector_basic@force-load-detect.html
    - bat-adls-6:         NOTRUN -> [SKIP][25]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@read-crc:
    - fi-cfl-8109u:       [PASS][26] -> [DMESG-WARN][27] ([i915#13735] / [i915#15673]) +49 other tests dmesg-warn
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence:
    - bat-atsm-1:         NOTRUN -> [SKIP][28] ([i915#1836]) +6 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-adls-6:         NOTRUN -> [SKIP][29] ([i915#5354])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_prop_blob@basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][30] ([i915#7357])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@kms_prop_blob@basic.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - bat-adls-6:         NOTRUN -> [SKIP][31] ([i915#1072] / [i915#9732]) +3 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-atsm-1:         NOTRUN -> [SKIP][32] ([i915#6094])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
    - bat-adls-6:         NOTRUN -> [SKIP][33] ([i915#3555])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-read:
    - bat-adls-6:         NOTRUN -> [SKIP][34] ([i915#3291]) +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-adls-6/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@basic-write:
    - bat-atsm-1:         NOTRUN -> [SKIP][35] +2 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-atsm-1/igt@prime_vgem@basic-write.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@sanitycheck:
    - fi-kbl-7567u:       [DMESG-WARN][36] ([i915#13735]) -> [PASS][37] +79 other tests pass
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-5:         [DMESG-FAIL][38] ([i915#12061]) -> [PASS][39] +1 other test pass
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-arls-5/igt@i915_selftest@live@workarounds.html
    - bat-dg2-14:         [DMESG-FAIL][40] ([i915#12061]) -> [PASS][41] +1 other test pass
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/bat-dg2-14/igt@i915_selftest@live@workarounds.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/bat-dg2-14/igt@i915_selftest@live@workarounds.html

  * igt@kms_busy@basic@flip:
    - fi-kbl-7567u:       [DMESG-WARN][42] ([i915#13735] / [i915#180]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/fi-kbl-7567u/igt@kms_busy@basic@flip.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/fi-kbl-7567u/igt@kms_busy@basic@flip.html

  * igt@kms_hdmi_inject@inject-audio:
    - fi-tgl-1115g4:      [FAIL][44] ([i915#14867]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_pm_rpm@basic-pci-d3-state:
    - fi-kbl-7567u:       [DMESG-WARN][46] ([i915#13735] / [i915#15673] / [i915#180]) -> [PASS][47] +52 other tests pass
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html

  
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
  [i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
  [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
  [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
  [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
  [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
  [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
  [i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
  [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
  [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
  [i915#6093]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6093
  [i915#6094]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6094
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#7357]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7357
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8899 -> IGTPW_15131
  * Linux: CI_DRM_18434 -> CI_DRM_18447

  CI-20190529: 20190529
  CI_DRM_18434: ad7a1f718b8cb631948c94f74dd48cd2867d99fb @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18447: 302d234f6c7a763bdf7ca8b1c40e02fa1efec5e4 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15131: 12d52f3bb14e763cb1d5ede418f1a57758a99e8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8899: 3e5747e536f148bf232049e49a00e2b683f91a83 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ Xe.CI.BAT: success for tests/kms_hdr: Add visual HDR verification subtests
  2026-05-07 21:13 [PATCH i-g-t][V3] tests/kms_hdr: Add visual HDR verification subtests Alex Hung
  2026-05-07 22:52 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-05-07 23:31 ` Patchwork
  2026-05-08 12:00 ` ✗ Xe.CI.FULL: failure " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-07 23:31 UTC (permalink / raw)
  To: Alex Hung; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_hdr: Add visual HDR verification subtests
URL   : https://patchwork.freedesktop.org/series/166166/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8899_BAT -> XEIGTPW_15131_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Additional (1): bat-ptl-vm 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html

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

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

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-ptl-vm:         NOTRUN -> [SKIP][5] ([Intel XE#5775])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@vram:
    - bat-ptl-vm:         NOTRUN -> [SKIP][6] ([Intel XE#5776])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/bat-ptl-vm/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-ptl-vm:         NOTRUN -> [SKIP][7] ([Intel XE#5777] / [Intel XE#7590])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - bat-ptl-vm:         NOTRUN -> [SKIP][8] ([Intel XE#5771] / [Intel XE#7590])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-ptl-vm:         NOTRUN -> [SKIP][9] ([Intel XE#5780] / [Intel XE#7590])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
    - bat-adlp-7:         [DMESG-WARN][10] ([Intel XE#7483]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html

  
  [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#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590


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

  * IGT: IGT_8899 -> IGTPW_15131
  * Linux: xe-5007-ad7a1f718b8cb631948c94f74dd48cd2867d99fb -> xe-5018-36eddf6e5c9411ad95c4939b092ed1ea77f13d61

  IGTPW_15131: 12d52f3bb14e763cb1d5ede418f1a57758a99e8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8899: 3e5747e536f148bf232049e49a00e2b683f91a83 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5007-ad7a1f718b8cb631948c94f74dd48cd2867d99fb: ad7a1f718b8cb631948c94f74dd48cd2867d99fb
  xe-5018-36eddf6e5c9411ad95c4939b092ed1ea77f13d61: 36eddf6e5c9411ad95c4939b092ed1ea77f13d61

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for tests/kms_hdr: Add visual HDR verification subtests
  2026-05-07 21:13 [PATCH i-g-t][V3] tests/kms_hdr: Add visual HDR verification subtests Alex Hung
  2026-05-07 22:52 ` ✓ i915.CI.BAT: success for " Patchwork
  2026-05-07 23:31 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-08 12:00 ` Patchwork
  2026-05-08 16:28 ` ✗ i915.CI.Full: " Patchwork
  2026-05-12  0:36 ` [PATCH i-g-t][V3] " Alex Hung
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-08 12:00 UTC (permalink / raw)
  To: Alex Hung; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_hdr: Add visual HDR verification subtests
URL   : https://patchwork.freedesktop.org/series/166166/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8899_FULL -> XEIGTPW_15131_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_hdr@static-swap-traditional-sdr} (NEW):
    - shard-lnl:          NOTRUN -> [SKIP][1] +1 other test skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-7/igt@kms_hdr@static-swap-traditional-sdr.html

  * igt@xe_configfs@ctx-restore-mid-bb-invalid:
    - shard-bmg:          NOTRUN -> [ABORT][2]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-9/igt@xe_configfs@ctx-restore-mid-bb-invalid.html

  * igt@xe_exec_system_allocator@twice-mmap-free-huge:
    - shard-bmg:          [PASS][3] -> [DMESG-FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-6/igt@xe_exec_system_allocator@twice-mmap-free-huge.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-5/igt@xe_exec_system_allocator@twice-mmap-free-huge.html

  
#### Warnings ####

  * igt@xe_ccs@vm-bind-decompress:
    - shard-lnl:          [SKIP][5] ([Intel XE#7644]) -> [ABORT][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-lnl-7/igt@xe_ccs@vm-bind-decompress.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-7/igt@xe_ccs@vm-bind-decompress.html

  
New tests
---------

  New tests have been introduced between XEIGT_8899_FULL and XEIGTPW_15131_FULL:

### New IGT tests (2) ###

  * igt@kms_hdr@static-swap-smpte2084:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.48] s

  * igt@kms_hdr@static-swap-traditional-sdr:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#7059] / [Intel XE#7085])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#7059] / [Intel XE#7085])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#1407]) +2 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

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

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#1467] / [Intel XE#7367])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb.html

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

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

  * igt@kms_bw@linear-tiling-2-displays-target-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#367]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#2887]) +4 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2887]) +7 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2652]) +7 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#373]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-8/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2252]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-10/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#6969]) +10 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#6969] / [Intel XE#7006])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html

  * igt@kms_content_protection@lic-type-0:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#7642])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-4/igt@kms_content_protection@lic-type-0.html

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

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#2321] / [Intel XE#7355])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#2320]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@kms_cursor_crc@cursor-random-256x85.html

  * igt@kms_cursor_crc@cursor-random-64x21:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#1424])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-4/igt@kms_cursor_crc@cursor-random-64x21.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][30] -> [FAIL][31] ([Intel XE#7571])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@single-bo@pipe-a:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][32] ([Intel XE#5354])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-9/igt@kms_cursor_legacy@single-bo@pipe-a.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#4354] / [Intel XE#5882])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-2/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#4354] / [Intel XE#7450])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-4/igt@kms_dp_link_training@non-uhbr-sst.html

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

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
    - shard-bmg:          NOTRUN -> [FAIL][36] ([Intel XE#3321]) +1 other test fail
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#1421])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-2/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-lnl:          [PASS][38] -> [FAIL][39] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#7178] / [Intel XE#7349])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#7178] / [Intel XE#7349])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#1397] / [Intel XE#7385])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#7179])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-1/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html

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

  * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrshdr-rgb101010-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#6312]) +4 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-4/igt@kms_frontbuffer_tracking@drrshdr-rgb101010-draw-blt.html

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

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#1469] / [Intel XE#7399])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#7061]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#656] / [Intel XE#7905]) +9 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#7061]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#7399])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html

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

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#7865]) +6 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-3/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2313]) +23 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-8/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#7905]) +11 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-2/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#7173] / [Intel XE#7294])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

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

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

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

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#5021] / [Intel XE#7377])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#3307])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-4/igt@kms_plane_scaling@intel-max-src-size.html

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

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][68] -> [FAIL][69] ([Intel XE#7340])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#2893] / [Intel XE#7304])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#1489]) +3 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@pr-sprite-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@kms_psr@pr-sprite-plane-onoff.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-lnl:          [PASS][73] -> [SKIP][74] ([Intel XE#4692] / [Intel XE#7508])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-lnl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

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

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#1435])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1091] / [Intel XE#2849])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_eudebug_online@single-step:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#7636]) +8 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-8/igt@xe_eudebug_online@single-step.html

  * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#7636]) +4 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-3/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html

  * igt@xe_evict@evict-cm-threads-small-multi-queue:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-4/igt@xe_evict@evict-cm-threads-small-multi-queue.html

  * igt@xe_evict@evict-small-multi-queue-priority:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#7140])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-priority.html

  * igt@xe_exec_balancer@twice-virtual-basic:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#7482]) +6 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-3/igt@xe_exec_balancer@twice-virtual-basic.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html

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

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

  * igt@xe_exec_fault_mode@twice-multi-queue-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#7136]) +3 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-prefetch.html

  * igt@xe_exec_multi_queue@many-execs-close-fd-smem:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#6874]) +13 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@xe_exec_multi_queue@many-execs-close-fd-smem.html

  * igt@xe_exec_multi_queue@two-queues-priority:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#6874]) +7 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-2/igt@xe_exec_multi_queue@two-queues-priority.html

  * igt@xe_exec_reset@multi-queue-cat-error:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#7866]) +1 other test skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-8/igt@xe_exec_reset@multi-queue-cat-error.html

  * igt@xe_exec_reset@multi-queue-close-execqueues:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#7866])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-1/igt@xe_exec_reset@multi-queue-close-execqueues.html

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

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#7138]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr.html

  * igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#7138]) +3 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-rebind.html

  * igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#6964]) +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-1/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html

  * igt@xe_multigpu_svm@mgpu-pagefault-conflict:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#6964])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-8/igt@xe_multigpu_svm@mgpu-pagefault-conflict.html

  * igt@xe_page_reclaim@boundary-split:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#7793]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-9/igt@xe_page_reclaim@boundary-split.html

  * igt@xe_pat@l2-flush-opt-svm-pat-restrict:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#7590] / [Intel XE#7772])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-2/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html

  * igt@xe_pat@pat-sw-hw-compare:
    - shard-lnl:          NOTRUN -> [FAIL][98] ([Intel XE#7695])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-1/igt@xe_pat@pat-sw-hw-compare.html

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-10/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#4733] / [Intel XE#7417])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-6/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-lnl:          NOTRUN -> [SKIP][101] ([Intel XE#944])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-4/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_sriov_admin@default-sched-attributes-vfs-disabled:
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#7174])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-2/igt@xe_sriov_admin@default-sched-attributes-vfs-disabled.html

  * igt@xe_sriov_vfio@open-basic:
    - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#7724])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-8/igt@xe_sriov_vfio@open-basic.html

  * igt@xe_vm@overcommit-nonfault-vram-no-lr:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#7892])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-8/igt@xe_vm@overcommit-nonfault-vram-no-lr.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - shard-bmg:          [SKIP][105] ([Intel XE#6779]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@core_hotunplug@unbind-rebind.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@core_hotunplug@unbind-rebind.html

  * igt@core_setmaster@master-drop-set-user:
    - shard-bmg:          [FAIL][107] -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@core_setmaster@master-drop-set-user.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-5/igt@core_setmaster@master-drop-set-user.html

  * igt@kms_feature_discovery@display-1x:
    - shard-bmg:          [SKIP][109] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][110] +1 other test pass
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_feature_discovery@display-1x.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-2/igt@kms_feature_discovery@display-1x.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [FAIL][111] ([Intel XE#301]) -> [PASS][112] +1 other test pass
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3:
    - shard-bmg:          [DMESG-FAIL][113] ([Intel XE#5545]) -> [PASS][114] +1 other test pass
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][115] ([Intel XE#1503]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010:
    - shard-bmg:          [SKIP][117] ([Intel XE#7922]) -> [PASS][118] +1 other test pass
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-6/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-1/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html

  * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010:
    - shard-bmg:          [SKIP][119] ([Intel XE#7915]) -> [PASS][120] +3 other tests pass
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-8/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-4/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html

  * igt@xe_exec_system_allocator@threads-many-execqueues-mmap:
    - shard-bmg:          [SKIP][121] ([Intel XE#6703]) -> [PASS][122] +149 other tests pass
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-execqueues-mmap.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-execqueues-mmap.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          [FAIL][123] ([Intel XE#6569]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html

  
#### Warnings ####

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          [SKIP][125] ([Intel XE#6703]) -> [SKIP][126] ([Intel XE#1124]) +2 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p:
    - shard-bmg:          [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#7679])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-target-2160x1440p:
    - shard-bmg:          [SKIP][129] ([Intel XE#6703]) -> [SKIP][130] ([Intel XE#367])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-target-2160x1440p.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-target-2160x1440p.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
    - shard-bmg:          [SKIP][131] ([Intel XE#6703]) -> [SKIP][132] ([Intel XE#2887]) +1 other test skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][133] ([Intel XE#6703]) -> [SKIP][134] ([Intel XE#2652])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          [SKIP][135] ([Intel XE#6703]) -> [SKIP][136] ([Intel XE#2252]) +2 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_color_pipeline@plane-lut3d-green-only:
    - shard-bmg:          [SKIP][137] ([Intel XE#6703]) -> [SKIP][138] ([Intel XE#6969] / [Intel XE#7006])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_color_pipeline@plane-lut3d-green-only.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@kms_color_pipeline@plane-lut3d-green-only.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          [SKIP][139] ([Intel XE#6703]) -> [SKIP][140] ([Intel XE#2320])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_legacy@single-bo:
    - shard-bmg:          [SKIP][141] ([Intel XE#6703]) -> [DMESG-WARN][142] ([Intel XE#5354])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_cursor_legacy@single-bo.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-9/igt@kms_cursor_legacy@single-bo.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-bmg:          [SKIP][143] ([Intel XE#6703]) -> [SKIP][144] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][145] ([Intel XE#6703]) -> [SKIP][146] ([Intel XE#2311]) +11 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][147] ([Intel XE#6703]) -> [SKIP][148] ([Intel XE#4141])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render:
    - shard-bmg:          [SKIP][149] ([Intel XE#6703]) -> [SKIP][150] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt:
    - shard-bmg:          [SKIP][151] ([Intel XE#6703]) -> [SKIP][152] ([Intel XE#7061]) +3 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][153] ([Intel XE#6703]) -> [SKIP][154] ([Intel XE#2313]) +12 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
    - shard-bmg:          [SKIP][155] ([Intel XE#6703]) -> [SKIP][156] ([Intel XE#7283])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-bmg:          [SKIP][157] ([Intel XE#6703]) -> [SKIP][158] ([Intel XE#1489]) +1 other test skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-basic:
    - shard-bmg:          [SKIP][159] ([Intel XE#6703]) -> [SKIP][160] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_psr@fbc-psr-basic.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-1/igt@kms_psr@fbc-psr-basic.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          [SKIP][161] ([Intel XE#6703]) -> [SKIP][162] ([Intel XE#3904] / [Intel XE#7342])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][163] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][164] ([Intel XE#1729] / [Intel XE#7424])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][165] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][166] ([Intel XE#2426] / [Intel XE#5848])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_eudebug_online@interrupt-other:
    - shard-bmg:          [SKIP][167] ([Intel XE#6703]) -> [SKIP][168] ([Intel XE#7636]) +3 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_eudebug_online@interrupt-other.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-5/igt@xe_eudebug_online@interrupt-other.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - shard-bmg:          [SKIP][169] ([Intel XE#6703]) -> [SKIP][170] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault:
    - shard-bmg:          [SKIP][171] ([Intel XE#6703]) -> [SKIP][172] ([Intel XE#7136]) +1 other test skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html

  * igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd:
    - shard-bmg:          [SKIP][173] ([Intel XE#6703]) -> [SKIP][174] ([Intel XE#6874]) +5 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-7/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-basic:
    - shard-bmg:          [SKIP][175] ([Intel XE#6703]) -> [SKIP][176] ([Intel XE#7138]) +1 other test skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-basic.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-basic.html

  * igt@xe_page_reclaim@pde-vs-pd:
    - shard-bmg:          [SKIP][177] ([Intel XE#6703]) -> [SKIP][178] ([Intel XE#7793])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_page_reclaim@pde-vs-pd.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-10/igt@xe_page_reclaim@pde-vs-pd.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-bmg:          [SKIP][179] ([Intel XE#6703]) -> [SKIP][180] ([Intel XE#2284] / [Intel XE#7370])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_query@multigpu-query-oa-units:
    - shard-bmg:          [SKIP][181] ([Intel XE#6703]) -> [SKIP][182] ([Intel XE#944])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_query@multigpu-query-oa-units.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-1/igt@xe_query@multigpu-query-oa-units.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-bmg:          [SKIP][183] ([Intel XE#6703]) -> [DMESG-WARN][184] ([Intel XE#5545])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15131/shard-bmg-10/igt@xe_wedged@wedged-at-any-timeout.html

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

  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [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#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [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#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#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
  [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [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#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173
  [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
  [Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
  [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
  [Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
  [Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
  [Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
  [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
  [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
  [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
  [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
  [Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8899 -> IGTPW_15131
  * Linux: xe-5007-ad7a1f718b8cb631948c94f74dd48cd2867d99fb -> xe-5018-36eddf6e5c9411ad95c4939b092ed1ea77f13d61

  IGTPW_15131: 12d52f3bb14e763cb1d5ede418f1a57758a99e8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8899: 3e5747e536f148bf232049e49a00e2b683f91a83 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5007-ad7a1f718b8cb631948c94f74dd48cd2867d99fb: ad7a1f718b8cb631948c94f74dd48cd2867d99fb
  xe-5018-36eddf6e5c9411ad95c4939b092ed1ea77f13d61: 36eddf6e5c9411ad95c4939b092ed1ea77f13d61

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for tests/kms_hdr: Add visual HDR verification subtests
  2026-05-07 21:13 [PATCH i-g-t][V3] tests/kms_hdr: Add visual HDR verification subtests Alex Hung
                   ` (2 preceding siblings ...)
  2026-05-08 12:00 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-05-08 16:28 ` Patchwork
  2026-05-08 22:00   ` Alex Hung
  2026-05-12  0:36 ` [PATCH i-g-t][V3] " Alex Hung
  4 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2026-05-08 16:28 UTC (permalink / raw)
  To: Alex Hung; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_hdr: Add visual HDR verification subtests
URL   : https://patchwork.freedesktop.org/series/166166/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_18447_full -> IGTPW_15131_full
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@flip-vs-dpms-on-nop@d-hdmi-a1:
    - shard-tglu:         [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-tglu-4/igt@kms_flip@flip-vs-dpms-on-nop@d-hdmi-a1.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-7/igt@kms_flip@flip-vs-dpms-on-nop@d-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@fbchdr-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-suspend.html

  * {igt@kms_hdr@static-swap-smpte2084} (NEW):
    - shard-dg2:          NOTRUN -> [SKIP][4] +1 other test skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_hdr@static-swap-smpte2084.html
    - shard-dg1:          NOTRUN -> [SKIP][5] +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-17/igt@kms_hdr@static-swap-smpte2084.html

  * {igt@kms_hdr@static-swap-traditional-sdr} (NEW):
    - shard-tglu:         NOTRUN -> [SKIP][6] +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_hdr@static-swap-traditional-sdr.html
    - shard-mtlp:         NOTRUN -> [SKIP][7] +1 other test skip
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_hdr@static-swap-traditional-sdr.html
    - shard-rkl:          NOTRUN -> [SKIP][8]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_hdr@static-swap-traditional-sdr.html

  
New tests
---------

  New tests have been introduced between CI_DRM_18447_full and IGTPW_15131_full:

### New IGT tests (2) ###

  * igt@kms_hdr@static-swap-smpte2084:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 0.32] s

  * igt@kms_hdr@static-swap-traditional-sdr:
    - Statuses : 7 skip(s)
    - Exec time: [0.0, 0.00] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-dg2:          NOTRUN -> [SKIP][9] ([i915#8411])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@api_intel_bb@crc32:
    - shard-rkl:          NOTRUN -> [SKIP][10] ([i915#6230])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@api_intel_bb@crc32.html

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

  * igt@dmabuf@all-tests:
    - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#15931])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-3/igt@dmabuf@all-tests.html
    - shard-rkl:          NOTRUN -> [SKIP][13] ([i915#15931])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@dmabuf@all-tests.html

  * igt@drm_buddy@drm_buddy:
    - shard-dg2:          NOTRUN -> [SKIP][14] ([i915#15678])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@drm_buddy@drm_buddy.html

  * igt@gem_bad_reloc@negative-reloc-lut:
    - shard-rkl:          NOTRUN -> [SKIP][15] ([i915#3281]) +8 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html

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

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-tglu-1:       NOTRUN -> [SKIP][17] ([i915#13008])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html

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

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

  * igt@gem_ctx_freq@sysfs@gt0:
    - shard-dg2:          [PASS][20] -> [FAIL][21] ([i915#9561]) +1 other test fail
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-1/igt@gem_ctx_freq@sysfs@gt0.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-glk:          NOTRUN -> [INCOMPLETE][22] ([i915#13356]) +1 other test incomplete
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk4/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_ctx_persistence@legacy-engines-mixed-process:
    - shard-snb:          NOTRUN -> [SKIP][23] ([i915#1099]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-snb1/igt@gem_ctx_persistence@legacy-engines-mixed-process.html

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

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

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-tglu:         NOTRUN -> [SKIP][26] ([i915#4525])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-5/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_big@single:
    - shard-mtlp:         [PASS][27] -> [FAIL][28] ([i915#15871])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-mtlp-2/igt@gem_exec_big@single.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-8/igt@gem_exec_big@single.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-rkl:          NOTRUN -> [SKIP][29] ([i915#6344])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
    - shard-tglu-1:       NOTRUN -> [SKIP][30] ([i915#6344])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html

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

  * igt@gem_exec_reloc@basic-write-read-active:
    - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#3281]) +11 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-3/igt@gem_exec_reloc@basic-write-read-active.html
    - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#3281]) +2 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-16/igt@gem_exec_reloc@basic-write-read-active.html
    - shard-mtlp:         NOTRUN -> [SKIP][34] ([i915#3281]) +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-2/igt@gem_exec_reloc@basic-write-read-active.html

  * igt@gem_exec_reloc@basic-write-wc-active:
    - shard-rkl:          NOTRUN -> [SKIP][35] ([i915#14544] / [i915#3281]) +2 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-active.html

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

  * igt@gem_fence_thrash@bo-write-verify-threaded-none:
    - shard-mtlp:         NOTRUN -> [SKIP][37] ([i915#4860])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-threaded-none.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-tglu:         NOTRUN -> [SKIP][38] ([i915#4613] / [i915#7582])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-2/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-mtlp:         NOTRUN -> [SKIP][39] ([i915#4613]) +2 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-multi.html
    - shard-tglu:         NOTRUN -> [SKIP][40] ([i915#4613])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-multi.html

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

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

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-glk:          NOTRUN -> [SKIP][43] ([i915#4613]) +7 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_media_vme:
    - shard-tglu-1:       NOTRUN -> [SKIP][44] ([i915#284])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@gem_media_vme.html

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

  * igt@gem_mmap_gtt@cpuset-medium-copy-xy:
    - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#4077]) +9 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html

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

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

  * igt@gem_mmap_wc@read-write-distinct:
    - shard-dg1:          NOTRUN -> [SKIP][49] ([i915#4083]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-16/igt@gem_mmap_wc@read-write-distinct.html

  * igt@gem_mmap_wc@write-read-distinct:
    - shard-dg2:          NOTRUN -> [SKIP][50] ([i915#4083]) +3 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-7/igt@gem_mmap_wc@write-read-distinct.html

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

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - shard-rkl:          NOTRUN -> [SKIP][53] ([i915#3282]) +6 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
    - shard-mtlp:         NOTRUN -> [SKIP][54] ([i915#3282]) +3 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gem_pread@exhaustion:
    - shard-glk:          NOTRUN -> [WARN][55] ([i915#2658])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk4/igt@gem_pread@exhaustion.html
    - shard-snb:          NOTRUN -> [WARN][56] ([i915#2658])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-snb4/igt@gem_pread@exhaustion.html
    - shard-tglu:         NOTRUN -> [WARN][57] ([i915#2658])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-6/igt@gem_pread@exhaustion.html

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

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-dg1:          NOTRUN -> [SKIP][59] ([i915#4270])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-12/igt@gem_pxp@protected-raw-src-copy-not-readible.html

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

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

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

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-rkl:          NOTRUN -> [SKIP][63] ([i915#8411])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
    - shard-dg1:          NOTRUN -> [SKIP][64] ([i915#4079])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
    - shard-dg2:          NOTRUN -> [SKIP][65] ([i915#4079]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-rkl:          NOTRUN -> [SKIP][66] ([i915#14544] / [i915#8411])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
    - shard-mtlp:         NOTRUN -> [SKIP][67] ([i915#4079]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-4/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#4885])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-3/igt@gem_softpin@evict-snoop.html

  * igt@gem_tiled_partial_pwrite_pread@writes:
    - shard-rkl:          NOTRUN -> [SKIP][69] ([i915#14544] / [i915#3282]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes.html

  * igt@gem_unfence_active_buffers:
    - shard-dg2:          NOTRUN -> [SKIP][70] ([i915#4879])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-7/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][71] ([i915#3323])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk9/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-rkl:          NOTRUN -> [SKIP][72] ([i915#3297] / [i915#3323])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][73] ([i915#3297])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-5/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
    - shard-dg2:          NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4880])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
    - shard-dg1:          NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4880])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
    - shard-mtlp:         NOTRUN -> [SKIP][76] ([i915#3297])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html

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

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-tglu-1:       NOTRUN -> [SKIP][79] ([i915#3297])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gen3_render_linear_blits:
    - shard-rkl:          NOTRUN -> [SKIP][80] ([i915#14544]) +3 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gen3_render_linear_blits.html

  * igt@gen7_exec_parse@basic-offset:
    - shard-dg2:          NOTRUN -> [SKIP][81] +11 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@gen7_exec_parse@basic-offset.html

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

  * igt@gen9_exec_parse@batch-zero-length:
    - shard-mtlp:         NOTRUN -> [SKIP][83] ([i915#2856]) +2 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@gen9_exec_parse@batch-zero-length.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-tglu-1:       NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html

  * igt@gen9_exec_parse@bb-start-far:
    - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#2856]) +5 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-8/igt@gen9_exec_parse@bb-start-far.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-dg1:          NOTRUN -> [SKIP][86] ([i915#2527]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-14/igt@gen9_exec_parse@bb-start-out.html
    - shard-tglu:         NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-7/igt@gen9_exec_parse@bb-start-out.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-rkl:          NOTRUN -> [SKIP][88] ([i915#2527]) +5 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html

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

  * igt@i915_drm_fdinfo@virtual-busy-idle:
    - shard-dg2:          NOTRUN -> [SKIP][90] ([i915#14118]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-idle.html
    - shard-dg1:          NOTRUN -> [SKIP][91] ([i915#14118])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-idle.html
    - shard-mtlp:         NOTRUN -> [SKIP][92] ([i915#14118])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-5/igt@i915_drm_fdinfo@virtual-busy-idle.html

  * igt@i915_module_load@fault-injection@__uc_init:
    - shard-rkl:          NOTRUN -> [SKIP][93] ([i915#15479]) +4 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/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][94] ([i915#15342]) +1 other test abort
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-3/igt@i915_module_load@fault-injection@intel_connector_register.html

  * igt@i915_module_load@reload-no-display:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][95] ([i915#13029] / [i915#14545])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@i915_module_load@reload-no-display.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          NOTRUN -> [SKIP][96] ([i915#14544] / [i915#6412])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@i915_module_load@resize-bar.html

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

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

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-tglu:         NOTRUN -> [SKIP][99] ([i915#14498])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle.html
    - shard-rkl:          NOTRUN -> [SKIP][100] ([i915#14498] / [i915#14544])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - shard-glk:          NOTRUN -> [INCOMPLETE][101] ([i915#13356] / [i915#15172])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk8/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg2:          NOTRUN -> [SKIP][102] ([i915#11681] / [i915#6621]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-3/igt@i915_pm_rps@min-max-config-idle.html

  * igt@i915_pm_rps@min-max-config-loaded:
    - shard-mtlp:         NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-8/igt@i915_pm_rps@min-max-config-loaded.html

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

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

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

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][107] ([i915#12761]) +1 other test incomplete
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk11/igt@kms_async_flips@async-flip-suspend-resume.html

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

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

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

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

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-rkl:          NOTRUN -> [SKIP][112] ([i915#14544] / [i915#5286])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
    - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#5286])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb.html
    - shard-tglu:         NOTRUN -> [SKIP][114] ([i915#5286]) +4 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-rkl:          NOTRUN -> [SKIP][115] ([i915#5286]) +5 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-tglu-1:       NOTRUN -> [SKIP][116] ([i915#5286]) +4 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-dg2:          NOTRUN -> [SKIP][117] ([i915#3828])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-tglu-1:       NOTRUN -> [SKIP][118] ([i915#3828])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][119] ([i915#14544] / [i915#3638])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +11 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-8/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
    - shard-rkl:          NOTRUN -> [SKIP][121] ([i915#3638]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-mtlp:         NOTRUN -> [SKIP][122] ([i915#6187])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][123] ([i915#4538]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][124] ([i915#6095]) +176 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][125] ([i915#14098] / [i915#6095]) +43 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#12313]) +2 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][127] ([i915#6095]) +34 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][128] ([i915#6095]) +39 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-hdmi-a-1.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][130] ([i915#12805])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

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

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][133] ([i915#12805])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][134] ([i915#12805])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-glk:          NOTRUN -> [INCOMPLETE][135] ([i915#15582]) +2 other tests incomplete
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][136] ([i915#6095]) +8 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][137] ([i915#12313]) +1 other test skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +103 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
    - shard-glk10:        NOTRUN -> [SKIP][140] +102 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html

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

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][142] ([i915#6095]) +34 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html

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

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#3742])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][145] ([i915#13781]) +3 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html

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

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - shard-rkl:          NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +9 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-read.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-dg2:          NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +11 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_chamelium_frames@dp-crc-fast.html

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

  * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-tglu-1:       NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +4 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

  * igt@kms_color@deep-color:
    - shard-rkl:          [PASS][152] -> [SKIP][153] ([i915#12655] / [i915#3555])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_color@deep-color.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_color@deep-color.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][154] ([i915#15330])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

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

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-tglu:         NOTRUN -> [SKIP][157] ([i915#15330])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#15330])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html

  * igt@kms_content_protection@lic-type-0:
    - shard-rkl:          NOTRUN -> [SKIP][159] ([i915#15865])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][160] ([i915#15865]) +1 other test skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-7/igt@kms_content_protection@lic-type-1.html

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

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

  * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][163] ([i915#13566]) +1 other test fail
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][164] -> [FAIL][165] ([i915#13566]) +1 other test fail
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-rkl:          NOTRUN -> [SKIP][166] ([i915#3555]) +2 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
    - shard-tglu:         NOTRUN -> [SKIP][167] ([i915#3555]) +2 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
    - shard-mtlp:         NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8814]) +1 other test skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-dg1:          NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][170] ([i915#13049])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
    - shard-mtlp:         NOTRUN -> [SKIP][171] ([i915#13049])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
    - shard-dg2:          NOTRUN -> [SKIP][172] ([i915#13049])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
    - shard-rkl:          NOTRUN -> [SKIP][173] ([i915#13049])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-mtlp:         NOTRUN -> [SKIP][174] ([i915#8814])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          NOTRUN -> [SKIP][175] ([i915#3555]) +3 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
    - shard-dg1:          NOTRUN -> [SKIP][176] ([i915#3555])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-32x10.html

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

  * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2:
    - shard-rkl:          [PASS][178] -> [FAIL][179] ([i915#13566]) +1 other test fail
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html

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

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

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

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#13046] / [i915#5354]) +3 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
    - shard-mtlp:         NOTRUN -> [SKIP][184] ([i915#9809]) +2 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          NOTRUN -> [FAIL][185] ([i915#15804]) +1 other test fail
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

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

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

  * igt@kms_cursor_legacy@single-move:
    - shard-dg1:          [PASS][188] -> [DMESG-WARN][189] ([i915#4423]) +1 other test dmesg-warn
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg1-14/igt@kms_cursor_legacy@single-move.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-12/igt@kms_cursor_legacy@single-move.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-dg2:          NOTRUN -> [SKIP][190] ([i915#9833])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
    - shard-rkl:          NOTRUN -> [SKIP][191] ([i915#9723])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-rkl:          NOTRUN -> [SKIP][192] ([i915#13748])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg2:          NOTRUN -> [SKIP][193] ([i915#13707])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-3/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-tglu:         NOTRUN -> [SKIP][194] ([i915#3840]) +1 other test skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-mtlp:         NOTRUN -> [SKIP][195] ([i915#3840] / [i915#9688])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp.html

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

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

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2:          NOTRUN -> [SKIP][198] ([i915#3840] / [i915#9053])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - shard-rkl:          NOTRUN -> [SKIP][199] ([i915#3840] / [i915#9053])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

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

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

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][202] -> [FAIL][203] ([i915#13027]) +1 other test fail
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html

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

  * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][205] ([i915#12314] / [i915#12745])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +2 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#9934]) +6 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_flip@2x-wf_vblank-ts-check.html
    - shard-rkl:          NOTRUN -> [SKIP][208] ([i915#9934]) +5 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_flip@2x-wf_vblank-ts-check.html
    - shard-tglu-1:       NOTRUN -> [SKIP][209] ([i915#3637] / [i915#9934]) +3 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html
    - shard-dg1:          NOTRUN -> [SKIP][210] ([i915#9934]) +2 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-18/igt@kms_flip@2x-wf_vblank-ts-check.html
    - shard-mtlp:         NOTRUN -> [SKIP][211] ([i915#3637] / [i915#9934]) +2 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@flip-vs-dpms-on-nop:
    - shard-tglu:         [PASS][212] -> [FAIL][213] ([i915#10826])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-tglu-4/igt@kms_flip@flip-vs-dpms-on-nop.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-7/igt@kms_flip@flip-vs-dpms-on-nop.html

  * igt@kms_flip@flip-vs-fences-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][214] ([i915#8381]) +1 other test skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_flip@flip-vs-fences-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][215] ([i915#15643]) +2 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][216] ([i915#15643]) +2 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
    - shard-rkl:          NOTRUN -> [SKIP][217] ([i915#14544] / [i915#15643])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][219] ([i915#15643]) +2 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][220] ([i915#15643]) +2 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][223] ([i915#15643]) +2 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-mtlp:         [PASS][224] -> [SKIP][225] ([i915#15672]) +1 other test skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-mtlp-5/igt@kms_force_connector_basic@prune-stale-modes.html
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][226] ([i915#15991] / [i915#5354]) +29 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][227] ([i915#15990] / [i915#8708]) +14 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
    - shard-dg1:          NOTRUN -> [SKIP][228] ([i915#15990] / [i915#8708]) +3 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][230] ([i915#15991] / [i915#1825]) +14 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][231] +75 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt:
    - shard-tglu-1:       NOTRUN -> [SKIP][232] ([i915#15989]) +12 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-tglu:         NOTRUN -> [SKIP][233] ([i915#15989]) +22 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-fullscreen:
    - shard-mtlp:         NOTRUN -> [SKIP][234] ([i915#15989]) +25 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-glk:          [PASS][235] -> [SKIP][236] +9 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][237] ([i915#15990]) +24 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-3/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt:
    - shard-tglu:         NOTRUN -> [SKIP][238] +60 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][239] ([i915#15989]) +21 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
    - shard-tglu-1:       NOTRUN -> [SKIP][240] ([i915#5439]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][241] ([i915#15104] / [i915#15990])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][242] ([i915#15102]) +18 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
    - shard-dg2:          NOTRUN -> [SKIP][243] ([i915#10433] / [i915#15102] / [i915#3458])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-rkl:          NOTRUN -> [SKIP][244] ([i915#14544] / [i915#1825]) +6 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][245] ([i915#15990] / [i915#8708]) +2 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#14544] / [i915#15102]) +2 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-render:
    - shard-dg1:          NOTRUN -> [SKIP][247] ([i915#15102]) +8 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move:
    - shard-tglu-1:       NOTRUN -> [SKIP][248] ([i915#15102]) +32 other tests skip
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-rkl:          NOTRUN -> [SKIP][249] ([i915#15102]) +22 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][250] +58 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][251] ([i915#15990]) +5 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt:
    - shard-dg1:          NOTRUN -> [SKIP][252] ([i915#15989]) +5 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
    - shard-rkl:          [PASS][253] -> [SKIP][254] ([i915#15989]) +10 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][255] ([i915#15989]) +17 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][256] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][257] ([i915#15102] / [i915#3458]) +15 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
    - shard-dg1:          NOTRUN -> [SKIP][258] ([i915#15102] / [i915#3458]) +3 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-snb:          NOTRUN -> [SKIP][259] +146 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

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

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][261] ([i915#15990]) +5 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-12/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-mtlp:         NOTRUN -> [SKIP][262] ([i915#15991]) +18 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-8/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-msflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][263] ([i915#15991]) +38 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-3/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-rte:
    - shard-dg1:          NOTRUN -> [SKIP][264] +21 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-12/igt@kms_frontbuffer_tracking@psrhdr-2p-rte.html

  * igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-blt:
    - shard-tglu:         NOTRUN -> [SKIP][265] ([i915#15102]) +38 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-blt.html

  * igt@kms_hdr@bpc-switch:
    - shard-rkl:          NOTRUN -> [SKIP][266] ([i915#16012] / [i915#3555] / [i915#8228])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_hdr@bpc-switch.html
    - shard-tglu:         NOTRUN -> [SKIP][267] ([i915#16012] / [i915#3555] / [i915#8228])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_hdr@bpc-switch.html

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

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
    - shard-tglu-1:       NOTRUN -> [SKIP][269] ([i915#16012]) +1 other test skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010:
    - shard-dg1:          NOTRUN -> [SKIP][270] ([i915#16012]) +3 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-19/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010.html

  * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010:
    - shard-tglu:         NOTRUN -> [SKIP][271] ([i915#16012]) +1 other test skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html

  * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-2-xrgb16161616f:
    - shard-rkl:          NOTRUN -> [SKIP][272] ([i915#16012]) +1 other test skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-2-xrgb16161616f.html

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

  * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f:
    - shard-dg1:          NOTRUN -> [SKIP][274] ([i915#16011]) +7 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-14/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f.html

  * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb16161616f:
    - shard-dg2:          NOTRUN -> [SKIP][275] ([i915#16011]) +7 other tests skip
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb16161616f.html

  * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-2-xrgb2101010:
    - shard-rkl:          NOTRUN -> [SKIP][276] ([i915#16011]) +3 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-2-xrgb2101010.html

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

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

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

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][281] ([i915#13688])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][282] ([i915#15638] / [i915#15722])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
    - shard-rkl:          NOTRUN -> [SKIP][283] ([i915#15638] / [i915#15722])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-dg2:          NOTRUN -> [SKIP][284] ([i915#6301])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_panel_fitting@legacy:
    - shard-tglu-1:       NOTRUN -> [SKIP][285] ([i915#6301])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
    - shard-mtlp:         NOTRUN -> [SKIP][286] +11 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-8/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-rkl:          [PASS][287] -> [INCOMPLETE][288] ([i915#12756] / [i915#13476])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][289] ([i915#13476])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html

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

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#13705])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
    - shard-mtlp:         NOTRUN -> [SKIP][292] ([i915#13705])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

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

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][294] ([i915#14544] / [i915#15709])
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
    - shard-dg1:          NOTRUN -> [SKIP][295] ([i915#15709]) +1 other test skip
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html

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

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

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

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
    - shard-tglu:         NOTRUN -> [SKIP][299] ([i915#15709]) +1 other test skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
    - shard-mtlp:         NOTRUN -> [SKIP][300] ([i915#15709]) +2 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-7/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
    - shard-rkl:          NOTRUN -> [SKIP][301] ([i915#15709])
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html

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

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

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

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

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

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][307] ([i915#13958]) +1 other test skip
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-8/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
    - shard-rkl:          NOTRUN -> [SKIP][308] ([i915#15329]) +3 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-tglu-1:       NOTRUN -> [SKIP][309] ([i915#9812])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][310] ([i915#12343])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][311] ([i915#14544] / [i915#5354])
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][312] ([i915#9812])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2:          NOTRUN -> [SKIP][313] ([i915#15948])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          [PASS][314] -> [SKIP][315] ([i915#9340])
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-7/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-dg2:          NOTRUN -> [SKIP][316] ([i915#8430])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          [PASS][317] -> [SKIP][318] ([i915#15073]) +1 other test skip
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
    - shard-dg1:          [PASS][319] -> [SKIP][320] ([i915#15073])
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html

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

  * igt@kms_pm_rpm@package-g7:
    - shard-tglu:         NOTRUN -> [SKIP][322] ([i915#15403])
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-9/igt@kms_pm_rpm@package-g7.html
    - shard-mtlp:         NOTRUN -> [SKIP][323] ([i915#15403])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_pm_rpm@package-g7.html
    - shard-rkl:          NOTRUN -> [SKIP][324] ([i915#15403])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@kms_pm_rpm@package-g7.html

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

  * igt@kms_prime@d3hot:
    - shard-dg2:          NOTRUN -> [SKIP][326] ([i915#6524] / [i915#6805])
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_prime@d3hot.html
    - shard-rkl:          NOTRUN -> [SKIP][327] ([i915#6524])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_prime@d3hot.html

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

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

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-glk11:        NOTRUN -> [SKIP][330] ([i915#11520])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk11/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][331] ([i915#9808])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-glk10:        NOTRUN -> [SKIP][332] ([i915#11520])
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk10/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
    - shard-tglu:         NOTRUN -> [SKIP][333] ([i915#11520]) +4 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-3/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
    - shard-mtlp:         NOTRUN -> [SKIP][334] ([i915#12316]) +3 other tests skip
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-8/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
    - shard-dg2:          NOTRUN -> [SKIP][335] ([i915#11520]) +5 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
    - shard-rkl:          NOTRUN -> [SKIP][336] ([i915#11520]) +4 other tests skip
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
    - shard-snb:          NOTRUN -> [SKIP][337] ([i915#11520]) +2 other tests skip
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-snb1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
    - shard-dg1:          NOTRUN -> [SKIP][338] ([i915#11520]) +2 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-16/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html

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

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

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

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

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-rkl:          NOTRUN -> [SKIP][343] ([i915#1072] / [i915#9732]) +22 other tests skip
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_psr@fbc-psr2-primary-blt.html

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

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-mtlp:         NOTRUN -> [SKIP][345] ([i915#9688]) +10 other tests skip
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@pr-primary-blt:
    - shard-dg1:          NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +6 other tests skip
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-16/igt@kms_psr@pr-primary-blt.html

  * igt@kms_psr@psr-cursor-render:
    - shard-dg2:          NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +21 other tests skip
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@kms_psr@psr-cursor-render.html

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

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-rkl:          NOTRUN -> [SKIP][349] ([i915#15949])
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-dg2:          NOTRUN -> [SKIP][350] ([i915#15949])
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@multiplane-rotation:
    - shard-glk:          NOTRUN -> [INCOMPLETE][351] ([i915#15492]) +1 other test incomplete
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk5/igt@kms_rotation_crc@multiplane-rotation.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][352] ([i915#15500])
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-mtlp:         NOTRUN -> [SKIP][353] ([i915#12755] / [i915#15867])
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_rotation_crc@primary-rotation-90.html
    - shard-dg2:          NOTRUN -> [SKIP][354] ([i915#12755] / [i915#15867])
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-90.html

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

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

  * igt@kms_selftest@drm_framebuffer:
    - shard-rkl:          NOTRUN -> [ABORT][357] ([i915#13179]) +1 other test abort
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@kms_selftest@drm_framebuffer.html
    - shard-snb:          NOTRUN -> [ABORT][358] ([i915#13179]) +1 other test abort
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-snb6/igt@kms_selftest@drm_framebuffer.html
    - shard-glk:          NOTRUN -> [ABORT][359] ([i915#13179]) +1 other test abort
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk6/igt@kms_selftest@drm_framebuffer.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-rkl:          NOTRUN -> [SKIP][360] ([i915#8623])
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-tglu:         NOTRUN -> [SKIP][361] ([i915#8623])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-mtlp:         NOTRUN -> [SKIP][362] ([i915#8623])
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][363] ([i915#12276]) +1 other test incomplete
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk11/igt@kms_vblank@ts-continuation-suspend.html
    - shard-rkl:          [PASS][364] -> [ABORT][365] ([i915#15132])
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-2/igt@kms_vblank@ts-continuation-suspend.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [ABORT][366] ([i915#15132])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html

  * igt@kms_vrr@flip-basic:
    - shard-rkl:          NOTRUN -> [SKIP][367] ([i915#15243] / [i915#3555]) +1 other test skip
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_vrr@flip-basic.html
    - shard-mtlp:         NOTRUN -> [SKIP][368] ([i915#3555] / [i915#8808])
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@max-min:
    - shard-rkl:          NOTRUN -> [SKIP][369] ([i915#9906])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_vrr@max-min.html
    - shard-dg1:          NOTRUN -> [SKIP][370] ([i915#9906]) +1 other test skip
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-17/igt@kms_vrr@max-min.html
    - shard-mtlp:         NOTRUN -> [SKIP][371] ([i915#8808] / [i915#9906])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-7/igt@kms_vrr@max-min.html

  * igt@kms_vrr@negative-basic:
    - shard-dg2:          NOTRUN -> [SKIP][372] ([i915#3555] / [i915#9906])
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_vrr@negative-basic.html
    - shard-rkl:          NOTRUN -> [SKIP][373] ([i915#3555] / [i915#9906])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-dg2:          NOTRUN -> [SKIP][374] ([i915#9906]) +1 other test skip
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-tglu:         NOTRUN -> [SKIP][375] ([i915#9906]) +1 other test skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@global-sseu-config:
    - shard-mtlp:         NOTRUN -> [SKIP][376] ([i915#7387])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@perf@global-sseu-config.html

  * igt@perf@mi-rpc:
    - shard-rkl:          NOTRUN -> [SKIP][377] ([i915#2434])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@perf@mi-rpc.html
    - shard-mtlp:         NOTRUN -> [SKIP][378] ([i915#2434])
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-5/igt@perf@mi-rpc.html

  * igt@prime_vgem@basic-fence-read:
    - shard-dg2:          NOTRUN -> [SKIP][379] ([i915#3291] / [i915#3708])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-1/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@basic-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][380] ([i915#3708] / [i915#4077])
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@prime_vgem@basic-gtt.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2:          NOTRUN -> [SKIP][381] ([i915#9917])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html

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

  
#### Possible fixes ####

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-dg2:          [FAIL][383] ([i915#15454]) -> [PASS][384]
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html

  * igt@gem_eio@in-flight-suspend:
    - shard-rkl:          [INCOMPLETE][385] ([i915#13390]) -> [PASS][386]
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@gem_eio@in-flight-suspend.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@kms:
    - shard-rkl:          [DMESG-WARN][387] ([i915#13363]) -> [PASS][388]
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-7/igt@gem_eio@kms.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_eio@kms.html
    - shard-tglu:         [DMESG-WARN][389] ([i915#13363]) -> [PASS][390]
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-tglu-7/igt@gem_eio@kms.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-5/igt@gem_eio@kms.html

  * igt@gem_exec_suspend@basic-s0:
    - shard-dg2:          [INCOMPLETE][391] ([i915#13356]) -> [PASS][392] +1 other test pass
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_mmap_offset@clear-via-pagefault:
    - shard-mtlp:         [INCOMPLETE][393] ([i915#16021]) -> [PASS][394] +1 other test pass
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html

  * igt@gem_pxp@create-valid-protected-context:
    - shard-rkl:          [SKIP][395] ([i915#4270]) -> [PASS][396]
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-2/igt@gem_pxp@create-valid-protected-context.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_pxp@create-valid-protected-context.html

  * igt@gem_workarounds@suspend-resume:
    - shard-rkl:          [INCOMPLETE][397] ([i915#13356]) -> [PASS][398]
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@gem_workarounds@suspend-resume.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@gem_workarounds@suspend-resume.html
    - shard-snb:          [ABORT][399] ([i915#15840]) -> [PASS][400]
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-snb4/igt@gem_workarounds@suspend-resume.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-snb7/igt@gem_workarounds@suspend-resume.html

  * igt@i915_pm_rps@waitboost:
    - shard-mtlp:         [FAIL][401] ([i915#15365]) -> [PASS][402]
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-mtlp-2/igt@i915_pm_rps@waitboost.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-2/igt@i915_pm_rps@waitboost.html

  * igt@i915_selftest@live:
    - shard-mtlp:         [DMESG-FAIL][403] ([i915#12061] / [i915#15560]) -> [PASS][404]
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-mtlp-7/igt@i915_selftest@live.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - shard-mtlp:         [DMESG-FAIL][405] ([i915#12061]) -> [PASS][406]
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/igt@i915_selftest@live@workarounds.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          [INCOMPLETE][407] ([i915#15582]) -> [PASS][408]
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-rkl:          [FAIL][409] ([i915#13566]) -> [PASS][410] +2 other tests pass
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-128x42.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
    - shard-tglu:         [FAIL][411] ([i915#13566]) -> [PASS][412] +3 other tests pass
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_flip@plain-flip-ts-check:
    - shard-dg2:          [FAIL][413] ([i915#10826]) -> [PASS][414]
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg2-5/igt@kms_flip@plain-flip-ts-check.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-4/igt@kms_flip@plain-flip-ts-check.html

  * igt@kms_force_connector_basic@force-edid:
    - shard-mtlp:         [SKIP][415] ([i915#15672]) -> [PASS][416]
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-8/igt@kms_force_connector_basic@force-edid.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-rkl:          [ABORT][417] ([i915#15132]) -> [PASS][418]
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][419] ([i915#15989]) -> [PASS][420] +4 other tests pass
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-render:
    - shard-glk:          [SKIP][421] -> [PASS][422] +2 other tests pass
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-glk1/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-render.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-rkl:          [SKIP][423] ([i915#6953]) -> [PASS][424]
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-rkl:          [SKIP][425] ([i915#15073]) -> [PASS][426]
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg2:          [SKIP][427] ([i915#15073]) -> [PASS][428] +1 other test pass
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-dg1:          [SKIP][429] ([i915#15073]) -> [PASS][430] +1 other test pass
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-dg2:          [INCOMPLETE][431] ([i915#14419]) -> [PASS][432]
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html
    - shard-rkl:          [INCOMPLETE][433] ([i915#14419]) -> [PASS][434]
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_pm_rpm@system-suspend-idle.html

  * igt@sysfs_heartbeat_interval@mixed:
    - shard-tglu:         [FAIL][435] -> [PASS][436] +1 other test pass
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-tglu-6/igt@sysfs_heartbeat_interval@mixed.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-5/igt@sysfs_heartbeat_interval@mixed.html

  
#### Warnings ####

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-rkl:          [SKIP][437] ([i915#14544] / [i915#7697]) -> [SKIP][438] ([i915#7697])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-rkl:          [SKIP][439] ([i915#280]) -> [SKIP][440] ([i915#14544] / [i915#280])
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-rkl:          [SKIP][441] ([i915#4525]) -> [SKIP][442] ([i915#14544] / [i915#4525]) +1 other test skip
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-5/igt@gem_exec_balancer@parallel-ordering.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_big@single:
    - shard-tglu:         [FAIL][443] ([i915#15816]) -> [FAIL][444] ([i915#15944])
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-tglu-4/igt@gem_exec_big@single.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-7/igt@gem_exec_big@single.html

  * igt@gem_exec_reloc@basic-wc-read:
    - shard-rkl:          [SKIP][445] ([i915#14544] / [i915#3281]) -> [SKIP][446] ([i915#3281]) +4 other tests skip
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@gem_exec_reloc@basic-wc-read.html

  * igt@gem_exec_reloc@basic-write-read-noreloc:
    - shard-rkl:          [SKIP][447] ([i915#3281]) -> [SKIP][448] ([i915#14544] / [i915#3281]) +4 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-noreloc.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-rkl:          [SKIP][449] ([i915#14544] / [i915#4613] / [i915#7582]) -> [SKIP][450] ([i915#4613] / [i915#7582])
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - shard-rkl:          [SKIP][451] ([i915#14544] / [i915#4613]) -> [SKIP][452] ([i915#4613])
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-rkl:          [SKIP][453] ([i915#4613]) -> [SKIP][454] ([i915#14544] / [i915#4613]) +1 other test skip
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-8/igt@gem_lmem_swapping@verify-ccs.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_media_vme:
    - shard-rkl:          [SKIP][455] ([i915#14544] / [i915#284]) -> [SKIP][456] ([i915#284])
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@gem_media_vme.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@gem_media_vme.html

  * igt@gem_pread@display:
    - shard-rkl:          [SKIP][457] ([i915#3282]) -> [SKIP][458] ([i915#14544] / [i915#3282])
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-2/igt@gem_pread@display.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_pread@display.html

  * igt@gem_pwrite@basic-random:
    - shard-rkl:          [SKIP][459] ([i915#14544] / [i915#3282]) -> [SKIP][460] ([i915#3282]) +1 other test skip
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@gem_pwrite@basic-random.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/igt@gem_pwrite@basic-random.html

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-rkl:          [SKIP][461] ([i915#3282] / [i915#3297]) -> [SKIP][462] ([i915#14544] / [i915#3282] / [i915#3297])
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-rkl:          [SKIP][463] ([i915#3297]) -> [SKIP][464] ([i915#14544] / [i915#3297])
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-rkl:          [SKIP][465] ([i915#14544] / [i915#3297]) -> [SKIP][466] ([i915#3297])
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@i915_pm_sseu@full-enable:
    - shard-rkl:          [SKIP][467] ([i915#4387]) -> [SKIP][468] ([i915#14544] / [i915#4387])
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@i915_pm_sseu@full-enable.html

  * igt@i915_query@hwconfig_table:
    - shard-rkl:          [SKIP][469] ([i915#14544] / [i915#6245]) -> [SKIP][470] ([i915#6245])
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@i915_query@hwconfig_table.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@i915_query@hwconfig_table.html

  * igt@intel_hwmon@hwmon-read:
    - shard-rkl:          [SKIP][471] ([i915#7707]) -> [SKIP][472] ([i915#14544] / [i915#7707])
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-4/igt@intel_hwmon@hwmon-read.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@intel_hwmon@hwmon-read.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
    - shard-rkl:          [SKIP][473] ([i915#14544] / [i915#5286]) -> [SKIP][474] ([i915#5286]) +1 other test skip
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-rkl:          [SKIP][475] ([i915#5286]) -> [SKIP][476] ([i915#14544] / [i915#5286])
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-rkl:          [SKIP][477] ([i915#14544] / [i915#3638]) -> [SKIP][478] ([i915#3638])
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-rkl:          [SKIP][479] ([i915#14544] / [i915#3828]) -> [SKIP][480] ([i915#3828])
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-rkl:          [SKIP][481] ([i915#14544]) -> [SKIP][482] +24 other tests skip
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

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

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

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][487] ([i915#14544] / [i915#6095]) -> [SKIP][488] ([i915#6095]) +2 other tests skip
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][489] ([i915#12313]) -> [SKIP][490] ([i915#12313] / [i915#14544])
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

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

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

  * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
    - shard-rkl:          [SKIP][495] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][496] ([i915#11151] / [i915#7828]) +2 other tests skip
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-rkl:          [SKIP][497] ([i915#11151] / [i915#7828]) -> [SKIP][498] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-rkl:          [SKIP][499] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][500] ([i915#15330] / [i915#3116])
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@uevent:
    - shard-rkl:          [SKIP][501] ([i915#15865]) -> [SKIP][502] ([i915#14544] / [i915#15865]) +1 other test skip
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-5/igt@kms_content_protection@uevent.html
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-rkl:          [SKIP][503] ([i915#3555]) -> [SKIP][504] ([i915#14544] / [i915#3555]) +2 other tests skip
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html

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

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-rkl:          [SKIP][507] ([i915#14544] / [i915#3555]) -> [SKIP][508] ([i915#3555])
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_feature_discovery@psr2:
    - shard-rkl:          [SKIP][509] ([i915#14544] / [i915#658]) -> [SKIP][510] ([i915#658])
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_feature_discovery@psr2.html
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-rkl:          [SKIP][511] ([i915#14544] / [i915#9934]) -> [SKIP][512] ([i915#9934])
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-rkl:          [SKIP][513] ([i915#9934]) -> [SKIP][514] ([i915#14544] / [i915#9934]) +3 other tests skip
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-rkl:          [SKIP][515] ([i915#14544] / [i915#15643]) -> [SKIP][516] ([i915#15643]) +1 other test skip
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-rkl:          [SKIP][517] ([i915#15643]) -> [SKIP][518] ([i915#14544] / [i915#15643]) +1 other test skip
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-rkl:          [SKIP][519] ([i915#1825]) -> [SKIP][520] ([i915#14544] / [i915#1825]) +15 other tests skip
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt:
    - shard-rkl:          [SKIP][521] -> [SKIP][522] ([i915#14544]) +29 other tests skip
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
    - shard-dg2:          [SKIP][523] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][524] ([i915#15102] / [i915#3458]) +1 other test skip
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-pwrite:
    - shard-dg1:          [SKIP][525] ([i915#15102] / [i915#4423]) -> [SKIP][526] ([i915#15102])
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-pwrite.html
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-rkl:          [SKIP][527] ([i915#14544] / [i915#15102]) -> [SKIP][528] ([i915#15102]) +6 other tests skip
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite.html
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
    - shard-rkl:          [SKIP][529] ([i915#15102] / [i915#3023]) -> [SKIP][530] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-rte:
    - shard-rkl:          [SKIP][531] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][532] ([i915#15102] / [i915#3023]) +5 other tests skip
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
    - shard-rkl:          [SKIP][533] ([i915#14544] / [i915#1825]) -> [SKIP][534] ([i915#1825]) +9 other tests skip
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt:
    - shard-rkl:          [SKIP][535] ([i915#15102]) -> [SKIP][536] ([i915#14544] / [i915#15102]) +12 other tests skip
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-5/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html

  * igt@kms_hdr@invalid-hdr:
    - shard-rkl:          [SKIP][537] ([i915#14544] / [i915#3555] / [i915#8228]) -> [SKIP][538] ([i915#16012] / [i915#3555] / [i915#8228])
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_hdr@invalid-hdr.html
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
    - shard-rkl:          [SKIP][539] ([i915#14544] / [i915#16025]) -> [SKIP][540] ([i915#16012]) +1 other test skip
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010.html
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-rkl:          [SKIP][541] ([i915#15458]) -> [SKIP][542] ([i915#14544] / [i915#15458]) +1 other test skip
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
    - shard-rkl:          [SKIP][543] ([i915#14544] / [i915#15709]) -> [SKIP][544] ([i915#15709])
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
    - shard-rkl:          [SKIP][545] ([i915#15709]) -> [SKIP][546] ([i915#14544] / [i915#15709]) +1 other test skip
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-8/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-rkl:          [SKIP][547] ([i915#14544] / [i915#5354]) -> [SKIP][548] ([i915#5354])
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-rkl:          [SKIP][549] ([i915#15739]) -> [SKIP][550] ([i915#14544] / [i915#15739])
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][551] ([i915#3828]) -> [SKIP][552] ([i915#9340])
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-dg1:          [SKIP][553] ([i915#9340]) -> [SKIP][554] ([i915#3828])
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-dg1-19/igt@kms_pm_lpsp@kms-lpsp.html
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-rkl:          [SKIP][555] ([i915#14544] / [i915#6524]) -> [SKIP][556] ([i915#6524])
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html

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

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-rkl:          [SKIP][559] ([i915#11520] / [i915#14544]) -> [SKIP][560] ([i915#11520]) +2 other tests skip
   [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
   [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr@fbc-psr-cursor-plane-move:
    - shard-rkl:          [SKIP][561] ([i915#1072] / [i915#9732]) -> [SKIP][562] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip
   [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-7/igt@kms_psr@fbc-psr-cursor-plane-move.html
   [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html

  * igt@kms_psr@psr-sprite-plane-move:
    - shard-rkl:          [SKIP][563] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][564] ([i915#1072] / [i915#9732]) +4 other tests skip
   [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
   [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-rkl:          [SKIP][565] ([i915#9906]) -> [SKIP][566] ([i915#14544] / [i915#9906])
   [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html
   [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - shard-rkl:          [SKIP][567] ([i915#2436]) -> [SKIP][568] ([i915#14544] / [i915#2436])
   [567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
   [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html

  * igt@perf_pmu@module-unload:
    - shard-tglu:         [ABORT][569] ([i915#13029] / [i915#15778]) -> [ABORT][570] ([i915#15778])
   [569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-tglu-3/igt@perf_pmu@module-unload.html
   [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-10/igt@perf_pmu@module-unload.html

  * igt@prime_vgem@basic-read:
    - shard-rkl:          [SKIP][571] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][572] ([i915#3291] / [i915#3708])
   [571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-6/igt@prime_vgem@basic-read.html
   [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/igt@prime_vgem@basic-read.html

  * igt@prime_vgem@fence-read-hang:
    - shard-rkl:          [SKIP][573] ([i915#3708]) -> [SKIP][574] ([i915#14544] / [i915#3708])
   [573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
   [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@prime_vgem@fence-read-hang.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each:
    - shard-rkl:          [SKIP][575] ([i915#9917]) -> [SKIP][576] ([i915#14544] / [i915#9917])
   [575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18447/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html
   [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html

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

  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
  [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
  [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
  [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
  [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#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
  [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#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365
  [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#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
  [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
  [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
  [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
  [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
  [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
  [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
  [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
  [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
  [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
  [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
  [i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944
  [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
  [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
  [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
  [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
  [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
  [i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
  [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
  [i915#16021]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16021
  [i915#16025]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16025
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
  [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
  [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
  [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#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
  [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
  [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [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#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
  [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#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#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#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
  [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_8899 -> IGTPW_15131
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_18447: 302d234f6c7a763bdf7ca8b1c40e02fa1efec5e4 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15131: 12d52f3bb14e763cb1d5ede418f1a57758a99e8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8899: 3e5747e536f148bf232049e49a00e2b683f91a83 @ 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_15131/index.html

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

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

* Re: ✗ i915.CI.Full: failure for tests/kms_hdr: Add visual HDR verification subtests
  2026-05-08 16:28 ` ✗ i915.CI.Full: " Patchwork
@ 2026-05-08 22:00   ` Alex Hung
  0 siblings, 0 replies; 9+ messages in thread
From: Alex Hung @ 2026-05-08 22:00 UTC (permalink / raw)
  To: igt-dev



On 5/8/26 10:28, Patchwork wrote:
> *Patch Details*
> *Series:*	tests/kms_hdr: Add visual HDR verification subtests
> *URL:*	https://patchwork.freedesktop.org/series/166166/ <https:// 
> patchwork.freedesktop.org/series/166166/>
> *State:*	failure
> *Details:*	https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/ 
> index.html <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/index.html>
> 
> 
>   CI Bug Log - changes from CI_DRM_18447_full -> IGTPW_15131_full
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with IGTPW_15131_full absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_15131_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_15131/ 
> 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_15131_full:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   *
> 
>     igt@kms_flip@flip-vs-dpms-on-nop@d-hdmi-a1:
> 
>       o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-tglu-4/igt@kms_flip@flip-vs-dpms-on-nop@d-
>         hdmi-a1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-tglu-7/igt@kms_flip@flip-vs-dpms-on-nop@d-
>         hdmi-a1.html>
>   *
> 
>     igt@kms_frontbuffer_tracking@fbchdr-suspend:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk8/
>         igt@kms_frontbuffer_tracking@fbchdr-suspend.html>
>   *
> 
>     {igt@kms_hdr@static-swap-smpte2084} (NEW):
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_hdr@static-swap-
>         smpte2084.html> +1 other test skip
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-17/igt@kms_hdr@static-swap-
>         smpte2084.html> +1 other test skip
>   *
> 
>     {igt@kms_hdr@static-swap-traditional-sdr} (NEW):
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_hdr@static-swap-
>         traditional-sdr.html> +1 other test skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_hdr@static-swap-
>         traditional-sdr.html> +1 other test skip
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_hdr@static-swap-traditional-
>         sdr.html>

Hi,

These are new subtests in kms_hdr and is it be safe to ignore the above 
regression?

> 
> 
>     New tests
> 
> New tests have been introduced between CI_DRM_18447_full and 
> IGTPW_15131_full:
> 
> 
>       New IGT tests (2)
> 
>   *
> 
>     igt@kms_hdr@static-swap-smpte2084:
> 
>       o Statuses : 1 pass(s) 6 skip(s)
>       o Exec time: [0.0, 0.32] s
>   *
> 
>     igt@kms_hdr@static-swap-traditional-sdr:
> 
>       o Statuses : 7 skip(s)
>       o Exec time: [0.0, 0.00] s
> 
> 
>     Known issues
> 
> Here are the changes found in IGTPW_15131_full that come from known issues:
> 
> 
>       IGT changes
> 
> 
>         Issues hit
> 
>   *
> 
>     igt@api_intel_bb@blit-reloc-purge-cache:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-
>         cache.html> (i915#8411 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/8411>)
>   *
> 
>     igt@api_intel_bb@crc32:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-8/igt@api_intel_bb@crc32.html>
>         (i915#6230 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/6230>)
>   *
> 
>     igt@device_reset@cold-reset-bound:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@device_reset@cold-reset-
>         bound.html> (i915#11078 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/11078>)
>   *
> 
>     igt@dmabuf@all-tests:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/igt@dmabuf@all-tests.html>
>         (i915#15931 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15931>)
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-8/igt@dmabuf@all-tests.html>
>         (i915#15931 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15931>)
>   *
> 
>     igt@drm_buddy@drm_buddy:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@drm_buddy@drm_buddy.html>
>         (i915#15678 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15678>)
>   *
> 
>     igt@gem_bad_reloc@negative-reloc-lut:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-
>         lut.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3281>) +8 other tests skip
>   *
> 
>     igt@gem_ccs@block-multicopy-compressed:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@gem_ccs@block-multicopy-
>         compressed.html> (i915#9323 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9323>)
>   *
> 
>     igt@gem_ccs@large-ctrl-surf-copy:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-
>         copy.html> (i915#13008 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/13008>)
>   *
> 
>     igt@gem_close_race@multigpu-basic-process:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/igt@gem_close_race@multigpu-basic-
>         process.html> (i915#7697 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/7697>)
>   *
> 
>     igt@gem_create@create-ext-cpu-access-sanity-check:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-3/igt@gem_create@create-ext-cpu-
>         access-sanity-check.html> (i915#6335 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>)
>   *
> 
>     igt@gem_ctx_freq@sysfs@gt0:
> 
>       o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html> ->
>         FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/
>         shard-dg2-1/igt@gem_ctx_freq@sysfs@gt0.html> (i915#9561
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561>)
>         +1 other test fail
>   *
> 
>     igt@gem_ctx_isolation@preservation-s3@rcs0:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk4/
>         igt@gem_ctx_isolation@preservation-s3@rcs0.html> (i915#13356
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
>         +1 other test incomplete
>   *
> 
>     igt@gem_ctx_persistence@legacy-engines-mixed-process:
> 
>       o shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-snb1/igt@gem_ctx_persistence@legacy-
>         engines-mixed-process.html> (i915#1099 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>) +1 other
>         test skip
>   *
> 
>     igt@gem_exec_balancer@bonded-true-hang:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-8/igt@gem_exec_balancer@bonded-true-
>         hang.html> (i915#4812 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/4812>)
>   *
> 
>     igt@gem_exec_balancer@parallel-bb-first:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-3/igt@gem_exec_balancer@parallel-bb-
>         first.html> (i915#4525 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/4525>)
>   *
> 
>     igt@gem_exec_balancer@parallel-keep-in-fence:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-5/igt@gem_exec_balancer@parallel-
>         keep-in-fence.html> (i915#4525 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/4525>)
>   *
> 
>     igt@gem_exec_big@single:
> 
>       o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-mtlp-2/igt@gem_exec_big@single.html> -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         mtlp-8/igt@gem_exec_big@single.html> (i915#15871 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871>)
>   *
> 
>     igt@gem_exec_capture@capture-recoverable:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@gem_exec_capture@capture-
>         recoverable.html> (i915#6344 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/6344>)
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@gem_exec_capture@capture-
>         recoverable.html> (i915#6344 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/6344>)
>   *
> 
>     igt@gem_exec_flush@basic-wb-ro-before-default:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-1/igt@gem_exec_flush@basic-wb-ro-
>         before-default.html> (i915#3539 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/3539> / i915#4852 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
>   *
> 
>     igt@gem_exec_reloc@basic-write-read-active:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/igt@gem_exec_reloc@basic-write-read-
>         active.html> (i915#3281 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3281>) +11 other tests skip
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-16/igt@gem_exec_reloc@basic-write-
>         read-active.html> (i915#3281 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/3281>) +2 other tests skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-2/igt@gem_exec_reloc@basic-write-
>         read-active.html> (i915#3281 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/3281>) +2 other tests skip
>   *
> 
>     igt@gem_exec_reloc@basic-write-wc-active:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-
>         active.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#3281 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +2 other
>         tests skip
>   *
> 
>     igt@gem_exec_suspend@basic-s3:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk2/igt@gem_exec_suspend@basic-
>         s3.html> (i915#13196 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/13196> / i915#13356 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) +1 other
>         test incomplete
>   *
> 
>     igt@gem_fence_thrash@bo-write-verify-threaded-none:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/igt@gem_fence_thrash@bo-write-
>         verify-threaded-none.html> (i915#4860 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
>   *
> 
>     igt@gem_lmem_evict@dontneed-evict-race:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-2/igt@gem_lmem_evict@dontneed-
>         evict-race.html> (i915#4613 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4613> / i915#7582 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>)
>   *
> 
>     igt@gem_lmem_swapping@heavy-verify-multi:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-6/igt@gem_lmem_swapping@heavy-
>         verify-multi.html> (i915#4613 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/4613>) +2 other tests skip
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-3/igt@gem_lmem_swapping@heavy-
>         verify-multi.html> (i915#4613 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/4613>)
>   *
> 
>     igt@gem_lmem_swapping@heavy-verify-random-ccs:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@gem_lmem_swapping@heavy-
>         verify-random-ccs.html> (i915#4613 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other
>         test skip
>   *
> 
>     igt@gem_lmem_swapping@parallel-random:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-3/igt@gem_lmem_swapping@parallel-
>         random.html> (i915#4613 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4613>) +2 other tests skip
>   *
> 
>     igt@gem_lmem_swapping@verify-ccs:
> 
>       o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-glk6/igt@gem_lmem_swapping@verify-
>         ccs.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/4613>) +7 other tests skip
>   *
> 
>     igt@gem_media_vme:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@gem_media_vme.html>
>         (i915#284 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/284>)
>   *
> 
>     igt@gem_mmap_gtt@basic-write-read:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-
>         read.html> (i915#4077 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/4077>) +5 other tests skip
>   *
> 
>     igt@gem_mmap_gtt@cpuset-medium-copy-xy:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-1/igt@gem_mmap_gtt@cpuset-medium-copy-
>         xy.html> (i915#4077 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/4077>) +9 other tests skip
>   *
> 
>     igt@gem_mmap_gtt@flink-race:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-17/igt@gem_mmap_gtt@flink-race.html>
>         (i915#4077 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/4077>) +2 other tests skip
>   *
> 
>     igt@gem_mmap_wc@read-write:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-6/igt@gem_mmap_wc@read-
>         write.html> (i915#4083 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/4083>) +3 other tests skip
>   *
> 
>     igt@gem_mmap_wc@read-write-distinct:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-16/igt@gem_mmap_wc@read-write-
>         distinct.html> (i915#4083 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4083>) +1 other test skip
>   *
> 
>     igt@gem_mmap_wc@write-read-distinct:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-7/igt@gem_mmap_wc@write-read-
>         distinct.html> (i915#4083 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4083>) +3 other tests skip
>   *
> 
>     igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/igt@gem_partial_pwrite_pread@writes-
>         after-reads-snoop.html> (i915#3282 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +6 other
>         tests skip
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-19/
>         igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html>
>         (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3282>) +1 other test skip
>   *
> 
>     igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-
>         after-reads-uncached.html> (i915#3282 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +6 other
>         tests skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-2/
>         igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html>
>         (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3282>) +3 other tests skip
>   *
> 
>     igt@gem_pread@exhaustion:
> 
>       o shard-glk: NOTRUN -> WARN <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-glk4/igt@gem_pread@exhaustion.html>
>         (i915#2658 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/2658>)
>       o shard-snb: NOTRUN -> WARN <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-snb4/igt@gem_pread@exhaustion.html>
>         (i915#2658 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/2658>)
>       o shard-tglu: NOTRUN -> WARN <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-6/igt@gem_pread@exhaustion.html>
>         (i915#2658 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/2658>)
>   *
> 
>     igt@gem_pwrite@basic-exhaustion:
> 
>       o shard-glk: NOTRUN -> WARN <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-glk5/igt@gem_pwrite@basic-exhaustion.html>
>         (i915#14702 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14702> / i915#2658 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/2658>)
>   *
> 
>     igt@gem_pxp@protected-raw-src-copy-not-readible:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-12/igt@gem_pxp@protected-raw-src-copy-
>         not-readible.html> (i915#4270 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/4270>)
>   *
> 
>     igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@gem_pxp@verify-pxp-execution-
>         after-suspend-resume.html> (i915#4270 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +4 other
>         tests skip
>   *
> 
>     igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-1/igt@gem_render_copy@y-tiled-mc-
>         ccs-to-vebox-yf-tiled.html> (i915#8428 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +2 other
>         tests skip
>   *
> 
>     igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@gem_render_copy@yf-tiled-to-
>         vebox-y-tiled.html> (i915#5190 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/5190> / i915#8428 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +5 other
>         tests skip
>   *
> 
>     igt@gem_set_tiling_vs_blt@tiled-to-tiled:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-
>         tiled.html> (i915#8411 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/8411>)
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-
>         tiled.html> (i915#4079 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/4079>)
>   *
> 
>     igt@gem_set_tiling_vs_blt@tiled-to-untiled:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@gem_set_tiling_vs_blt@tiled-to-
>         untiled.html> (i915#4079 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4079>) +1 other test skip
>   *
> 
>     igt@gem_set_tiling_vs_blt@untiled-to-tiled:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-
>         to-tiled.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#8411 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/
>         igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> (i915#4079
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
>         +1 other test skip
>   *
> 
>     igt@gem_softpin@evict-snoop:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/igt@gem_softpin@evict-snoop.html>
>         (i915#4885 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/4885>)
>   *
> 
>     igt@gem_tiled_partial_pwrite_pread@writes:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/
>         igt@gem_tiled_partial_pwrite_pread@writes.html> (i915#14544
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#3282 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3282>) +1 other test skip
>   *
> 
>     igt@gem_unfence_active_buffers:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-7/igt@gem_unfence_active_buffers.html>
>         (i915#4879 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/4879>)
>   *
> 
>     igt@gem_userptr_blits@dmabuf-sync:
> 
>       o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-glk9/igt@gem_userptr_blits@dmabuf-
>         sync.html> (i915#3323 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3323>)
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@gem_userptr_blits@dmabuf-
>         sync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3297> / i915#3323 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>)
>   *
> 
>     igt@gem_userptr_blits@dmabuf-unsync:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-5/igt@gem_userptr_blits@dmabuf-
>         unsync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3297>)
>   *
> 
>     igt@gem_userptr_blits@map-fixed-invalidate-overlap:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@gem_userptr_blits@map-fixed-
>         invalidate-overlap.html> (i915#3297 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> /
>         i915#4880 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/4880>)
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-19/igt@gem_userptr_blits@map-fixed-
>         invalidate-overlap.html> (i915#3297 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> /
>         i915#4880 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/4880>)
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/igt@gem_userptr_blits@map-
>         fixed-invalidate-overlap.html> (i915#3297 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
>   *
> 
>     igt@gem_userptr_blits@unsync-overlap:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-8/igt@gem_userptr_blits@unsync-
>         overlap.html> (i915#3297 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3297>) +1 other test skip
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-8/igt@gem_userptr_blits@unsync-
>         overlap.html> (i915#3297 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3297>)
>   *
> 
>     igt@gem_userptr_blits@unsync-unmap:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@gem_userptr_blits@unsync-
>         unmap.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3297>)
>   *
> 
>     igt@gen3_render_linear_blits:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@gen3_render_linear_blits.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544>) +3 other tests skip
>   *
> 
>     igt@gen7_exec_parse@basic-offset:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@gen7_exec_parse@basic-
>         offset.html> +11 other tests skip
>   *
> 
>     igt@gen9_exec_parse@allowed-single:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@gen9_exec_parse@allowed-
>         single.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#2527 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other
>         test skip
>   *
> 
>     igt@gen9_exec_parse@batch-zero-length:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-1/igt@gen9_exec_parse@batch-zero-
>         length.html> (i915#2856 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/2856>) +2 other tests skip
>   *
> 
>     igt@gen9_exec_parse@bb-start-cmd:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@gen9_exec_parse@bb-start-
>         cmd.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/2527> / i915#2856 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
>   *
> 
>     igt@gen9_exec_parse@bb-start-far:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-8/igt@gen9_exec_parse@bb-start-
>         far.html> (i915#2856 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/2856>) +5 other tests skip
>   *
> 
>     igt@gen9_exec_parse@bb-start-out:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-14/igt@gen9_exec_parse@bb-start-
>         out.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/2527>) +1 other test skip
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-7/igt@gen9_exec_parse@bb-start-
>         out.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/2527> / i915#2856 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +1 other
>         test skip
>   *
> 
>     igt@gen9_exec_parse@valid-registers:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@gen9_exec_parse@valid-
>         registers.html> (i915#2527 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/2527>) +5 other tests skip
>   *
> 
>     igt@i915_drm_fdinfo@busy-hang@vcs0:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@i915_drm_fdinfo@busy-
>         hang@vcs0.html> (i915#14073 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14073>) +7 other tests skip
>   *
> 
>     igt@i915_drm_fdinfo@virtual-busy-idle:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-
>         idle.html> (i915#14118 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14118>) +1 other test skip
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-
>         idle.html> (i915#14118 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14118>)
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-5/igt@i915_drm_fdinfo@virtual-
>         busy-idle.html> (i915#14118 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14118>)
>   *
> 
>     igt@i915_module_load@fault-injection@__uc_init:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-3/igt@i915_module_load@fault-
>         injection@__uc_init.html> (i915#15479 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479>) +4 other
>         tests skip
>   *
> 
>     igt@i915_module_load@fault-injection@intel_connector_register:
> 
>       o shard-rkl: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-rkl-3/igt@i915_module_load@fault-
>         injection@intel_connector_register.html> (i915#15342 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342>) +1 other
>         test abort
>   *
> 
>     igt@i915_module_load@reload-no-display:
> 
>       o shard-dg2: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-dg2-4/
>         igt@i915_module_load@reload-no-display.html> (i915#13029
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/13029> / i915#14545 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14545>)
>   *
> 
>     igt@i915_module_load@resize-bar:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@i915_module_load@resize-
>         bar.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14544> / i915#6412 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>)
>   *
> 
>     igt@i915_pm_freq_api@freq-reset-multiple:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@i915_pm_freq_api@freq-
>         reset-multiple.html> (i915#8399 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/8399>) +1 other test skip
>   *
> 
>     igt@i915_pm_freq_api@freq-suspend:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@i915_pm_freq_api@freq-
>         suspend.html> (i915#8399 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/8399>)
>   *
> 
>     igt@i915_pm_rc6_residency@rc6-idle:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-
>         idle.html> (i915#14498 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14498>)
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-
>         idle.html> (i915#14498 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14498> / i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
>   *
> 
>     igt@i915_pm_rpm@system-suspend-execbuf:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk8/igt@i915_pm_rpm@system-
>         suspend-execbuf.html> (i915#13356 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356> /
>         i915#15172 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15172>)
>   *
> 
>     igt@i915_pm_rps@min-max-config-idle:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/igt@i915_pm_rps@min-max-config-
>         idle.html> (i915#11681 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/11681> / i915#6621 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) +1 other
>         test skip
>   *
> 
>     igt@i915_pm_rps@min-max-config-loaded:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-8/igt@i915_pm_rps@min-max-config-
>         loaded.html> (i915#11681 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/11681> / i915#6621 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>)
>   *
> 
>     igt@i915_suspend@forcewake:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk5/
>         igt@i915_suspend@forcewake.html> (i915#4817 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>)
>   *
> 
>     igt@intel_hwmon@hwmon-write:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@intel_hwmon@hwmon-
>         write.html> (i915#7707 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/7707>)
>   *
> 
>     igt@kms_addfb_basic@basic-x-tiled-legacy:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_addfb_basic@basic-x-tiled-
>         legacy.html> (i915#4212 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4212>) +1 other test skip
>   *
> 
>     igt@kms_async_flips@async-flip-suspend-resume:
> 
>       o shard-glk11: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk11/igt@kms_async_flips@async-
>         flip-suspend-resume.html> (i915#12761 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761>) +1 other
>         test incomplete
>   *
> 
>     igt@kms_atomic@plane-primary-overlay-mutable-zpos:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_atomic@plane-primary-
>         overlay-mutable-zpos.html> (i915#9531 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>)
>   *
> 
>     igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-6/
>         igt@kms_atomic_transition@plane-all-modeset-transition-
>         fencing.html> (i915#1769 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/1769> / i915#3555 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
>   *
> 
>     igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
> 
>       o shard-glk10: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-glk10/igt@kms_atomic_transition@plane-
>         all-modeset-transition-internal-panels.html> (i915#1769
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>)
>   *
> 
>     igt@kms_big_fb@4-tiled-64bpp-rotate-180:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-16/igt@kms_big_fb@4-tiled-64bpp-
>         rotate-180.html> (i915#4538 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4538> / i915#5286 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +1 other
>         test skip
>   *
> 
>     igt@kms_big_fb@4-tiled-addfb:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#5286 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/5286>)
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb.html>
>         (i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/5286>)
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-8/igt@kms_big_fb@4-tiled-
>         addfb.html> (i915#5286 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/5286>) +4 other tests skip
>   *
> 
>     igt@kms_big_fb@4-tiled-addfb-size-overflow:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb-size-
>         overflow.html> (i915#5286 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/5286>) +5 other tests skip
>   *
> 
>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-
>         stride-64bpp-rotate-180-async-flip.html> (i915#5286 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +4 other
>         tests skip
>   *
> 
>     igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_big_fb@linear-max-hw-
>         stride-64bpp-rotate-0-hflip.html> (i915#3828 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_big_fb@linear-max-hw-
>         stride-64bpp-rotate-0-hflip.html> (i915#3828 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
>   *
> 
>     igt@kms_big_fb@y-tiled-64bpp-rotate-90:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-
>         rotate-90.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#3638 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
>   *
> 
>     igt@kms_big_fb@y-tiled-8bpp-rotate-270:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-8/igt@kms_big_fb@y-tiled-8bpp-
>         rotate-270.html> (i915#4538 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4538> / i915#5190 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +11 other
>         tests skip
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-8/igt@kms_big_fb@y-tiled-8bpp-
>         rotate-270.html> (i915#3638 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3638>) +1 other test skip
>   *
> 
>     igt@kms_big_fb@yf-tiled-addfb:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/igt@kms_big_fb@yf-tiled-
>         addfb.html> (i915#6187 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/6187>)
>   *
> 
>     igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-
>         stride-32bpp-rotate-180-hflip-async-flip.html> (i915#4538
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>)
>         +1 other test skip
>   *
> 
>     igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-
>         mtl-mc-ccs@pipe-a-hdmi-a-4.html> (i915#6095 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +176
>         other tests skip
>   *
> 
>     igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-
>         dg2-rc-ccs@pipe-c-hdmi-a-1.html> (i915#14098 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> /
>         i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/6095>) +43 other tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-
>         tiled-bmg-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/12313>) +2 other tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-
>         y-tiled-ccs@pipe-d-edp-1.html> (i915#6095 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +34 other
>         tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-hdmi-a-1:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-6/igt@kms_ccs@crc-primary-basic-
>         y-tiled-ccs@pipe-d-hdmi-a-1.html> (i915#6095 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +39 other
>         tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
> 
>       o shard-glk11: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-glk11/igt@kms_ccs@crc-primary-basic-y-
>         tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html> +40 other tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-
>         tiled-bmg-ccs.html> (i915#12805 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/12805>)
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-
>         tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/6095>) +10 other tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-
>         tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html> (i915#14098 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> /
>         i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#6095 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/6095>) +5 other tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-6/igt@kms_ccs@crc-primary-
>         suspend-4-tiled-lnl-ccs.html> (i915#12805 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>)
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-7/igt@kms_ccs@crc-primary-
>         suspend-4-tiled-lnl-ccs.html> (i915#12805 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>)
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk9/igt@kms_ccs@crc-primary-
>         suspend-y-tiled-ccs.html> (i915#15582 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582>) +2 other
>         tests incomplete
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-
>         tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html> (i915#6095 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +8 other
>         tests skip
>   *
> 
>     igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-
>         basic-4-tiled-bmg-ccs.html> (i915#12313 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other
>         test skip
>   *
> 
>     igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-
>         basic-4-tiled-lnl-ccs.html> (i915#12313 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other
>         test skip
>   *
> 
>     igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-
>         basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html> (i915#10307
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/10307> / i915#6095 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/6095>) +103 other tests skip
>   *
> 
>     igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-
>     hdmi-a-2:
> 
>       o shard-glk10: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-glk10/igt@kms_ccs@crc-sprite-planes-
>         basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html> +102 other
>         tests skip
>   *
> 
>     igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-
>         mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#6095 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +64 other
>         tests skip
>   *
> 
>     igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_ccs@random-ccs-data-y-
>         tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html> (i915#6095 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +34 other
>         tests skip
>   *
> 
>     igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-
>         tiled-ccs@pipe-d-hdmi-a-1.html> (i915#10307 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> /
>         i915#10434 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/10434> / i915#6095 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/6095>) +4 other tests skip
>   *
> 
>     igt@kms_cdclk@mode-transition-all-outputs:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_cdclk@mode-transition-
>         all-outputs.html> (i915#3742 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/3742>)
>   *
> 
>     igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-
>         d-hdmi-a-3.html> (i915#13781 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/13781>) +3 other tests skip
>   *
> 
>     igt@kms_chamelium_audio@hdmi-audio-edid:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-2/igt@kms_chamelium_audio@hdmi-
>         audio-edid.html> (i915#11151 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/11151> / i915#7828 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +4 other
>         tests skip
>   *
> 
>     igt@kms_chamelium_edid@hdmi-edid-read:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-
>         read.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/11151> / i915#7828 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +9 other
>         tests skip
>   *
> 
>     igt@kms_chamelium_frames@dp-crc-fast:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_chamelium_frames@dp-crc-
>         fast.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/11151> / i915#7828 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +11 other
>         tests skip
>   *
> 
>     igt@kms_chamelium_hpd@common-hpd-after-suspend:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_chamelium_hpd@common-
>         hpd-after-suspend.html> (i915#11151 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> /
>         i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/7828>) +2 other tests skip
>   *
> 
>     igt@kms_chamelium_hpd@dp-hpd-after-suspend:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-after-
>         suspend.html> (i915#11151 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/11151> / i915#7828 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +1 other
>         test skip
>   *
> 
>     igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-
>         enable-disable-mode.html> (i915#11151 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> /
>         i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/7828>) +4 other tests skip
>   *
> 
>     igt@kms_color@deep-color:
> 
>       o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_color@deep-color.html> -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-5/igt@kms_color@deep-color.html> (i915#12655 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> /
>         i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3555>)
>   *
> 
>     igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_content_protection@dp-mst-
>         lic-type-0-hdcp14.html> (i915#15330 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>)
>   *
> 
>     igt@kms_content_protection@dp-mst-lic-type-1:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-7/igt@kms_content_protection@dp-
>         mst-lic-type-1.html> (i915#15330 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> /
>         i915#3116 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3116> / i915#3299 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3299>)
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-2/igt@kms_content_protection@dp-
>         mst-lic-type-1.html> (i915#15330 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> /
>         i915#3299 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3299>)
>   *
> 
>     igt@kms_content_protection@dp-mst-type-0-hdcp14:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-5/igt@kms_content_protection@dp-
>         mst-type-0-hdcp14.html> (i915#15330 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>)
>   *
> 
>     igt@kms_content_protection@dp-mst-type-0-suspend-resume:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_content_protection@dp-mst-
>         type-0-suspend-resume.html> (i915#15330 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>)
>   *
> 
>     igt@kms_content_protection@lic-type-0:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@kms_content_protection@lic-
>         type-0.html> (i915#15865 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15865>)
>   *
> 
>     igt@kms_content_protection@lic-type-1:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-7/igt@kms_content_protection@lic-
>         type-1.html> (i915#15865 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15865>) +1 other test skip
>   *
> 
>     igt@kms_content_protection@mei-interface:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_content_protection@mei-
>         interface.html> (i915#15865 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15865>) +2 other tests skip
>   *
> 
>     igt@kms_cursor_crc@cursor-offscreen-32x10:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_cursor_crc@cursor-
>         offscreen-32x10.html> (i915#3555 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other
>         tests skip
>   *
> 
>     igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
> 
>       o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_cursor_crc@cursor-
>         onscreen-256x85@pipe-a-hdmi-a-2.html> (i915#13566 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +1 other
>         test fail
>   *
> 
>     igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
> 
>       o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-tglu-4/igt@kms_cursor_crc@cursor-
>         random-128x42@pipe-a-hdmi-a-1.html> -> FAIL <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-3/
>         igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html>
>         (i915#13566 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/13566>) +1 other test fail
>   *
> 
>     igt@kms_cursor_crc@cursor-rapid-movement-32x10:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-
>         movement-32x10.html> (i915#3555 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/3555>) +2 other tests skip
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-6/igt@kms_cursor_crc@cursor-
>         rapid-movement-32x10.html> (i915#3555 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other
>         tests skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/igt@kms_cursor_crc@cursor-
>         rapid-movement-32x10.html> (i915#3555 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> /
>         i915#8814 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/8814>) +1 other test skip
>   *
> 
>     igt@kms_cursor_crc@cursor-rapid-movement-512x170:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-
>         movement-512x170.html> (i915#13049 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other
>         test skip
>   *
> 
>     igt@kms_cursor_crc@cursor-rapid-movement-512x512:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-7/igt@kms_cursor_crc@cursor-
>         rapid-movement-512x512.html> (i915#13049 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-8/igt@kms_cursor_crc@cursor-
>         rapid-movement-512x512.html> (i915#13049 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-
>         movement-512x512.html> (i915#13049 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-
>         movement-512x512.html> (i915#13049 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
>   *
> 
>     igt@kms_cursor_crc@cursor-sliding-256x85:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_cursor_crc@cursor-
>         sliding-256x85.html> (i915#8814 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/8814>)
>   *
> 
>     igt@kms_cursor_crc@cursor-sliding-32x10:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/igt@kms_cursor_crc@cursor-
>         sliding-32x10.html> (i915#3555 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/3555>) +3 other tests skip
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-19/igt@kms_cursor_crc@cursor-
>         sliding-32x10.html> (i915#3555 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/3555>)
>   *
> 
>     igt@kms_cursor_crc@cursor-sliding-512x512:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_cursor_crc@cursor-
>         sliding-512x512.html> (i915#13049 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
>   *
> 
>     igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2:
> 
>       o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-1/igt@kms_cursor_crc@cursor-
>         sliding-64x21@pipe-a-hdmi-a-2.html> -> FAIL <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/
>         igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html>
>         (i915#13566 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/13566>) +1 other test fail
>   *
> 
>     igt@kms_cursor_crc@cursor-suspend:
> 
>       o shard-glk10: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk10/igt@kms_cursor_crc@cursor-
>         suspend.html> (i915#12358 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/12358> / i915#14152 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152> /
>         i915#7882 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/7882>)
>   *
> 
>     igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
> 
>       o shard-glk10: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk10/igt@kms_cursor_crc@cursor-
>         suspend@pipe-a-hdmi-a-1.html> (i915#12358 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358> /
>         i915#14152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14152>)
>   *
> 
>     igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-
>         flip-before-cursor-varying-size.html> (i915#4103 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> /
>         i915#4213 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/4213>) +1 other test skip
>   *
> 
>     igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-
>         flipa-atomic-transitions.html> (i915#13046 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> /
>         i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/5354>) +3 other tests skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-
>         vs-flipa-atomic-transitions.html> (i915#9809 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809>) +2 other
>         tests skip
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> 
>       o shard-glk: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-
>         atomic-transitions.html> (i915#15804 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804>) +1 other
>         test fail
>   *
> 
>     igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_cursor_legacy@modeset-
>         atomic-cursor-hotspot.html> (i915#9067 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>)
>   *
> 
>     igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-9/igt@kms_cursor_legacy@short-
>         busy-flip-before-cursor-toggle.html> (i915#4103 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
>   *
> 
>     igt@kms_cursor_legacy@single-move:
> 
>       o shard-dg1: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg1-14/igt@kms_cursor_legacy@single-
>         move.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-12/igt@kms_cursor_legacy@single-
>         move.html> (i915#4423 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/4423>) +1 other test dmesg-warn
>   *
> 
>     igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-
>         ioctl.html> (i915#9833 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9833>)
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-
>         ioctl.html> (i915#9723 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9723>)
>   *
> 
>     igt@kms_dp_link_training@uhbr-mst:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-2/igt@kms_dp_link_training@uhbr-
>         mst.html> (i915#13748 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/13748>)
>   *
> 
>     igt@kms_dp_linktrain_fallback@dp-fallback:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/igt@kms_dp_linktrain_fallback@dp-
>         fallback.html> (i915#13707 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/13707>)
>   *
> 
>     igt@kms_dsc@dsc-fractional-bpp:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-7/igt@kms_dsc@dsc-fractional-
>         bpp.html> (i915#3840 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3840>) +1 other test skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-2/igt@kms_dsc@dsc-fractional-
>         bpp.html> (i915#3840 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3840> / i915#9688 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>)
>   *
> 
>     igt@kms_dsc@dsc-fractional-bpp-with-bpc:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp-with-
>         bpc.html> (i915#3840 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3840>)
>   *
> 
>     igt@kms_dsc@dsc-with-formats:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_dsc@dsc-with-formats.html>
>         (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3555> / i915#3840 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3840>)
>   *
> 
>     igt@kms_dsc@dsc-with-output-formats-with-bpc:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-
>         with-bpc.html> (i915#3840 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3840> / i915#9053 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>)
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-
>         with-bpc.html> (i915#3840 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3840> / i915#9053 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>)
>   *
> 
>     igt@kms_fbcon_fbt@psr:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-3/igt@kms_fbcon_fbt@psr.html>
>         (i915#3955 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3955>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-dpms-on-nop:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-
>         on-nop.html> (i915#9934 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9934>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
> 
>       o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-
>         interruptible@ab-hdmi-a1-hdmi-a2.html> -> FAIL <https://intel-
>         gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk9/
>         igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-
>         hdmi-a2.html> (i915#13027 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/13027>) +1 other test fail
>   *
> 
>     igt@kms_flip@2x-flip-vs-suspend:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk8/igt@kms_flip@2x-flip-vs-
>         suspend.html> (i915#12314 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/12314> / i915#12745 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> /
>         i915#4839 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/4839>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk8/igt@kms_flip@2x-flip-vs-
>         suspend@ac-hdmi-a1-hdmi-a2.html> (i915#12314 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314> /
>         i915#12745 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/12745>)
>   *
> 
>     igt@kms_flip@2x-nonexisting-fb-interruptible:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb-
>         interruptible.html> (i915#3637 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/3637> / i915#9934 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other
>         tests skip
>   *
> 
>     igt@kms_flip@2x-wf_vblank-ts-check:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_flip@2x-wf_vblank-ts-
>         check.html> (i915#9934 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9934>) +6 other tests skip
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_flip@2x-wf_vblank-ts-
>         check.html> (i915#9934 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9934>) +5 other tests skip
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-
>         check.html> (i915#3637 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3637> / i915#9934 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other
>         tests skip
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-18/igt@kms_flip@2x-wf_vblank-ts-
>         check.html> (i915#9934 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9934>) +2 other tests skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_flip@2x-wf_vblank-ts-
>         check.html> (i915#3637 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3637> / i915#9934 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other
>         tests skip
>   *
> 
>     igt@kms_flip@flip-vs-dpms-on-nop:
> 
>       o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-tglu-4/igt@kms_flip@flip-vs-dpms-on-nop.html>
>         -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/
>         shard-tglu-7/igt@kms_flip@flip-vs-dpms-on-nop.html> (i915#10826
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826>)
>   *
> 
>     igt@kms_flip@flip-vs-fences-interruptible:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_flip@flip-vs-fences-
>         interruptible.html> (i915#8381 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/8381>) +1 other test skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-
>     upscaling:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-8/
>         igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-
>         upscaling.html> (i915#15643 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15643>) +2 other tests skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/
>         igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-
>         downscaling.html> (i915#15643 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/15643>) +2 other tests skip
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-
>         yftile-to-64bpp-yftile-downscaling.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15643>)
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-2/
>         igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-
>         downscaling.html> (i915#15643 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/15643>) +3 other tests skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-
>     upscaling:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/
>         igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-
>         upscaling.html> (i915#15643 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15643>) +2 other tests skip
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-19/
>         igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-
>         upscaling.html> (i915#15643 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15643>) +2 other tests skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-
>     downscaling@pipe-a-default-mode:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/
>         igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-
>         downscaling@pipe-a-default-mode.html> (i915#3555 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> /
>         i915#8810 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/8810> / i915#8813 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/8813>) +1 other test skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-
>         ytile-to-32bpp-ytile-downscaling.html> (i915#15643 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643> /
>         i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/5190>) +1 other test skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-
>     upscaling:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-
>         ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (i915#15643
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>)
>         +2 other tests skip
>   *
> 
>     igt@kms_force_connector_basic@prune-stale-modes:
> 
>       o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-mtlp-5/igt@kms_force_connector_basic@prune-
>         stale-modes.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-mtlp-1/
>         igt@kms_force_connector_basic@prune-stale-modes.html>
>         (i915#15672 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15672>) +1 other test skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-
>         primscrn-cur-indfb-draw-blt.html> (i915#15991 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991> /
>         i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/5354>) +29 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-
>         primscrn-cur-indfb-draw-mmap-wc.html> (i915#15990 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990> /
>         i915#8708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/8708>) +14 other tests skip
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-15/
>         igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-
>         mmap-wc.html> (i915#15990 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15990> / i915#8708 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +3 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-
>         primscrn-cur-indfb-draw-render.html> (i915#1825 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +34 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-8/
>         igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-
>         blt.html> (i915#15991 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15991> / i915#1825 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +14 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/
>         igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-
>         mmap-cpu.html> +75 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/
>         igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-
>         blt.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15989>) +12 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-3/
>         igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-
>         pwrite.html> (i915#15989 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15989>) +22 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-fullscreen:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-2/
>         igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-
>         fullscreen.html> (i915#15989 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/15989>) +25 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-mmap-gtt:
> 
>       o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-
>         primscrn-pri-indfb-draw-mmap-gtt.html> -> SKIP <https://intel-
>         gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk6/
>         igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-
>         mmap-gtt.html> +9 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-gtt:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/
>         igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-
>         mmap-gtt.html> (i915#15990 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15990>) +24 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-10/
>         igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-
>         blt.html> +60 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-
>         rgb565-draw-mmap-cpu.html> (i915#15989 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) +21
>         other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/
>         igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html> (i915#5439
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
>         +1 other test skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-
>     mmap-gtt:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-8/
>         igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-
>         mmap-gtt.html> (i915#15104 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15104> / i915#15990 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>)
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/
>         igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-
>         blt.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15102>) +18 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/
>         igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-
>         move.html> (i915#10433 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/10433> / i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> /
>         i915#3458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3458>)
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/
>         igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-
>         mmap-cpu.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#1825 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +6 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/
>         igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-
>         mmap-gtt.html> (i915#15990 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15990> / i915#8708 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +2 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-
>     mmap-cpu:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/
>         igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-
>         draw-mmap-cpu.html> (i915#14544 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/14544> / i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +2 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-
>     render:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-13/
>         igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-
>         draw-render.html> (i915#15102 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/15102>) +8 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/
>         igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-
>         move.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15102>) +32 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-
>     mmap-cpu:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-2/
>         igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-
>         draw-mmap-cpu.html> (i915#15102 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/15102>) +22 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-2/
>         igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-
>         blt.html> +58 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-gtt:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-2/
>         igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-
>         gtt.html> (i915#15990 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15990>) +5 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-14/
>         igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-
>         blt.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15989>) +5 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
> 
>       o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-
>         primscrn-cur-indfb-draw-blt.html> -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/
>         igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-
>         blt.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15989>) +10 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-
>         rgb101010-draw-pwrite.html> (i915#15989 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) +17
>         other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-
>         primscrn-pri-shrfb-draw-render.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15102> / i915#3023 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3023>) +1 other test skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-
>         primscrn-spr-indfb-draw-blt.html> (i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> /
>         i915#3458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3458>) +15 other tests skip
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-19/
>         igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-
>         blt.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15102> / i915#3458 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +3 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
> 
>       o shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-
>         primscrn-pri-shrfb-draw-mmap-cpu.html> +146 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-
>         rgb565-draw-render.html> (i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> /
>         i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3023>) +19 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-12/
>         igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-
>         mmap-gtt.html> (i915#15990 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15990>) +5 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-cpu:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-8/
>         igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-
>         mmap-cpu.html> (i915#15991 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15991>) +18 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-msflip-blt:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/
>         igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-msflip-
>         blt.html> (i915#15991 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15991>) +38 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psrhdr-2p-rte:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-12/
>         igt@kms_frontbuffer_tracking@psrhdr-2p-rte.html> +21 other tests
>         skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-blt:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-4/
>         igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-blt.html>
>         (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15102>) +38 other tests skip
>   *
> 
>     igt@kms_hdr@bpc-switch:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_hdr@bpc-switch.html>
>         (i915#16012 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/16012> / i915#3555 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3555> / i915#8228 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_hdr@bpc-switch.html>
>         (i915#16012 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/16012> / i915#3555 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3555> / i915#8228 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
>   *
> 
>     igt@kms_hdr@bpc-switch-suspend:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_hdr@bpc-switch-
>         suspend.html> (i915#16012 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/16012> / i915#3555 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> /
>         i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/8228>)
>   *
> 
>     igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_hdr@bpc-switch-
>         suspend@pipe-a-hdmi-a-1-xrgb2101010.html> (i915#16012 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>) +1 other
>         test skip
>   *
> 
>     igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-19/igt@kms_hdr@bpc-switch-
>         suspend@pipe-a-hdmi-a-4-xrgb2101010.html> (i915#16012 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>) +3 other
>         tests skip
>   *
> 
>     igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_hdr@bpc-switch@pipe-a-
>         hdmi-a-1-xrgb2101010.html> (i915#16012 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>) +1 other
>         test skip
>   *
> 
>     igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-2-xrgb16161616f:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_hdr@bpc-switch@pipe-a-hdmi-
>         a-2-xrgb16161616f.html> (i915#16012 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>) +1 other
>         test skip
>   *
> 
>     igt@kms_hdr@invalid-metadata-sizes:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-8/igt@kms_hdr@invalid-metadata-
>         sizes.html> (i915#16011 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/16011> / i915#3555 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> /
>         i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/8228>) +1 other test skip
>   *
> 
>     igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-14/igt@kms_hdr@invalid-metadata-
>         sizes@pipe-a-hdmi-a-1-xrgb16161616f.html> (i915#16011 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>) +7 other
>         tests skip
>   *
> 
>     igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb16161616f:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_hdr@static-toggle-dpms@pipe-
>         a-hdmi-a-3-xrgb16161616f.html> (i915#16011 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>) +7 other
>         tests skip
>   *
> 
>     igt@kms_hdr@static-toggle@pipe-a-hdmi-a-2-xrgb2101010:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@kms_hdr@static-toggle@pipe-a-
>         hdmi-a-2-xrgb2101010.html> (i915#16011 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>) +3 other
>         tests skip
>   *
> 
>     igt@kms_joiner@basic-big-joiner:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-7/igt@kms_joiner@basic-big-
>         joiner.html> (i915#15460 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15460>)
>   *
> 
>     igt@kms_joiner@basic-force-big-joiner:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_joiner@basic-force-big-
>         joiner.html> (i915#15459 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15459>)
>   *
> 
>     igt@kms_joiner@basic-force-ultra-joiner:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-1/igt@kms_joiner@basic-force-ultra-
>         joiner.html> (i915#15458 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15458>)
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_joiner@basic-force-
>         ultra-joiner.html> (i915#15458 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/15458>)
>   *
> 
>     igt@kms_joiner@basic-max-non-joiner:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_joiner@basic-max-non-
>         joiner.html> (i915#13688 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/13688>)
>   *
> 
>     igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-1/igt@kms_joiner@switch-modeset-ultra-
>         joiner-big-joiner.html> (i915#15638 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638> /
>         i915#15722 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15722>)
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@kms_joiner@switch-modeset-ultra-
>         joiner-big-joiner.html> (i915#15638 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638> /
>         i915#15722 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15722>)
>   *
> 
>     igt@kms_panel_fitting@atomic-fastset:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_panel_fitting@atomic-
>         fastset.html> (i915#6301 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/6301>)
>   *
> 
>     igt@kms_panel_fitting@legacy:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/
>         igt@kms_panel_fitting@legacy.html> (i915#6301 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
>   *
> 
>     igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-8/igt@kms_pipe_b_c_ivb@pipe-b-
>         double-modeset-then-modeset-pipe-c.html> +11 other tests skip
>   *
> 
>     igt@kms_pipe_crc_basic@suspend-read-crc:
> 
>       o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-
>         crc.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-
>         crc.html> (i915#12756 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/12756> / i915#13476 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476>)
>   *
> 
>     igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
> 
>       o shard-rkl: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-rkl-6/
>         igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html>
>         (i915#13476 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/13476>)
>   *
> 
>     igt@kms_pipe_stress@stress-xrgb8888-yftiled:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-
>         yftiled.html> (i915#14712 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14712>)
>   *
> 
>     igt@kms_pipe_stress@stress-xrgb8888-ytiled:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_pipe_stress@stress-xrgb8888-
>         ytiled.html> (i915#13705 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/13705>)
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_pipe_stress@stress-
>         xrgb8888-ytiled.html> (i915#13705 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705>)
>   *
> 
>     igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_plane@pixel-format-4-
>         tiled-dg2-mc-ccs-modifier.html> (i915#15709 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) +1 other
>         test skip
>   *
> 
>     igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-
>         mtl-mc-ccs-modifier.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#15709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15709>)
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-
>         mtl-mc-ccs-modifier.html> (i915#15709 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) +1 other
>         test skip
>   *
> 
>     igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-4/igt@kms_plane@pixel-format-4-
>         tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html> (i915#15608
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>)
>         +1 other test skip
>   *
> 
>     igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-
>         gen12-mc-ccs-modifier.html> (i915#15709 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) +4 other
>         tests skip
>   *
> 
>     igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-4/igt@kms_plane@pixel-format-y-
>         tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html> (i915#15608
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>)
>         +1 other test skip
>   *
> 
>     igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-6/igt@kms_plane@pixel-format-yf-
>         tiled-modifier-source-clamping.html> (i915#15709 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) +1 other
>         test skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-7/igt@kms_plane@pixel-format-yf-
>         tiled-modifier-source-clamping.html> (i915#15709 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) +2 other
>         tests skip
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-
>         modifier-source-clamping.html> (i915#15709 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>)
>   *
> 
>     igt@kms_plane_alpha_blend@alpha-transparent-fb:
> 
>       o shard-glk: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-glk6/igt@kms_plane_alpha_blend@alpha-
>         transparent-fb.html> (i915#10647 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647> /
>         i915#12177 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/12177>)
>   *
> 
>     igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
> 
>       o shard-glk: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-glk6/igt@kms_plane_alpha_blend@alpha-
>         transparent-fb@pipe-a-hdmi-a-1.html> (i915#10647 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>) +1 other
>         test fail
>   *
> 
>     igt@kms_plane_multiple@2x-tiling-4:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-8/igt@kms_plane_multiple@2x-
>         tiling-4.html> (i915#13958 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/13958>)
>   *
> 
>     igt@kms_plane_multiple@2x-tiling-none:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-6/igt@kms_plane_multiple@2x-
>         tiling-none.html> (i915#13958 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/13958>)
>   *
> 
>     igt@kms_plane_multiple@2x-tiling-x:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_plane_multiple@2x-
>         tiling-x.html> (i915#13958 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/13958>)
>   *
> 
>     igt@kms_plane_multiple@2x-tiling-y:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-8/igt@kms_plane_multiple@2x-tiling-
>         y.html> (i915#13958 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/13958>) +1 other test skip
>   *
> 
>     igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_plane_scaling@plane-
>         upscale-20x20-with-rotation@pipe-a.html> (i915#15329 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) +3 other
>         tests skip
>   *
> 
>     igt@kms_pm_backlight@bad-brightness:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_pm_backlight@bad-
>         brightness.html> (i915#9812 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9812>)
>   *
> 
>     igt@kms_pm_backlight@brightness-with-dpms:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@kms_pm_backlight@brightness-
>         with-dpms.html> (i915#12343 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/12343>)
>   *
> 
>     igt@kms_pm_backlight@fade-with-dpms:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_pm_backlight@fade-with-
>         dpms.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14544> / i915#5354 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-8/igt@kms_pm_backlight@fade-with-
>         dpms.html> (i915#9812 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9812>)
>   *
> 
>     igt@kms_pm_dc@dc3co-vpb-simulation:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_pm_dc@dc3co-vpb-
>         simulation.html> (i915#15948 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/15948>)
>   *
> 
>     igt@kms_pm_lpsp@kms-lpsp:
> 
>       o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html> -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         dg2-7/igt@kms_pm_lpsp@kms-lpsp.html> (i915#9340 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>)
>   *
> 
>     igt@kms_pm_lpsp@screens-disabled:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_pm_lpsp@screens-
>         disabled.html> (i915#8430 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/8430>)
>   *
> 
>     igt@kms_pm_rpm@modeset-lpsp-stress:
> 
>       o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-
>         stress.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html>
>         (i915#15073 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15073>) +1 other test skip
>       o shard-dg1: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-
>         stress.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-
>         stress.html> (i915#15073 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15073>)
>   *
> 
>     igt@kms_pm_rpm@modeset-non-lpsp:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-2/igt@kms_pm_rpm@modeset-non-
>         lpsp.html> (i915#15073 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15073>)
>   *
> 
>     igt@kms_pm_rpm@package-g7:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-9/igt@kms_pm_rpm@package-g7.html>
>         (i915#15403 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15403>)
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_pm_rpm@package-g7.html>
>         (i915#15403 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15403>)
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-2/igt@kms_pm_rpm@package-g7.html>
>         (i915#15403 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15403>)
>   *
> 
>     igt@kms_prime@basic-modeset-hybrid:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_prime@basic-modeset-
>         hybrid.html> (i915#6524 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/6524>)
>   *
> 
>     igt@kms_prime@d3hot:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_prime@d3hot.html> (i915#6524
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> /
>         i915#6805 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/6805>)
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_prime@d3hot.html> (i915#6524
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
>   *
> 
>     igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-cursor-
>         plane-move-continuous-exceed-fully-sf.html> (i915#11520
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
>         +3 other tests skip
>   *
> 
>     igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-
>         plane-move-continuous-exceed-sf.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> /
>         i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544>)
>   *
> 
>     igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
> 
>       o shard-glk11: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-glk11/igt@kms_psr2_sf@fbc-pr-plane-
>         move-sf-dmg-area.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
>   *
> 
>     igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-
>     sf@pipe-a-edp-1:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-
>         overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html>
>         (i915#9808 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/9808>)
>   *
> 
>     igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
> 
>       o shard-glk10: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-glk10/igt@kms_psr2_sf@fbc-psr2-
>         primary-plane-update-sf-dmg-area.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
>   *
> 
>     igt@kms_psr2_sf@pr-cursor-plane-update-sf:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-3/igt@kms_psr2_sf@pr-cursor-
>         plane-update-sf.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other
>         tests skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-8/igt@kms_psr2_sf@pr-cursor-
>         plane-update-sf.html> (i915#12316 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316>) +3 other
>         tests skip
>   *
> 
>     igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-3/igt@kms_psr2_sf@psr2-overlay-plane-
>         update-sf-dmg-area.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other
>         tests skip
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-plane-
>         update-sf-dmg-area.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other
>         tests skip
>       o shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-snb1/igt@kms_psr2_sf@psr2-overlay-plane-
>         update-sf-dmg-area.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other
>         tests skip
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-16/igt@kms_psr2_sf@psr2-overlay-plane-
>         update-sf-dmg-area.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other
>         tests skip
>   *
> 
>     igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
> 
>       o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-glk6/igt@kms_psr2_sf@psr2-overlay-primary-
>         update-sf-dmg-area.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +11
>         other tests skip
>   *
> 
>     igt@kms_psr2_su@page_flip-nv12:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-9/igt@kms_psr2_su@page_flip-
>         nv12.html> (i915#9683 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9683>)
>   *
> 
>     igt@kms_psr@fbc-psr2-cursor-blt:
> 
>       o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-
>         blt.html> (i915#9732 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9732>) +16 other tests skip
>   *
> 
>     igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
> 
>       o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-glk5/igt@kms_psr@fbc-psr2-cursor-mmap-
>         gtt.html> +640 other tests skip
>   *
> 
>     igt@kms_psr@fbc-psr2-primary-blt:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_psr@fbc-psr2-primary-
>         blt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/1072> / i915#9732 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +22 other
>         tests skip
>   *
> 
>     igt@kms_psr@fbc-psr2-primary-mmap-gtt:
> 
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-9/igt@kms_psr@fbc-psr2-primary-
>         mmap-gtt.html> (i915#9732 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9732>) +13 other tests skip
>   *
> 
>     igt@kms_psr@fbc-psr2-primary-render:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-5/igt@kms_psr@fbc-psr2-primary-
>         render.html> (i915#9688 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9688>) +10 other tests skip
>   *
> 
>     igt@kms_psr@pr-primary-blt:
> 
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-16/igt@kms_psr@pr-primary-blt.html>
>         (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9732>) +6 other tests skip
>   *
> 
>     igt@kms_psr@psr-cursor-render:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@kms_psr@psr-cursor-render.html>
>         (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9732>) +21 other tests skip
>   *
> 
>     igt@kms_psr@psr-no-drrs:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_psr@psr-no-drrs.html>
>         (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/1072> / i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#9732 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +1 other
>         test skip
>   *
> 
>     igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@kms_psr_stress_test@flip-
>         primary-invalidate-overlay.html> (i915#15949 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949>)
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-1/igt@kms_psr_stress_test@flip-
>         primary-invalidate-overlay.html> (i915#15949 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949>)
>   *
> 
>     igt@kms_rotation_crc@multiplane-rotation:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk5/
>         igt@kms_rotation_crc@multiplane-rotation.html> (i915#15492
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492>)
>         +1 other test incomplete
>   *
> 
>     igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
> 
>       o shard-glk10: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk10/
>         igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html>
>         (i915#15500 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15500>)
>   *
> 
>     igt@kms_rotation_crc@primary-rotation-90:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_rotation_crc@primary-
>         rotation-90.html> (i915#12755 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/12755> / i915#15867 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867>)
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-6/igt@kms_rotation_crc@primary-
>         rotation-90.html> (i915#12755 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/12755> / i915#15867 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867>)
>   *
> 
>     igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-6/igt@kms_rotation_crc@primary-y-
>         tiled-reflect-x-90.html> (i915#12755 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> /
>         i915#15867 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15867> / i915#5190 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/5190>)
>   *
> 
>     igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@kms_rotation_crc@primary-yf-
>         tiled-reflect-x-180.html> (i915#5289 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
>   *
> 
>     igt@kms_selftest@drm_framebuffer:
> 
>       o shard-rkl: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-rkl-2/
>         igt@kms_selftest@drm_framebuffer.html> (i915#13179 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>) +1 other
>         test abort
>       o shard-snb: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-snb6/
>         igt@kms_selftest@drm_framebuffer.html> (i915#13179 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>) +1 other
>         test abort
>       o shard-glk: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-glk6/
>         igt@kms_selftest@drm_framebuffer.html> (i915#13179 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>) +1 other
>         test abort
>   *
> 
>     igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_tiled_display@basic-test-
>         pattern-with-chamelium.html> (i915#8623 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-3/igt@kms_tiled_display@basic-
>         test-pattern-with-chamelium.html> (i915#8623 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-6/igt@kms_tiled_display@basic-
>         test-pattern-with-chamelium.html> (i915#8623 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
>   *
> 
>     igt@kms_vblank@ts-continuation-suspend:
> 
>       o shard-glk11: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-glk11/igt@kms_vblank@ts-
>         continuation-suspend.html> (i915#12276 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) +1 other
>         test incomplete
>       o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-2/igt@kms_vblank@ts-continuation-
>         suspend.html> -> ABORT <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-1/igt@kms_vblank@ts-continuation-
>         suspend.html> (i915#15132 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15132>)
>   *
> 
>     igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2:
> 
>       o shard-rkl: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-rkl-1/igt@kms_vblank@ts-continuation-
>         suspend@pipe-c-hdmi-a-2.html> (i915#15132 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132>)
>   *
> 
>     igt@kms_vrr@flip-basic:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_vrr@flip-basic.html>
>         (i915#15243 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15243> / i915#3555 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3555>) +1 other test skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-1/igt@kms_vrr@flip-basic.html>
>         (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3555> / i915#8808 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/8808>)
>   *
> 
>     igt@kms_vrr@max-min:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-4/igt@kms_vrr@max-min.html> (i915#9906
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
>       o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg1-17/igt@kms_vrr@max-min.html>
>         (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/9906>) +1 other test skip
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-7/igt@kms_vrr@max-min.html>
>         (i915#8808 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/8808> / i915#9906 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9906>)
>   *
> 
>     igt@kms_vrr@negative-basic:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_vrr@negative-basic.html>
>         (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3555> / i915#9906 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9906>)
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-2/igt@kms_vrr@negative-basic.html>
>         (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3555> / i915#9906 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9906>)
>   *
> 
>     igt@kms_vrr@seamless-rr-switch-vrr:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-
>         vrr.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9906>) +1 other test skip
>       o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-
>         vrr.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9906>) +1 other test skip
>   *
> 
>     igt@perf@global-sseu-config:
> 
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-1/igt@perf@global-sseu-
>         config.html> (i915#7387 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/7387>)
>   *
> 
>     igt@perf@mi-rpc:
> 
>       o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@perf@mi-rpc.html> (i915#2434
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>)
>       o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-mtlp-5/igt@perf@mi-rpc.html>
>         (i915#2434 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/2434>)
>   *
> 
>     igt@prime_vgem@basic-fence-read:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-1/igt@prime_vgem@basic-fence-
>         read.html> (i915#3291 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3291> / i915#3708 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
>   *
> 
>     igt@prime_vgem@basic-gtt:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@prime_vgem@basic-gtt.html>
>         (i915#3708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3708> / i915#4077 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4077>)
>   *
> 
>     igt@sriov_basic@enable-vfs-autoprobe-off:
> 
>       o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-5/igt@sriov_basic@enable-vfs-
>         autoprobe-off.html> (i915#9917 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/9917>)
>   *
> 
>     igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
> 
>       o shard-tglu: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         drm-tip/IGTPW_15131/shard-tglu-3/igt@sriov_basic@enable-vfs-
>         autoprobe-off@numvfs-6.html> (i915#12910 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>) +9 other
>         tests fail
> 
> 
>         Possible fixes
> 
>   *
> 
>     igt@gem_create@create-ext-cpu-access-big:
> 
>       o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg2-1/igt@gem_create@create-ext-cpu-access-
>         big.html> (i915#15454 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15454>) -> PASS <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-dg2-6/igt@gem_create@create-ext-
>         cpu-access-big.html>
>   *
> 
>     igt@gem_eio@in-flight-suspend:
> 
>       o shard-rkl: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@gem_eio@in-flight-suspend.html>
>         (i915#13390 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/13390>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-8/igt@gem_eio@in-flight-suspend.html>
>   *
> 
>     igt@gem_eio@kms:
> 
>       o shard-rkl: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-7/igt@gem_eio@kms.html> (i915#13363
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363>)
>         -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/
>         shard-rkl-6/igt@gem_eio@kms.html>
>       o shard-tglu: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
>         tip/CI_DRM_18447/shard-tglu-7/igt@gem_eio@kms.html> (i915#13363
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363>)
>         -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/
>         shard-tglu-5/igt@gem_eio@kms.html>
>   *
> 
>     igt@gem_exec_suspend@basic-s0:
> 
>       o shard-dg2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html>
>         (i915#13356 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/13356>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html>
>         +1 other test pass
>   *
> 
>     igt@gem_mmap_offset@clear-via-pagefault:
> 
>       o shard-mtlp: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
>         tip/CI_DRM_18447/shard-mtlp-2/igt@gem_mmap_offset@clear-via-
>         pagefault.html> (i915#16021 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/16021>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/
>         igt@gem_mmap_offset@clear-via-pagefault.html> +1 other test pass
>   *
> 
>     igt@gem_pxp@create-valid-protected-context:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-2/igt@gem_pxp@create-valid-protected-
>         context.html> (i915#4270 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4270>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/
>         igt@gem_pxp@create-valid-protected-context.html>
>   *
> 
>     igt@gem_workarounds@suspend-resume:
> 
>       o shard-rkl: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@gem_workarounds@suspend-
>         resume.html> (i915#13356 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/13356>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/
>         igt@gem_workarounds@suspend-resume.html>
>       o shard-snb: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-snb4/igt@gem_workarounds@suspend-resume.html>
>         (i915#15840 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15840>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-snb7/igt@gem_workarounds@suspend-resume.html>
>   *
> 
>     igt@i915_pm_rps@waitboost:
> 
>       o shard-mtlp: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-mtlp-2/igt@i915_pm_rps@waitboost.html>
>         (i915#15365 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15365>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-mtlp-2/igt@i915_pm_rps@waitboost.html>
>   *
> 
>     igt@i915_selftest@live:
> 
>       o shard-mtlp: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/drm-
>         tip/CI_DRM_18447/shard-mtlp-7/igt@i915_selftest@live.html>
>         (i915#12061 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/12061> / i915#15560 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15560>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-mtlp-1/
>         igt@i915_selftest@live.html>
>   *
> 
>     igt@i915_selftest@live@workarounds:
> 
>       o shard-mtlp: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/drm-
>         tip/CI_DRM_18447/shard-mtlp-7/
>         igt@i915_selftest@live@workarounds.html> (i915#12061 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         mtlp-1/igt@i915_selftest@live@workarounds.html>
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
> 
>       o shard-glk: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-
>         tiled-ccs@pipe-a-hdmi-a-1.html> (i915#15582 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-
>         a-1.html>
>   *
> 
>     igt@kms_cursor_crc@cursor-sliding-128x42:
> 
>       o shard-rkl: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@kms_cursor_crc@cursor-
>         sliding-128x42.html> (i915#13566 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html> +2 other
>         tests pass
>   *
> 
>     igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
> 
>       o shard-tglu: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-tglu-8/igt@kms_cursor_crc@cursor-
>         sliding-64x21@pipe-a-hdmi-a-1.html> (i915#13566 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         tglu-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-
>         a-1.html> +3 other tests pass
>   *
> 
>     igt@kms_flip@plain-flip-ts-check:
> 
>       o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg2-5/igt@kms_flip@plain-flip-ts-check.html>
>         (i915#10826 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/10826>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-dg2-4/igt@kms_flip@plain-flip-ts-check.html>
>   *
> 
>     igt@kms_force_connector_basic@force-edid:
> 
>       o shard-mtlp: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-mtlp-1/igt@kms_force_connector_basic@force-
>         edid.html> (i915#15672 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15672>) -> PASS <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-mtlp-8/
>         igt@kms_force_connector_basic@force-edid.html>
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-suspend:
> 
>       o shard-rkl: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-
>         suspend.html> (i915#15132 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15132>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-3/
>         igt@kms_frontbuffer_tracking@fbc-suspend.html>
>   *
> 
>     igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-
>         primscrn-pri-shrfb-draw-mmap-cpu.html> (i915#15989 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-
>         draw-mmap-cpu.html> +4 other tests pass
>   *
> 
>     igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-render:
> 
>       o shard-glk: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-glk1/igt@kms_frontbuffer_tracking@hdr-2p-
>         scndscrn-pri-shrfb-draw-render.html> -> PASS <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-glk8/
>         igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-
>         render.html> +2 other tests pass
>   *
> 
>     igt@kms_plane_scaling@intel-max-src-size:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-
>         size.html> (i915#6953 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/6953>) -> PASS <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-rkl-6/
>         igt@kms_plane_scaling@intel-max-src-size.html>
>   *
> 
>     igt@kms_pm_rpm@dpms-lpsp:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html>
>         (i915#15073 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15073>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html>
>   *
> 
>     igt@kms_pm_rpm@modeset-non-lpsp-stress:
> 
>       o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-
>         stress.html> (i915#15073 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15073>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-8/
>         igt@kms_pm_rpm@modeset-non-lpsp-stress.html> +1 other test pass
>   *
> 
>     igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
> 
>       o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-
>         stress-no-wait.html> (i915#15073 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> +1
>         other test pass
>   *
> 
>     igt@kms_pm_rpm@system-suspend-idle:
> 
>       o shard-dg2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg2-6/igt@kms_pm_rpm@system-suspend-
>         idle.html> (i915#14419 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14419>) -> PASS <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-dg2-1/igt@kms_pm_rpm@system-
>         suspend-idle.html>
>       o shard-rkl: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_pm_rpm@system-suspend-
>         idle.html> (i915#14419 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14419>) -> PASS <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_pm_rpm@system-
>         suspend-idle.html>
>   *
> 
>     igt@sysfs_heartbeat_interval@mixed:
> 
>       o shard-tglu: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-tglu-6/
>         igt@sysfs_heartbeat_interval@mixed.html> -> PASS <https://intel-
>         gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-5/
>         igt@sysfs_heartbeat_interval@mixed.html> +1 other test pass
> 
> 
>         Warnings
> 
>   *
> 
>     igt@gem_close_race@multigpu-basic-threads:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@gem_close_race@multigpu-basic-
>         threads.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#7697 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-5/igt@gem_close_race@multigpu-basic-threads.html> (i915#7697
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
>   *
> 
>     igt@gem_ctx_sseu@mmap-args:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html>
>         (i915#280 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/280>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#280 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/280>)
>   *
> 
>     igt@gem_exec_balancer@parallel-ordering:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-5/igt@gem_exec_balancer@parallel-
>         ordering.html> (i915#4525 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4525>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/
>         igt@gem_exec_balancer@parallel-ordering.html> (i915#14544
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#4525 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4525>) +1 other test skip
>   *
> 
>     igt@gem_exec_big@single:
> 
>       o shard-tglu: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-tglu-4/igt@gem_exec_big@single.html>
>         (i915#15816 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15816>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-tglu-7/igt@gem_exec_big@single.html>
>         (i915#15944 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15944>)
>   *
> 
>     igt@gem_exec_reloc@basic-wc-read:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#3281 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3281>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/
>         igt@gem_exec_reloc@basic-wc-read.html> (i915#3281 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +4 other
>         tests skip
>   *
> 
>     igt@gem_exec_reloc@basic-write-read-noreloc:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-
>         noreloc.html> (i915#3281 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3281>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/
>         igt@gem_exec_reloc@basic-write-read-noreloc.html> (i915#14544
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#3281 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3281>) +4 other tests skip
>   *
> 
>     igt@gem_lmem_evict@dontneed-evict-race:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-
>         race.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14544> / i915#4613 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> /
>         i915#7582 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/7582>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-
>         race.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/4613> / i915#7582 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>)
>   *
> 
>     igt@gem_lmem_swapping@parallel-random-engines:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-
>         engines.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#4613 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-4/igt@gem_lmem_swapping@parallel-random-engines.html>
>         (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/4613>)
>   *
> 
>     igt@gem_lmem_swapping@verify-ccs:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@gem_lmem_swapping@verify-ccs.html>
>         (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/4613>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#4613 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4613>) +1 other test skip
>   *
> 
>     igt@gem_media_vme:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@gem_media_vme.html> (i915#14544
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#284 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/284>) -> SKIP <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@gem_media_vme.html>
>         (i915#284 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/284>)
>   *
> 
>     igt@gem_pread@display:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-2/igt@gem_pread@display.html> (i915#3282
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
>         -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/
>         shard-rkl-6/igt@gem_pread@display.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3282>)
>   *
> 
>     igt@gem_pwrite@basic-random:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@gem_pwrite@basic-random.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#3282 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3282>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-5/
>         igt@gem_pwrite@basic-random.html> (i915#3282 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other
>         test skip
>   *
> 
>     igt@gem_userptr_blits@forbidden-operations:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-1/igt@gem_userptr_blits@forbidden-
>         operations.html> (i915#3282 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3282> / i915#3297 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-6/igt@gem_userptr_blits@forbidden-operations.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#3282 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3282> / i915#3297 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
>   *
> 
>     igt@gem_userptr_blits@readonly-pwrite-unsync:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-1/igt@gem_userptr_blits@readonly-pwrite-
>         unsync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3297>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/
>         igt@gem_userptr_blits@readonly-pwrite-unsync.html> (i915#14544
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#3297 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3297>)
>   *
> 
>     igt@gem_userptr_blits@unsync-unmap-cycles:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-
>         cycles.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#3297 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-7/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
>   *
> 
>     igt@i915_pm_sseu@full-enable:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-2/igt@i915_pm_sseu@full-enable.html>
>         (i915#4387 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/4387>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-6/igt@i915_pm_sseu@full-enable.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#4387 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/4387>)
>   *
> 
>     igt@i915_query@hwconfig_table:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@i915_query@hwconfig_table.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#6245 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/6245>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-2/
>         igt@i915_query@hwconfig_table.html> (i915#6245 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>)
>   *
> 
>     igt@intel_hwmon@hwmon-read:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-4/igt@intel_hwmon@hwmon-read.html>
>         (i915#7707 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/7707>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-6/igt@intel_hwmon@hwmon-read.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#7707 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/7707>)
>   *
> 
>     igt@kms_big_fb@4-tiled-32bpp-rotate-180:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-
>         rotate-180.html> (i915#14544 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/14544> / i915#5286 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html> (i915#5286
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
>         +1 other test skip
>   *
> 
>     igt@kms_big_fb@4-tiled-64bpp-rotate-90:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-
>         rotate-90.html> (i915#5286 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/5286>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_big_fb@4-
>         tiled-64bpp-rotate-90.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/5286>)
>   *
> 
>     igt@kms_big_fb@linear-16bpp-rotate-270:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_big_fb@linear-16bpp-
>         rotate-270.html> (i915#14544 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/14544> / i915#3638 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-4/igt@kms_big_fb@linear-16bpp-rotate-270.html> (i915#3638
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
>   *
> 
>     igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_big_fb@linear-max-hw-
>         stride-64bpp-rotate-180-hflip.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#3828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3828>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-8/igt@kms_big_fb@linear-max-hw-
>         stride-64bpp-rotate-180-hflip.html> (i915#3828 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
>   *
> 
>     igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-
>         rotate-270.html> (i915#14544 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/14544>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-1/
>         igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> +24 other tests skip
>   *
> 
>     igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-
>         dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html> (i915#6095 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-
>         hdmi-a-2.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#6095 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +5 other
>         tests skip
>   *
> 
>     igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-
>         dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html> (i915#14098 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> /
>         i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/6095>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-
>         rc-ccs-cc@pipe-c-hdmi-a-2.html> (i915#14098 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> /
>         i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#6095 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/6095>) +11 other tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-
>         dg2-mc-ccs@pipe-b-hdmi-a-2.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/6095>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-
>         dg2-mc-ccs@pipe-b-hdmi-a-2.html> (i915#6095 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +2 other
>         tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-
>         tiled-lnl-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/12313>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_ccs@crc-
>         primary-rotation-180-4-tiled-lnl-ccs.html> (i915#12313 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313> /
>         i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544>)
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-
>         tiled-lnl-ccs.html> (i915#12805 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/12805> / i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html>
>         (i915#12805 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/12805>)
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-
>         tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html> (i915#14098 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> /
>         i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#6095 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/6095>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-4/igt@kms_ccs@crc-
>         primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html>
>         (i915#14098 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14098> / i915#6095 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/6095>) +5 other tests skip
>   *
> 
>     igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-
>         stress-resolution-non-4k.html> (i915#11151 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> /
>         i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#7828 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/7828>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-7/
>         igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html>
>         (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/11151> / i915#7828 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/7828>) +2 other tests skip
>   *
> 
>     igt@kms_chamelium_hpd@vga-hpd-fast:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-
>         fast.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/11151> / i915#7828 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html> (i915#11151
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/11151> / i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#7828 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other
>         tests skip
>   *
> 
>     igt@kms_content_protection@dp-mst-type-1:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_content_protection@dp-mst-
>         type-1.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#15330 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> /
>         i915#3116 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3116>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-2/igt@kms_content_protection@dp-mst-
>         type-1.html> (i915#15330 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15330> / i915#3116 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>)
>   *
> 
>     igt@kms_content_protection@uevent:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-5/igt@kms_content_protection@uevent.html>
>         (i915#15865 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15865>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/
>         igt@kms_content_protection@uevent.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#15865 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15865>) +1 other test skip
>   *
> 
>     igt@kms_cursor_crc@cursor-onscreen-max-size:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-max-
>         size.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/3555>) -> SKIP <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_cursor_crc@cursor-
>         onscreen-max-size.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3555>) +2 other tests skip
>   *
> 
>     igt@kms_cursor_crc@cursor-random-512x512:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@kms_cursor_crc@cursor-
>         random-512x512.html> (i915#13049 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#13049
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/13049> / i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544>)
>   *
> 
>     igt@kms_cursor_crc@cursor-rapid-movement-32x32:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-
>         movement-32x32.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3555>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-
>         movement-32x32.html> (i915#3555 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/3555>)
>   *
> 
>     igt@kms_feature_discovery@psr2:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_feature_discovery@psr2.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#658 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/658>) -> SKIP <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-rkl-8/
>         igt@kms_feature_discovery@psr2.html> (i915#658 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-dpms:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#9934 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9934>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/igt@kms_flip@2x-
>         flip-vs-dpms.html> (i915#9934 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/9934>)
>   *
> 
>     igt@kms_flip@2x-modeset-vs-vblank-race:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-4/igt@kms_flip@2x-modeset-vs-vblank-
>         race.html> (i915#9934 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9934>) -> SKIP <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_flip@2x-modeset-vs-
>         vblank-race.html> (i915#14544 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/14544> / i915#9934 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other
>         tests skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-
>     upscaling:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/
>         igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-
>         upscaling.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#15643 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-
>         to-32bpp-4tiledg2rcccs-upscaling.html> (i915#15643 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) +1 other
>         test skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-
>         ytile-to-32bpp-ytileccs-downscaling.html> (i915#15643 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-
>         ytileccs-downscaling.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15643>) +1 other test skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-
>         primscrn-cur-indfb-draw-blt.html> (i915#1825 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-
>         draw-blt.html> (i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#1825 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +15 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-2p-
>         primscrn-shrfb-pgflip-blt.html> -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/
>         igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-
>         blt.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14544>) +29 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
> 
>       o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-
>         rgb565-draw-render.html> (i915#10433 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> /
>         i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15102> / i915#3458 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3458>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-dg2-6/
>         igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html>
>         (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15102> / i915#3458 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3458>) +1 other test skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-
>     pwrite:
> 
>       o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg1-18/
>         igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-
>         draw-pwrite.html> (i915#15102 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/15102> / i915#4423 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-
>         indfb-draw-pwrite.html> (i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-
>     pwrite:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/
>         igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-
>         draw-pwrite.html> (i915#14544 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/14544> / i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-
>         shrfb-draw-pwrite.html> (i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +6 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-
>         primscrn-indfb-plflip-blt.html> (i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> /
>         i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3023>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-
>         primscrn-indfb-plflip-blt.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15102> / i915#3023 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3023>) +6 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-1p-rte:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-
>         rte.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14544> / i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> /
>         i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3023>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-
>         rte.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/15102> / i915#3023 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +5 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-
>         scndscrn-indfb-plflip-blt.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#1825 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/1825>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-
>         scndscrn-indfb-plflip-blt.html> (i915#1825 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +9 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-5/igt@kms_frontbuffer_tracking@psrhdr-
>         rgb101010-draw-blt.html> (i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-6/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-
>         blt.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/14544> / i915#15102 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +12
>         other tests skip
>   *
> 
>     igt@kms_hdr@invalid-hdr:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_hdr@invalid-hdr.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#3555 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3555> / i915#8228 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-7/igt@kms_hdr@invalid-hdr.html> (i915#16012 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012> /
>         i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/8228>)
>   *
> 
>     igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-
>         a-2-xrgb2101010.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#16025 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/16025>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-7/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-
>         a-2-xrgb2101010.html> (i915#16012 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>) +1 other
>         test skip
>   *
> 
>     igt@kms_joiner@invalid-modeset-force-ultra-joiner:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-
>         ultra-joiner.html> (i915#15458 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/15458>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/
>         igt@kms_joiner@invalid-modeset-force-ultra-joiner.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#15458 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15458>) +1 other test skip
>   *
> 
>     igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-
>         ccs-modifier.html> (i915#14544 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/14544> / i915#15709 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html>
>         (i915#15709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15709>)
>   *
> 
>     igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@kms_plane@pixel-format-yf-tiled-
>         ccs-modifier.html> (i915#15709 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/15709>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/
>         igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#15709 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15709>) +1 other test skip
>   *
> 
>     igt@kms_pm_backlight@basic-brightness:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_pm_backlight@basic-
>         brightness.html> (i915#14544 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/14544> / i915#5354 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-8/igt@kms_pm_backlight@basic-brightness.html> (i915#5354
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
>   *
> 
>     igt@kms_pm_dc@dc9-dpms:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html>
>         (i915#15739 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/15739>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#15739 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15739>)
>   *
> 
>     igt@kms_pm_lpsp@kms-lpsp:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html>
>         (i915#3828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3828>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html>
>         (i915#9340 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/9340>)
>       o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-dg1-19/igt@kms_pm_lpsp@kms-lpsp.html>
>         (i915#9340 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/9340>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html>
>         (i915#3828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3828>)
>   *
> 
>     igt@kms_prime@basic-crc-hybrid:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#6524 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/6524>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-8/
>         igt@kms_prime@basic-crc-hybrid.html> (i915#6524 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
>   *
> 
>     igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-
>         move-continuous-exceed-sf.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-
>         exceed-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/11520> / i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +3 other
>         tests skip
>   *
> 
>     igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-
>         continuous-exceed-sf.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> /
>         i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
>         tip/IGTPW_15131/shard-rkl-8/igt@kms_psr2_sf@psr2-cursor-plane-
>         move-continuous-exceed-sf.html> (i915#11520 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other
>         tests skip
>   *
> 
>     igt@kms_psr@fbc-psr-cursor-plane-move:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-7/igt@kms_psr@fbc-psr-cursor-plane-
>         move.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/1072> / i915#9732 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html> (i915#1072
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> /
>         i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#9732 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/9732>) +7 other tests skip
>   *
> 
>     igt@kms_psr@psr-sprite-plane-move:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html>
>         (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/1072> / i915#14544 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/14544> / i915#9732 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-3/igt@kms_psr@psr-sprite-plane-move.html> (i915#1072
>         <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> /
>         i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/9732>) +4 other tests skip
>   *
> 
>     igt@kms_vrr@seamless-rr-switch-vrr:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-
>         vrr.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9906>) -> SKIP <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@kms_vrr@seamless-rr-
>         switch-vrr.html> (i915#14544 <https://gitlab.freedesktop.org/
>         drm/i915/kernel/-/issues/14544> / i915#9906 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
>   *
> 
>     igt@perf@gen8-unprivileged-single-ctx-counters:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-8/igt@perf@gen8-unprivileged-single-ctx-
>         counters.html> (i915#2436 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/2436>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@perf@gen8-
>         unprivileged-single-ctx-counters.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#2436 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/2436>)
>   *
> 
>     igt@perf_pmu@module-unload:
> 
>       o shard-tglu: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-tglu-3/igt@perf_pmu@module-unload.html>
>         (i915#13029 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/13029> / i915#15778 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/15778>) -> ABORT <https://intel-gfx-
>         ci.01.org/tree/drm-tip/IGTPW_15131/shard-tglu-10/
>         igt@perf_pmu@module-unload.html> (i915#15778 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>)
>   *
> 
>     igt@prime_vgem@basic-read:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-6/igt@prime_vgem@basic-read.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#3291 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3291> / i915#3708 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15131/shard-
>         rkl-7/igt@prime_vgem@basic-read.html> (i915#3291 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> /
>         i915#3708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3708>)
>   *
> 
>     igt@prime_vgem@fence-read-hang:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-5/igt@prime_vgem@fence-read-hang.html>
>         (i915#3708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/3708>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         IGTPW_15131/shard-rkl-6/igt@prime_vgem@fence-read-hang.html>
>         (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/14544> / i915#3708 <https://gitlab.freedesktop.org/drm/
>         i915/kernel/-/issues/3708>)
>   *
> 
>     igt@sriov_basic@enable-vfs-bind-unbind-each:
> 
>       o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/
>         CI_DRM_18447/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-
>         each.html> (i915#9917 <https://gitlab.freedesktop.org/drm/i915/
>         kernel/-/issues/9917>) -> SKIP <https://intel-gfx-ci.01.org/
>         tree/drm-tip/IGTPW_15131/shard-rkl-6/igt@sriov_basic@enable-vfs-
>         bind-unbind-each.html> (i915#14544 <https://
>         gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> /
>         i915#9917 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
>         issues/9917>)
> 
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
>     Build changes
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_8899 -> IGTPW_15131
>   * Piglit: piglit_4509 -> None
> 
> CI-20190529: 20190529
> CI_DRM_18447: 302d234f6c7a763bdf7ca8b1c40e02fa1efec5e4 @ git:// 
> anongit.freedesktop.org/gfx-ci/linux
> IGTPW_15131: 12d52f3bb14e763cb1d5ede418f1a57758a99e8f @ https:// 
> gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8899: 3e5747e536f148bf232049e49a00e2b683f91a83 @ https:// 
> gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git:// 
> anongit.freedesktop.org/piglit
> 


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

* Re: [PATCH i-g-t][V3] tests/kms_hdr: Add visual HDR verification subtests
  2026-05-07 21:13 [PATCH i-g-t][V3] tests/kms_hdr: Add visual HDR verification subtests Alex Hung
                   ` (3 preceding siblings ...)
  2026-05-08 16:28 ` ✗ i915.CI.Full: " Patchwork
@ 2026-05-12  0:36 ` Alex Hung
  2026-05-12 19:18   ` Sharma, Swati2
  4 siblings, 1 reply; 9+ messages in thread
From: Alex Hung @ 2026-05-12  0:36 UTC (permalink / raw)
  To: igt-dev
  Cc: Mark.Broadworth, vitaly.prosyak, swati2.sharma, kamil.konieczny,
	jani.nikula, Wayne Lin

Hi,

Does anyone have any concerns if I merge this patch?

On 5/7/26 15:13, Alex Hung wrote:
> From: Wayne Lin <wayne.lin@amd.com>
> 
> The new subtests display an HDR test pattern under a given metadata
> mode and pause for user confirmation, enabling manual inspection of
> HDR output quality on a connected HDR panel.
> 
> New subtests:
> kms_hdr --run-subtest static-swap-smpte2084 --interactive-debug=smpte2084
> kms_hdr --run-subtest static-swap-traditional-sdr --interactive-debug=traditional-sdr
> 
> Co-developed-by: Alex Hung <alex.hung@amd.com>
> Signed-off-by: Alex Hung <alex.hung@amd.com>
> Signed-off-by: Wayne Lin <wayne.lin@amd.com>
> Assisted-by: Copilot:Claude-Sonnet-4.6
> ---
>   tests/kms_hdr.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++++
>   1 file changed, 89 insertions(+)
> 
> diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
> index 876c1c03a..c13e985e1 100644
> --- a/tests/kms_hdr.c
> +++ b/tests/kms_hdr.c
> @@ -67,6 +67,14 @@
>    *
>    * @swap:                    swapping static HDR metadata
>    * @toggle:                  entering and exiting HDR mode
> + *
> + * SUBTEST: static-swap-smpte2084
> + * Description: Show a visual HDR pattern with SMPTE ST 2084 metadata and
> + * require user confirmation.
> + *
> + * SUBTEST: static-swap-traditional-sdr
> + * Description: Show a visual HDR pattern with traditional SDR gamma metadata
> + * and require user confirmation.
>    */
> 
>   IGT_TEST_DESCRIPTION("Test HDR metadata interfaces and bpc switch");
> @@ -647,6 +655,79 @@ static void test_hdr(data_t *data, uint32_t flags)
>   	}
>   }
> 
> +static void test_hdr_visual(data_t *data,
> +			     void (*fill_metadata)(struct hdr_output_metadata *),
> +			     const char *mode_name)
> +{
> +	igt_display_t *display = &data->display;
> +	igt_output_t *output;
> +	igt_fb_t afb;
> +	int afb_id;
> +	bool found = false;
> +	struct hdr_output_metadata hdr;
> +
> +	igt_display_reset(display);
> +
> +	for_each_connected_output(display, output) {
> +		igt_crtc_t *crtc;
> +
> +		if (!has_max_bpc(output) || !igt_output_supports_hdr(output)) {
> +			igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n",
> +				 igt_output_name(output));
> +			continue;
> +		}
> +
> +		if (!igt_is_panel_hdr(data->fd, output)) {
> +			igt_info("Panel attached via %s connector is non-HDR\n", igt_output_name(output));
> +			continue;
> +		}
> +
> +		if (igt_get_output_max_bpc(output) < 10) {
> +			igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output));
> +			continue;
> +		}
> +
> +		for_each_crtc(display, crtc) {
> +			igt_output_set_crtc(output, crtc);
> +			if (!igt_crtc_connector_valid(crtc, output))
> +				continue;
> +
> +			prepare_test(data, output, crtc);
> +
> +			afb_id = igt_create_fb(data->fd, 512, 512,
> +					       DRM_FORMAT_XRGB2101010,
> +					       DRM_FORMAT_MOD_LINEAR, &afb);
> +			igt_assert(afb_id);
> +
> +			draw_hdr_pattern(&afb);
> +
> +			igt_plane_set_fb(data->primary, &afb);
> +			igt_plane_set_size(data->primary, data->w, data->h);
> +			fill_metadata(&hdr);
> +			igt_hdr_set_metadata(data->output, &hdr);
> +			igt_output_set_prop_value(data->output, IGT_CONNECTOR_MAX_BPC, 10);
> +			igt_display_commit_atomic(display,
> +						  DRM_MODE_ATOMIC_ALLOW_MODESET,
> +						  NULL);
> +
> +			igt_info("Displaying %s HDR pattern. Press a key to continue.\n", mode_name);
> +			igt_debug_wait_for_keypress(mode_name);
> +
> +			igt_hdr_set_metadata(data->output, NULL);
> +			igt_output_set_prop_value(data->output, IGT_CONNECTOR_MAX_BPC, 8);
> +			igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> +
> +			test_fini(data);
> +			igt_remove_fb(data->fd, &afb);
> +
> +			found = true;
> +			break;
> +		}
> +	}
> +
> +	igt_require_f(found, "No HDR-capable connector found.\n");
> +}
> +
>   int igt_main()
>   {
>   	data_t data = {};
> @@ -698,6 +779,14 @@ int igt_main()
>   	igt_subtest_with_dynamic("invalid-hdr")
>   		test_hdr(&data, TEST_INVALID_HDR);
> 
> +	igt_describe("Show HDR pattern with SMPTE ST 2084 metadata and require user confirmation");
> +	igt_subtest("static-swap-smpte2084")
> +		test_hdr_visual(&data, igt_hdr_fill_st2084, "smpte2084");
> +
> +	igt_describe("Show HDR pattern with traditional SDR gamma metadata and require user confirmation");
> +	igt_subtest("static-swap-traditional-sdr")
> +		test_hdr_visual(&data, igt_hdr_fill_sdr, "traditional-sdr");
> +
>   	igt_fixture() {
>   		igt_display_fini(&data.display);
>   		drm_close_driver(data.fd);
> --
> 2.43.0
> 


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

* Re: [PATCH i-g-t][V3] tests/kms_hdr: Add visual HDR verification subtests
  2026-05-12  0:36 ` [PATCH i-g-t][V3] " Alex Hung
@ 2026-05-12 19:18   ` Sharma, Swati2
  2026-05-12 19:36     ` Alex Hung
  0 siblings, 1 reply; 9+ messages in thread
From: Sharma, Swati2 @ 2026-05-12 19:18 UTC (permalink / raw)
  To: Alex Hung, igt-dev
  Cc: Mark.Broadworth, vitaly.prosyak, kamil.konieczny, jani.nikula,
	Wayne Lin

Hi Alex,

On 12-05-2026 06:06 am, Alex Hung wrote:
> Hi,
>
> Does anyone have any concerns if I merge this patch?
>
> On 5/7/26 15:13, Alex Hung wrote:
>> From: Wayne Lin <wayne.lin@amd.com>
>>
>> The new subtests display an HDR test pattern under a given metadata
>> mode and pause for user confirmation, enabling manual inspection of
>> HDR output quality on a connected HDR panel.
>>
>> New subtests:
>> kms_hdr --run-subtest static-swap-smpte2084 
>> --interactive-debug=smpte2084
>> kms_hdr --run-subtest static-swap-traditional-sdr 
>> --interactive-debug=traditional-sdr
>>
>> Co-developed-by: Alex Hung <alex.hung@amd.com>
>> Signed-off-by: Alex Hung <alex.hung@amd.com>
Is Co-developed redundant?
>> Signed-off-by: Wayne Lin <wayne.lin@amd.com>
>> Assisted-by: Copilot:Claude-Sonnet-4.6
>> ---
>>   tests/kms_hdr.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++++
>>   1 file changed, 89 insertions(+)
>>
>> diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
>> index 876c1c03a..c13e985e1 100644
>> --- a/tests/kms_hdr.c
>> +++ b/tests/kms_hdr.c
>> @@ -67,6 +67,14 @@
>>    *
>>    * @swap:                    swapping static HDR metadata
>>    * @toggle:                  entering and exiting HDR mode
>> + *
>> + * SUBTEST: static-swap-smpte2084
>> + * Description: Show a visual HDR pattern with SMPTE ST 2084 
>> metadata and
>> + * require user confirmation.
>> + *
>> + * SUBTEST: static-swap-traditional-sdr
>> + * Description: Show a visual HDR pattern with traditional SDR gamma 
>> metadata
>> + * and require user confirmation.
>>    */
>>
>>   IGT_TEST_DESCRIPTION("Test HDR metadata interfaces and bpc switch");
>> @@ -647,6 +655,79 @@ static void test_hdr(data_t *data, uint32_t flags)
>>       }
>>   }
>>
>> +static void test_hdr_visual(data_t *data,
>> +                 void (*fill_metadata)(struct hdr_output_metadata *),
>> +                 const char *mode_name) 
>> +{
>> +    igt_display_t *display = &data->display;
>> +    igt_output_t *output;
>> +    igt_fb_t afb;
>> +    int afb_id;
>> +    bool found = false;
>> +    struct hdr_output_metadata hdr;
>> +
>> +    igt_display_reset(display);
>> +
>> +    for_each_connected_output(display, output) {
>> +        igt_crtc_t *crtc;
>> +
>> +        if (!has_max_bpc(output) || !igt_output_supports_hdr(output)) {
>> +            igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC or 
>> IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n",
>> +                 igt_output_name(output));
>> +            continue;
>> +        }
>> +
>> +        if (!igt_is_panel_hdr(data->fd, output)) {
>> +            igt_info("Panel attached via %s connector is non-HDR\n", 
>> igt_output_name(output));
>> +            continue;
>> +        }
>> +
>> +        if (igt_get_output_max_bpc(output) < 10) {
>> +            igt_info("%s: Doesn't support 10 bpc.\n", 
>> igt_output_name(output));
>> +            continue;
>> +        }
>> +
>> +        for_each_crtc(display, crtc) {
>> +            igt_output_set_crtc(output, crtc);
>> +            if (!igt_crtc_connector_valid(crtc, output))
>> +                continue;
>> +
>> +            prepare_test(data, output, crtc);
>> +
>> +            afb_id = igt_create_fb(data->fd, 512, 512,
>> +                           DRM_FORMAT_XRGB2101010,
>> +                           DRM_FORMAT_MOD_LINEAR, &afb);
>> +            igt_assert(afb_id);
>> +
>> +            draw_hdr_pattern(&afb);
>> +
>> +            igt_plane_set_fb(data->primary, &afb);
>> +            igt_plane_set_size(data->primary, data->w, data->h);
>> +            fill_metadata(&hdr);
>> +            igt_hdr_set_metadata(data->output, &hdr);
>> +            igt_output_set_prop_value(data->output, 
>> IGT_CONNECTOR_MAX_BPC, 10);
>> +            igt_display_commit_atomic(display,
>> +                          DRM_MODE_ATOMIC_ALLOW_MODESET,
>> +                          NULL);
>> +
>> +            igt_info("Displaying %s HDR pattern. Press a key to 
>> continue.\n", mode_name);
>> +            igt_debug_wait_for_keypress(mode_name);
>> +
>> +            igt_hdr_set_metadata(data->output, NULL);
>> +            igt_output_set_prop_value(data->output, 
>> IGT_CONNECTOR_MAX_BPC, 8);
>> +            igt_display_commit_atomic(display, 
>> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
>> +
>> +            test_fini(data);
>> +            igt_remove_fb(data->fd, &afb);
>> +
>> +            found = true;
>> +            break;
>> +        }
>> +    }
>> +
>> +    igt_require_f(found, "No HDR-capable connector found.\n");
>> +}
>> +
>>   int igt_main()
>>   {
>>       data_t data = {};
>> @@ -698,6 +779,14 @@ int igt_main()
>>       igt_subtest_with_dynamic("invalid-hdr")
>>           test_hdr(&data, TEST_INVALID_HDR);
>>
>> +    igt_describe("Show HDR pattern with SMPTE ST 2084 metadata and 
>> require user confirmation");
>> +    igt_subtest("static-swap-smpte2084")
>> +        test_hdr_visual(&data, igt_hdr_fill_st2084, "smpte2084");
>> +
>> +    igt_describe("Show HDR pattern with traditional SDR gamma 
>> metadata and require user confirmation");
>> +    igt_subtest("static-swap-traditional-sdr")
>> +        test_hdr_visual(&data, igt_hdr_fill_sdr, "traditional-sdr");
igt_debug_wait_for_keypress() is a no-op in CI — these subtests just 
duplicate static-swap with no added validation.
Instead, add igt_debug_interactive_mode_check() calls inside the 
existing test_static_swap() after each metadata commit. This is CI-safe 
(no-op without terminal) and provides Y/n visual verdict when run with 
--interactive-debug=all. See tests/intel/kms_dsc.c:90-92,216 for 
reference. No new subtests or functions needed.
>> +
>>       igt_fixture() {
>>           igt_display_fini(&data.display);
>>           drm_close_driver(data.fd);
>> -- 
>> 2.43.0
>>
>

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

* Re: [PATCH i-g-t][V3] tests/kms_hdr: Add visual HDR verification subtests
  2026-05-12 19:18   ` Sharma, Swati2
@ 2026-05-12 19:36     ` Alex Hung
  0 siblings, 0 replies; 9+ messages in thread
From: Alex Hung @ 2026-05-12 19:36 UTC (permalink / raw)
  To: Sharma, Swati2, igt-dev
  Cc: Mark.Broadworth, vitaly.prosyak, kamil.konieczny, jani.nikula,
	Wayne Lin



On 5/12/26 13:18, Sharma, Swati2 wrote:
> Hi Alex,
> 
> On 12-05-2026 06:06 am, Alex Hung wrote:
>> Hi,
>>
>> Does anyone have any concerns if I merge this patch?
>>
>> On 5/7/26 15:13, Alex Hung wrote:
>>> From: Wayne Lin <wayne.lin@amd.com>
>>>
>>> The new subtests display an HDR test pattern under a given metadata
>>> mode and pause for user confirmation, enabling manual inspection of
>>> HDR output quality on a connected HDR panel.
>>>
>>> New subtests:
>>> kms_hdr --run-subtest static-swap-smpte2084 --interactive- 
>>> debug=smpte2084
>>> kms_hdr --run-subtest static-swap-traditional-sdr --interactive- 
>>> debug=traditional-sdr
>>>
>>> Co-developed-by: Alex Hung <alex.hung@amd.com>
>>> Signed-off-by: Alex Hung <alex.hung@amd.com>
> Is Co-developed redundant?

Thanks for catching this.

>>> Signed-off-by: Wayne Lin <wayne.lin@amd.com>
>>> Assisted-by: Copilot:Claude-Sonnet-4.6
>>> ---
>>>   tests/kms_hdr.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++++
>>>   1 file changed, 89 insertions(+)
>>>
>>> diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
>>> index 876c1c03a..c13e985e1 100644
>>> --- a/tests/kms_hdr.c
>>> +++ b/tests/kms_hdr.c
>>> @@ -67,6 +67,14 @@
>>>    *
>>>    * @swap:                    swapping static HDR metadata
>>>    * @toggle:                  entering and exiting HDR mode
>>> + *
>>> + * SUBTEST: static-swap-smpte2084
>>> + * Description: Show a visual HDR pattern with SMPTE ST 2084 
>>> metadata and
>>> + * require user confirmation.
>>> + *
>>> + * SUBTEST: static-swap-traditional-sdr
>>> + * Description: Show a visual HDR pattern with traditional SDR gamma 
>>> metadata
>>> + * and require user confirmation.
>>>    */
>>>
>>>   IGT_TEST_DESCRIPTION("Test HDR metadata interfaces and bpc switch");
>>> @@ -647,6 +655,79 @@ static void test_hdr(data_t *data, uint32_t flags)
>>>       }
>>>   }
>>>
>>> +static void test_hdr_visual(data_t *data,
>>> +                 void (*fill_metadata)(struct hdr_output_metadata *),
>>> +                 const char *mode_name) +{
>>> +    igt_display_t *display = &data->display;
>>> +    igt_output_t *output;
>>> +    igt_fb_t afb;
>>> +    int afb_id;
>>> +    bool found = false;
>>> +    struct hdr_output_metadata hdr;
>>> +
>>> +    igt_display_reset(display);
>>> +
>>> +    for_each_connected_output(display, output) {
>>> +        igt_crtc_t *crtc;
>>> +
>>> +        if (!has_max_bpc(output) || !igt_output_supports_hdr(output)) {
>>> +            igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC or 
>>> IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n",
>>> +                 igt_output_name(output));
>>> +            continue;
>>> +        }
>>> +
>>> +        if (!igt_is_panel_hdr(data->fd, output)) {
>>> +            igt_info("Panel attached via %s connector is non-HDR\n", 
>>> igt_output_name(output));
>>> +            continue;
>>> +        }
>>> +
>>> +        if (igt_get_output_max_bpc(output) < 10) {
>>> +            igt_info("%s: Doesn't support 10 bpc.\n", 
>>> igt_output_name(output));
>>> +            continue;
>>> +        }
>>> +
>>> +        for_each_crtc(display, crtc) {
>>> +            igt_output_set_crtc(output, crtc);
>>> +            if (!igt_crtc_connector_valid(crtc, output))
>>> +                continue;
>>> +
>>> +            prepare_test(data, output, crtc);
>>> +
>>> +            afb_id = igt_create_fb(data->fd, 512, 512,
>>> +                           DRM_FORMAT_XRGB2101010,
>>> +                           DRM_FORMAT_MOD_LINEAR, &afb);
>>> +            igt_assert(afb_id);
>>> +
>>> +            draw_hdr_pattern(&afb);
>>> +
>>> +            igt_plane_set_fb(data->primary, &afb);
>>> +            igt_plane_set_size(data->primary, data->w, data->h);
>>> +            fill_metadata(&hdr);
>>> +            igt_hdr_set_metadata(data->output, &hdr);
>>> +            igt_output_set_prop_value(data->output, 
>>> IGT_CONNECTOR_MAX_BPC, 10);
>>> +            igt_display_commit_atomic(display,
>>> +                          DRM_MODE_ATOMIC_ALLOW_MODESET,
>>> +                          NULL);
>>> +
>>> +            igt_info("Displaying %s HDR pattern. Press a key to 
>>> continue.\n", mode_name);
>>> +            igt_debug_wait_for_keypress(mode_name);
>>> +
>>> +            igt_hdr_set_metadata(data->output, NULL);
>>> +            igt_output_set_prop_value(data->output, 
>>> IGT_CONNECTOR_MAX_BPC, 8);
>>> +            igt_display_commit_atomic(display, 
>>> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
>>> +
>>> +            test_fini(data);
>>> +            igt_remove_fb(data->fd, &afb);
>>> +
>>> +            found = true;
>>> +            break;
>>> +        }
>>> +    }
>>> +
>>> +    igt_require_f(found, "No HDR-capable connector found.\n");
>>> +}
>>> +
>>>   int igt_main()
>>>   {
>>>       data_t data = {};
>>> @@ -698,6 +779,14 @@ int igt_main()
>>>       igt_subtest_with_dynamic("invalid-hdr")
>>>           test_hdr(&data, TEST_INVALID_HDR);
>>>
>>> +    igt_describe("Show HDR pattern with SMPTE ST 2084 metadata and 
>>> require user confirmation");
>>> +    igt_subtest("static-swap-smpte2084")
>>> +        test_hdr_visual(&data, igt_hdr_fill_st2084, "smpte2084");
>>> +
>>> +    igt_describe("Show HDR pattern with traditional SDR gamma 
>>> metadata and require user confirmation");
>>> +    igt_subtest("static-swap-traditional-sdr")
>>> +        test_hdr_visual(&data, igt_hdr_fill_sdr, "traditional-sdr");
> igt_debug_wait_for_keypress() is a no-op in CI — these subtests just 
> duplicate static-swap with no added validation.
> Instead, add igt_debug_interactive_mode_check() calls inside the 
> existing test_static_swap() after each metadata commit. This is CI-safe 
> (no-op without terminal) and provides Y/n visual verdict when run with 
> --interactive-debug=all. See tests/intel/kms_dsc.c:90-92,216 for 
> reference. No new subtests or functions needed.

Thanks. Let me change it and then send V4.

>>> +
>>>       igt_fixture() {
>>>           igt_display_fini(&data.display);
>>>           drm_close_driver(data.fd);
>>> -- 
>>> 2.43.0
>>>
>>


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

end of thread, other threads:[~2026-05-12 19:37 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-07 21:13 [PATCH i-g-t][V3] tests/kms_hdr: Add visual HDR verification subtests Alex Hung
2026-05-07 22:52 ` ✓ i915.CI.BAT: success for " Patchwork
2026-05-07 23:31 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-08 12:00 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-08 16:28 ` ✗ i915.CI.Full: " Patchwork
2026-05-08 22:00   ` Alex Hung
2026-05-12  0:36 ` [PATCH i-g-t][V3] " Alex Hung
2026-05-12 19:18   ` Sharma, Swati2
2026-05-12 19:36     ` Alex Hung

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