All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] tests/intel/xe_debugfs: add uc debugfs validation and read tests
@ 2026-07-29  7:41 Sobin Thomas
  2026-07-29 15:30 ` ✓ Xe.CI.BAT: success for " Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Sobin Thomas @ 2026-07-29  7:41 UTC (permalink / raw)
  To: igt-dev, daniele.ceraolospurio; +Cc: kamil.konieczny, Sobin Thomas

Add coverage for GT-specific uc debugfs entries by introducing a new
uc-info-read subtest that validates the presence of required files in the
GT debugfs hierarchy. The test currently verifies the existence of
the following debugfs nodes:

  - uc/gsc_info
  - uc/huc_info
  - uc/guc_info
  - uc/guc_pc

These additions improve validation of Xe GT debugfs interfaces and
provide basic functional coverage for the GSC information debugfs node.

v2: Add support for guc and huc info (Daniele)
v3: Added checks for the device nodes.
v4: Consolidated the calls into single test_uc_info_read subtest
v5: Fixed mandatory and optional logs and access check
    is done using igt_sysfs_has_attr. (Daniele)
    Fixed subject nits. (Kamil)

Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
 tests/intel/xe_debugfs.c | 71 +++++++++++++++++++++++++++++++++++++++-
 1 file changed, 70 insertions(+), 1 deletion(-)

diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
index da482157e..5c045b04f 100644
--- a/tests/intel/xe_debugfs.c
+++ b/tests/intel/xe_debugfs.c
@@ -16,6 +16,18 @@ struct {
 	bool warn_on_not_hit;
 } opt = { 0 };
 
+struct uc_info_node {
+	const char *node;
+	bool mandatory;
+};
+
+static const struct uc_info_node uc_info_nodes[] = {
+	{ "uc/gsc_info", false },
+	{ "uc/huc_info", false },
+	{ "uc/guc_info", true },
+	{ "uc/guc_pc",   true },
+};
+
 /**
  * TEST: Xe debugfs test
  * Description: Xe-specific debugfs tests. These are complementary to the
@@ -595,6 +607,56 @@ static void check_gt_reg_sr(int fd, int gt)
 	igt_assert_eq(problems, 0);
 }
 
+/**
+ * SUBTEST: uc-info-read
+ * Description: This is for reading the uc device nodes.
+ */
+static void test_uc_info_read(struct xe_device *xe_dev, unsigned int gt)
+{
+	int debugfs_fd = igt_debugfs_gt_dir(xe_dev->fd, gt);
+	int i;
+	int fail_count = 0;
+
+	igt_skip_on_f(debugfs_fd < 0, "Failed to open debugfs directory\n");
+
+	for (i = 0; i < ARRAY_SIZE(uc_info_nodes); i++) {
+		const char *node = uc_info_nodes[i].node;
+		bool mandatory = uc_info_nodes[i].mandatory;
+		char *buf;
+
+		if (!igt_sysfs_has_attr(debugfs_fd, node)) {
+			if (mandatory)
+				fail_count++;
+			igt_info("%s debugfs node not present on GT-%u\n", node, gt);
+			continue;
+		}
+		buf = igt_sysfs_get(debugfs_fd, node);
+		if (!buf) {
+			if (mandatory)
+				fail_count++;
+
+			igt_info("Failed to read %s %s debugfs file on GT-%u\n",
+				 mandatory ? "mandatory" : "optional", node, gt);
+			continue;
+		}
+
+		if (buf[0] == '\0') {
+			free(buf);
+			if (mandatory)
+				fail_count++;
+			igt_info("%s %s debugfs file is empty on GT-%u\n",
+				 mandatory ? "mandatory" : "optional", node, gt);
+			continue;
+		}
+		igt_info("GT-%u: successfully read %s (%zu bytes)\n", gt, node, strlen(buf));
+		free(buf);
+	}
+	close(debugfs_fd);
+	igt_fail_on_f(fail_count > 0,
+		      "%d mandatory debugfs node(s) failed (missing/unreadable/empty) on GT-%u\n",
+		      fail_count, gt);
+}
+
 const char *help_str =
 	"  --warn-not-hit|--w\tWarn about devfs nodes that have no tests";
 
@@ -619,8 +681,9 @@ static int opt_handler(int option, int option_index, void *input)
 int igt_main_args("", long_options, help_str, opt_handler, NULL)
 {
 	struct xe_device *xe_dev;
+	int fd = -1;
+	unsigned int gt;
 	unsigned int t;
-	int fd = -1, gt;
 
 	igt_fixture() {
 		fd = drm_open_driver_master(DRIVER_XE);
@@ -648,6 +711,12 @@ int igt_main_args("", long_options, help_str, opt_handler, NULL)
 			igt_dynamic_f("gt%d", gt)
 				check_gt_reg_sr(fd, gt);
 
+	igt_describe("Verify that uC debugfs info nodes are present and readable.");
+	igt_subtest_with_dynamic("uc-info-read")
+		xe_for_each_gt(fd, gt)
+			igt_dynamic_f("gt%d", gt)
+				test_uc_info_read(xe_dev, gt);
+
 	igt_fixture() {
 		drm_close_driver(fd);
 	}
-- 
2.51.0


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

* ✓ Xe.CI.BAT: success for tests/intel/xe_debugfs: add uc debugfs validation and read tests
  2026-07-29  7:41 [PATCH i-g-t] tests/intel/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
@ 2026-07-29 15:30 ` Patchwork
  2026-07-29 16:15 ` ✓ i915.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-07-29 15:30 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_debugfs: add uc debugfs validation and read tests
URL   : https://patchwork.freedesktop.org/series/171230/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_9032_BAT -> XEIGTPW_15604_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Additional (1): bat-bmg-2 

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-bmg-2:          NOTRUN -> [SKIP][2] ([Intel XE#2233])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

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

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

  * igt@kms_frontbuffer_tracking@basic:
    - bat-bmg-2:          NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html

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

  * igt@xe_exec_multi_queue@priority:
    - bat-bmg-2:          NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/bat-bmg-2/igt@xe_exec_multi_queue@priority.html

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

  * igt@xe_pat@pat-index-xehpc:
    - bat-bmg-2:          NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - bat-bmg-2:          NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/bat-bmg-2/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-bmg-2:          NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html

  
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
  [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
  [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
  [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
  [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364


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

  * IGT: IGT_9032 -> IGTPW_15604
  * Linux: xe-5499-5df28e621a86e501b09902fdf816f8c02a162794 -> xe-5500-e0242e84b0b16424381b5a9981a3ee1a4a3786d3

  IGTPW_15604: 19f62a86f68cba0b13d604638695c5916d85e374 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_9032: 9032
  xe-5499-5df28e621a86e501b09902fdf816f8c02a162794: 5df28e621a86e501b09902fdf816f8c02a162794
  xe-5500-e0242e84b0b16424381b5a9981a3ee1a4a3786d3: e0242e84b0b16424381b5a9981a3ee1a4a3786d3

== Logs ==

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

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

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

* ✓ i915.CI.BAT: success for tests/intel/xe_debugfs: add uc debugfs validation and read tests
  2026-07-29  7:41 [PATCH i-g-t] tests/intel/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
  2026-07-29 15:30 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-07-29 16:15 ` Patchwork
  2026-07-29 19:16 ` ✗ Xe.CI.FULL: failure " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-07-29 16:15 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_debugfs: add uc debugfs validation and read tests
URL   : https://patchwork.freedesktop.org/series/171230/
State : success

== Summary ==

CI Bug Log - changes from IGT_9032 -> IGTPW_15604
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (3): bat-dg2-13 fi-snb-2520m bat-adls-6 


Changes
-------

  No changes found


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

  * CI: CI-20190529 -> None
  * IGT: IGT_9032 -> IGTPW_15604
  * Linux: CI_DRM_18917 -> CI_DRM_18918

  CI-20190529: 20190529
  CI_DRM_18917: e0242e84b0b16424381b5a9981a3ee1a4a3786d3 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18918: 13293e234fec99844f5ff4386553699f72f21e0e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15604: 19f62a86f68cba0b13d604638695c5916d85e374 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_9032: 9032

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for tests/intel/xe_debugfs: add uc debugfs validation and read tests
  2026-07-29  7:41 [PATCH i-g-t] tests/intel/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
  2026-07-29 15:30 ` ✓ Xe.CI.BAT: success for " Patchwork
  2026-07-29 16:15 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-07-29 19:16 ` Patchwork
  2026-07-30  2:22 ` ✗ i915.CI.Full: " Patchwork
  2026-07-30 20:47 ` [PATCH i-g-t] " Daniele Ceraolo Spurio
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-07-29 19:16 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_debugfs: add uc debugfs validation and read tests
URL   : https://patchwork.freedesktop.org/series/171230/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_9032_FULL -> XEIGTPW_15604_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@wf_vblank-ts-check:
    - shard-bmg:          [PASS][1] -> [SKIP][2] +1079 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check.html

  * igt@xe_exec_system_allocator@twice-mmap-remap-ro-dontunmap-eocheck:
    - shard-bmg:          NOTRUN -> [SKIP][3] +113 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_exec_system_allocator@twice-mmap-remap-ro-dontunmap-eocheck.html

  * igt@xe_module_load@force-load:
    - shard-bmg:          [PASS][4] -> [FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@xe_module_load@force-load.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_module_load@force-load.html

  
#### Warnings ####

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-bmg:          [SKIP][6] ([Intel XE#2327]) -> [SKIP][7] +8 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [SKIP][8] ([Intel XE#1124]) -> [SKIP][9] +15 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          [SKIP][10] ([Intel XE#2328] / [Intel XE#7367]) -> [SKIP][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][12] ([Intel XE#607] / [Intel XE#7361]) -> [SKIP][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p:
    - shard-bmg:          [SKIP][14] ([Intel XE#7679]) -> [SKIP][15] +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
    - shard-bmg:          [SKIP][16] ([Intel XE#367]) -> [SKIP][17] +2 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][18] ([Intel XE#2887]) -> [SKIP][19] +25 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-9/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][20] ([Intel XE#3432]) -> [SKIP][21]
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][22] ([Intel XE#2652]) -> [SKIP][23] +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-bmg:          [SKIP][24] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][25] +2 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-8/igt@kms_chamelium_color@ctm-negative.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
    - shard-bmg:          [SKIP][26] ([Intel XE#7358]) -> [SKIP][27] +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-1/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-bmg:          [SKIP][28] ([Intel XE#2252]) -> [SKIP][29] +12 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          [SKIP][30] ([Intel XE#7642]) -> [SKIP][31] +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-8/igt@kms_content_protection@content-type-change.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-bmg:          [SKIP][32] ([Intel XE#6974]) -> [SKIP][33]
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-bmg:          [FAIL][34] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][35] +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-4/igt@kms_content_protection@lic-type-0-hdcp14.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-bmg:          [FAIL][36] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][37]
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-7/igt@kms_content_protection@uevent-hdcp14.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          [SKIP][38] ([Intel XE#2320]) -> [SKIP][39] +7 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          [SKIP][40] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][41] +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          [SKIP][42] ([Intel XE#4331] / [Intel XE#7227]) -> [SKIP][43]
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
    - shard-bmg:          [SKIP][44] ([Intel XE#8265]) -> [SKIP][45] +6 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          [SKIP][46] ([Intel XE#4422] / [Intel XE#7442]) -> [SKIP][47]
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          [SKIP][48] ([Intel XE#4156] / [Intel XE#7425]) -> [SKIP][49]
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@kms_fbcon_fbt@fbc.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          [SKIP][50] ([Intel XE#2372] / [Intel XE#7359]) -> [SKIP][51]
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-8/igt@kms_feature_discovery@chamelium.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@dsc:
    - shard-bmg:          [SKIP][52] ([Intel XE#8586]) -> [SKIP][53]
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-7/igt@kms_feature_discovery@dsc.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_feature_discovery@dsc.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          [SKIP][54] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][55]
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][56] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][57] +7 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
    - shard-bmg:          [SKIP][58] ([Intel XE#7179]) -> [SKIP][59] +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-10/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html

  * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
    - shard-bmg:          [SKIP][60] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][61] +7 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][62] ([Intel XE#4141]) -> [SKIP][63] +21 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][64] ([Intel XE#2311]) -> [SKIP][65] +94 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-bmg:          [SKIP][66] ([Intel XE#2352] / [Intel XE#7399]) -> [SKIP][67] +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-blt:
    - shard-bmg:          [SKIP][68] ([Intel XE#7061]) -> [SKIP][69] +11 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-8/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-blt.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][70] ([Intel XE#2313]) -> [SKIP][71] +97 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-bmg:          [SKIP][72] ([Intel XE#6901]) -> [SKIP][73]
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@kms_joiner@invalid-modeset-big-joiner.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          [SKIP][74] ([Intel XE#6911] / [Intel XE#7466]) -> [SKIP][75]
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          [SKIP][76] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) -> [SKIP][77]
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
    - shard-bmg:          [SKIP][78] ([Intel XE#7283]) -> [SKIP][79] +9 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html

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

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][82] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          [SKIP][84] ([Intel XE#5020] / [Intel XE#7348]) -> [SKIP][85]
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
    - shard-bmg:          [SKIP][86] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][87] +2 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          [SKIP][88] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) -> [SKIP][89] +1 other test skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@kms_pm_backlight@fade.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-bmg:          [SKIP][90] ([Intel XE#3309] / [Intel XE#7368]) -> [SKIP][91]
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@kms_pm_dc@dc5-retention-flops.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-bmg:          [SKIP][92] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [SKIP][93]
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-9/igt@kms_pm_rpm@dpms-lpsp.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          [SKIP][94] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [SKIP][95]
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][96] ([Intel XE#1489]) -> [SKIP][97] +12 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-9/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-bmg:          [SKIP][98] ([Intel XE#2387] / [Intel XE#7429]) -> [SKIP][99]
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          [SKIP][100] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][101] +18 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-10/igt@kms_psr@psr-primary-page-flip.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          [SKIP][102] ([Intel XE#7795]) -> [SKIP][103]
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-bmg:          [SKIP][104] ([Intel XE#2330] / [Intel XE#5813]) -> [SKIP][105] +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          [SKIP][106] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][107] +3 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-10/igt@kms_rotation_crc@sprite-rotation-90.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          [SKIP][108] ([Intel XE#1435] / [Intel XE#8695]) -> [SKIP][109]
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-10/igt@kms_setmode@basic-clone-single-crtc.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_sharpness_filter@filter-toggle:
    - shard-bmg:          [SKIP][110] ([Intel XE#6503]) -> [SKIP][111] +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@kms_sharpness_filter@filter-toggle.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_sharpness_filter@filter-toggle.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][112] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][113]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][114] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][115]
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][116] ([Intel XE#1499]) -> [SKIP][117] +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-2/igt@kms_vrr@flip-suspend.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          [SKIP][118] ([Intel XE#2168] / [Intel XE#7444]) -> [SKIP][119]
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-10/igt@kms_vrr@lobf.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@kms_vrr@lobf.html

  * igt@xe_evict@evict-small-external-multi-queue:
    - shard-bmg:          [SKIP][120] ([Intel XE#8370]) -> [SKIP][121]
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-4/igt@xe_evict@evict-small-external-multi-queue.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_evict@evict-small-external-multi-queue.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          [SKIP][122] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][123] +14 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
    - shard-bmg:          [SKIP][124] ([Intel XE#8374]) -> [SKIP][125] +20 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html

  * igt@xe_exec_multi_queue@one-queue-priority-smem:
    - shard-bmg:          [SKIP][126] ([Intel XE#8364]) -> [SKIP][127] +49 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@xe_exec_multi_queue@one-queue-priority-smem.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_exec_multi_queue@one-queue-priority-smem.html

  * igt@xe_exec_reset@cm-multi-queue-gt-reset:
    - shard-bmg:          [SKIP][128] ([Intel XE#8369]) -> [SKIP][129] +1 other test skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-7/igt@xe_exec_reset@cm-multi-queue-gt-reset.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_exec_reset@cm-multi-queue-gt-reset.html

  * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
    - shard-bmg:          [SKIP][130] ([Intel XE#8378]) -> [SKIP][131] +15 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html

  * igt@xe_page_reclaim@many-vma-same-bo:
    - shard-bmg:          [SKIP][132] ([Intel XE#7793]) -> [SKIP][133] +3 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@xe_page_reclaim@many-vma-same-bo.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_page_reclaim@many-vma-same-bo.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          [SKIP][134] ([Intel XE#2245] / [Intel XE#7590]) -> [SKIP][135]
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-4/igt@xe_pat@pat-index-xelp.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-sw-hw-suspend:
    - shard-bmg:          [FAIL][136] ([Intel XE#7695]) -> [SKIP][137]
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-9/igt@xe_pat@pat-sw-hw-suspend.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_pat@pat-sw-hw-suspend.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-bmg:          [SKIP][138] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][139] +2 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@xe_pm@s4-d3cold-basic-exec.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          [SKIP][140] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][141] +3 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-bmg:          [SKIP][142] ([Intel XE#944]) -> [SKIP][143] +3 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-8/igt@xe_query@multigpu-query-hwconfig.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_query@multigpu-query-hwconfig.html

  
New tests
---------

  New tests have been introduced between XEIGT_9032_FULL and XEIGTPW_15604_FULL:

### New IGT tests (3) ###

  * igt@xe_debugfs@uc-info-read:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.06] s

  * igt@xe_debugfs@uc-info-read@gt0:
    - Statuses : 1 pass(s)
    - Exec time: [0.02] s

  * igt@xe_debugfs@uc-info-read@gt1:
    - Statuses : 1 pass(s)
    - Exec time: [0.02] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@unaligned-write:
    - shard-bmg:          [PASS][144] -> [SKIP][145] ([Intel XE#2134])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-2/igt@fbdev@unaligned-write.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@fbdev@unaligned-write.html

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          [PASS][146] -> [SKIP][147] ([Intel XE#5177])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@intel_hwmon@hwmon-write.html

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

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][149] ([Intel XE#2327])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][150] ([Intel XE#2328] / [Intel XE#7367])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][151] ([Intel XE#610] / [Intel XE#7387])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][152] ([Intel XE#1124]) +1 other test skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][153] ([Intel XE#2887]) +3 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          NOTRUN -> [SKIP][154] ([Intel XE#2724] / [Intel XE#7449])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-8/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_color_pipeline@plane-ctm3x4:
    - shard-bmg:          NOTRUN -> [SKIP][155] ([Intel XE#7358])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html

  * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
    - shard-bmg:          NOTRUN -> [SKIP][156] ([Intel XE#2252]) +1 other test skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][157] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-bmg:          NOTRUN -> [SKIP][158] ([Intel XE#2390] / [Intel XE#6974])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-6/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][159] ([Intel XE#2320]) +2 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

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

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          NOTRUN -> [SKIP][161] ([Intel XE#8265]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][162] ([Intel XE#4156] / [Intel XE#7425])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-bmg:          NOTRUN -> [SKIP][163] ([Intel XE#2375])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-5/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-lnl:          [PASS][164] -> [FAIL][165] ([Intel XE#301] / [Intel XE#3149])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][166] ([Intel XE#2311]) +23 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][168] ([Intel XE#7061])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][169] ([Intel XE#7061] / [Intel XE#7356])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-pri-indfb-multidraw:
    - shard-bmg:          NOTRUN -> [SKIP][170] ([Intel XE#2313]) +17 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-8/igt@kms_frontbuffer_tracking@psrhdr-1p-pri-indfb-multidraw.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          NOTRUN -> [SKIP][171] ([Intel XE#3374] / [Intel XE#3544])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][172] ([Intel XE#6911] / [Intel XE#7378])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          NOTRUN -> [SKIP][173] ([Intel XE#6912] / [Intel XE#7375])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-10/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][174] ([Intel XE#7283]) +2 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
    - shard-bmg:          NOTRUN -> [SKIP][175] ([Intel XE#2763] / [Intel XE#6886]) +9 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [PASS][176] -> [FAIL][177] ([Intel XE#8399])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][178] ([Intel XE#2499])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][179] ([Intel XE#1489])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][180] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-6/igt@kms_psr@fbc-psr-primary-render.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-lnl:          [PASS][181] -> [SKIP][182] ([Intel XE#8361])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-lnl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-lnl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_vrr@flip-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][183] ([Intel XE#1499])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_vrr@flip-dpms.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][184] -> [INCOMPLETE][185] ([Intel XE#6321] / [Intel XE#8355])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
    - shard-bmg:          NOTRUN -> [SKIP][186] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html

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

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-basic-smem:
    - shard-bmg:          NOTRUN -> [SKIP][188] ([Intel XE#8364]) +9 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-4/igt@xe_exec_multi_queue@one-queue-preempt-mode-basic-smem.html

  * igt@xe_exec_reset@long-spin-reuse-many-preempt-media:
    - shard-bmg:          [PASS][189] -> [FAIL][190] ([Intel XE#7850])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-4/igt@xe_exec_reset@long-spin-reuse-many-preempt-media.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-5/igt@xe_exec_reset@long-spin-reuse-many-preempt-media.html

  * igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][191] ([Intel XE#8378]) +2 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate-race.html

  * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
    - shard-bmg:          NOTRUN -> [SKIP][192] ([Intel XE#6281] / [Intel XE#7426])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-bmg:          [PASS][193] -> [SKIP][194] ([Intel XE#2229])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-10/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

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

  * igt@xe_pm@d3hot-basic-exec:
    - shard-lnl:          [PASS][196] -> [TIMEOUT][197] ([Intel XE#8633])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-lnl-7/igt@xe_pm@d3hot-basic-exec.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-lnl-5/igt@xe_pm@d3hot-basic-exec.html

  * igt@xe_pxp@pxp-termination-key-update-post-rpm:
    - shard-bmg:          NOTRUN -> [SKIP][198] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-rpm.html

  
#### Possible fixes ####

  * igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [FAIL][199] ([Intel XE#3098]) -> [PASS][200] +1 other test pass
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-3/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-9/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][201] ([Intel XE#301]) -> [PASS][202] +3 other tests pass
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@xe_exec_fault_mode@atomic-many:
    - shard-bmg:          [FAIL][203] ([Intel XE#8578]) -> [PASS][204]
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-6/igt@xe_exec_fault_mode@atomic-many.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-4/igt@xe_exec_fault_mode@atomic-many.html

  * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
    - shard-bmg:          [ABORT][205] ([Intel XE#8007]) -> [PASS][206]
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html

  
#### Warnings ####

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][207] ([Intel XE#301]) -> [FAIL][208] ([Intel XE#301] / [Intel XE#3149])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9032/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15604/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

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

  [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [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#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [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#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
  [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
  [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#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
  [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#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
  [Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [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#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
  [Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#8361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8361
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
  [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
  [Intel XE#8578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8578
  [Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586
  [Intel XE#8633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8633
  [Intel XE#8695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8695
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_9032 -> IGTPW_15604
  * Linux: xe-5499-5df28e621a86e501b09902fdf816f8c02a162794 -> xe-5500-e0242e84b0b16424381b5a9981a3ee1a4a3786d3

  IGTPW_15604: 19f62a86f68cba0b13d604638695c5916d85e374 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_9032: 9032
  xe-5499-5df28e621a86e501b09902fdf816f8c02a162794: 5df28e621a86e501b09902fdf816f8c02a162794
  xe-5500-e0242e84b0b16424381b5a9981a3ee1a4a3786d3: e0242e84b0b16424381b5a9981a3ee1a4a3786d3

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for tests/intel/xe_debugfs: add uc debugfs validation and read tests
  2026-07-29  7:41 [PATCH i-g-t] tests/intel/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
                   ` (2 preceding siblings ...)
  2026-07-29 19:16 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-07-30  2:22 ` Patchwork
  2026-07-30 20:47 ` [PATCH i-g-t] " Daniele Ceraolo Spurio
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-07-30  2:22 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_debugfs: add uc debugfs validation and read tests
URL   : https://patchwork.freedesktop.org/series/171230/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_18918_full -> IGTPW_15604_full
====================================================

Summary
-------

  **FAILURE**

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

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

  Missing    (1): pig-kbl-iris 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gem_contexts:
    - shard-rkl:          [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-8/igt@i915_selftest@live@gem_contexts.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@i915_selftest@live@gem_contexts.html
    - shard-tglu:         [PASS][3] -> [DMESG-FAIL][4] +1 other test dmesg-fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-tglu-5/igt@i915_selftest@live@gem_contexts.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-6/igt@i915_selftest@live@gem_contexts.html
    - shard-mtlp:         [PASS][5] -> [DMESG-FAIL][6] +1 other test dmesg-fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-mtlp-5/igt@i915_selftest@live@gem_contexts.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-2/igt@i915_selftest@live@gem_contexts.html

  * igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile:
    - shard-dg2:          [PASS][7] -> [SKIP][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-8/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html

  * igt@kms_pipe_stress@stress-xrgb8888-xtiled:
    - shard-tglu:         [PASS][9] -> [DMESG-WARN][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-tglu-9/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-5/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html

  
New tests
---------

  New tests have been introduced between CI_DRM_18918_full and IGTPW_15604_full:

### New IGT tests (36) ###

  * igt@kms_async_flips@async-flip-dpms:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [7.35, 49.53] s

  * igt@kms_async_flips@async-flip-dpms@pipe-a-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [3.97] s

  * igt@kms_async_flips@async-flip-dpms@pipe-a-hdmi-a-1:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [2.49, 12.25] s

  * igt@kms_async_flips@async-flip-dpms@pipe-a-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [2.52] s

  * igt@kms_async_flips@async-flip-dpms@pipe-a-hdmi-a-3:
    - Statuses : 1 pass(s)
    - Exec time: [2.66] s

  * igt@kms_async_flips@async-flip-dpms@pipe-a-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [2.80] s

  * igt@kms_async_flips@async-flip-dpms@pipe-b-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [2.99] s

  * igt@kms_async_flips@async-flip-dpms@pipe-b-hdmi-a-1:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [2.44, 12.24] s

  * igt@kms_async_flips@async-flip-dpms@pipe-b-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [2.10] s

  * igt@kms_async_flips@async-flip-dpms@pipe-b-hdmi-a-3:
    - Statuses : 1 pass(s)
    - Exec time: [2.23] s

  * igt@kms_async_flips@async-flip-dpms@pipe-b-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [2.17] s

  * igt@kms_async_flips@async-flip-dpms@pipe-c-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [2.82] s

  * igt@kms_async_flips@async-flip-dpms@pipe-c-hdmi-a-1:
    - Statuses : 1 pass(s)
    - Exec time: [2.47] s

  * igt@kms_async_flips@async-flip-dpms@pipe-c-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [2.13] s

  * igt@kms_async_flips@async-flip-dpms@pipe-c-hdmi-a-3:
    - Statuses : 1 pass(s)
    - Exec time: [2.23] s

  * igt@kms_async_flips@async-flip-dpms@pipe-c-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [2.16] s

  * igt@kms_async_flips@async-flip-dpms@pipe-d-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [2.92] s

  * igt@kms_async_flips@async-flip-dpms@pipe-d-hdmi-a-1:
    - Statuses : 1 pass(s)
    - Exec time: [2.44] s

  * igt@kms_async_flips@async-flip-dpms@pipe-d-hdmi-a-3:
    - Statuses : 1 pass(s)
    - Exec time: [2.23] s

  * igt@kms_async_flips@async-flip-dpms@pipe-d-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [2.17] s

  * igt@kms_async_flips@async-flip-hang:
    - Statuses : 7 pass(s)
    - Exec time: [27.71, 91.39] s

  * igt@kms_async_flips@async-flip-hang@pipe-a-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [15.87] s

  * igt@kms_async_flips@async-flip-hang@pipe-a-hdmi-a-1:
    - Statuses : 4 pass(s)
    - Exec time: [6.93, 27.75] s

  * igt@kms_async_flips@async-flip-hang@pipe-a-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [7.68] s

  * igt@kms_async_flips@async-flip-hang@pipe-a-hdmi-a-3:
    - Statuses : 2 pass(s)
    - Exec time: [26.14, 26.18] s

  * igt@kms_async_flips@async-flip-hang@pipe-b-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [14.91] s

  * igt@kms_async_flips@async-flip-hang@pipe-b-hdmi-a-1:
    - Statuses : 4 pass(s)
    - Exec time: [6.93, 14.68] s

  * igt@kms_async_flips@async-flip-hang@pipe-b-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [7.69] s

  * igt@kms_async_flips@async-flip-hang@pipe-b-hdmi-a-3:
    - Statuses : 2 pass(s)
    - Exec time: [24.78, 24.84] s

  * igt@kms_async_flips@async-flip-hang@pipe-c-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [15.63] s

  * igt@kms_async_flips@async-flip-hang@pipe-c-hdmi-a-1:
    - Statuses : 3 pass(s)
    - Exec time: [7.68, 15.20] s

  * igt@kms_async_flips@async-flip-hang@pipe-c-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [7.70] s

  * igt@kms_async_flips@async-flip-hang@pipe-c-hdmi-a-3:
    - Statuses : 2 pass(s)
    - Exec time: [14.84, 14.89] s

  * igt@kms_async_flips@async-flip-hang@pipe-d-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [15.57] s

  * igt@kms_async_flips@async-flip-hang@pipe-d-hdmi-a-1:
    - Statuses : 1 pass(s)
    - Exec time: [15.21] s

  * igt@kms_async_flips@async-flip-hang@pipe-d-hdmi-a-3:
    - Statuses : 2 pass(s)
    - Exec time: [24.79, 24.88] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-tglu:         NOTRUN -> [SKIP][13] ([i915#11078])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-5/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@fbdev@info:
    - shard-dg2:          [PASS][14] -> [SKIP][15] ([i915#1849] / [i915#2582])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-6/igt@fbdev@info.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@fbdev@info.html

  * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
    - shard-dg2:          [PASS][16] -> [INCOMPLETE][17] ([i915#13356] / [i915#16348])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#280])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-rkl:          NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_exec_balancer@bonded-true-hang:
    - shard-dg2:          NOTRUN -> [SKIP][20] ([i915#4812]) +2 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@gem_exec_balancer@bonded-true-hang.html

  * igt@gem_exec_balancer@hog:
    - shard-dg1:          NOTRUN -> [SKIP][21] ([i915#4812])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-18/igt@gem_exec_balancer@hog.html
    - shard-mtlp:         NOTRUN -> [SKIP][22] ([i915#4812])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-7/igt@gem_exec_balancer@hog.html

  * igt@gem_exec_balancer@parallel-contexts:
    - shard-tglu:         NOTRUN -> [SKIP][23] ([i915#4525])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-8/igt@gem_exec_balancer@parallel-contexts.html

  * igt@gem_exec_balancer@parallel-keep-submit-fence:
    - shard-rkl:          NOTRUN -> [SKIP][24] ([i915#4525])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html
    - shard-tglu-1:       NOTRUN -> [SKIP][25] ([i915#4525])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html

  * igt@gem_exec_big@single:
    - shard-tglu:         [PASS][26] -> [FAIL][27] ([i915#15816])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-tglu-8/igt@gem_exec_big@single.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-6/igt@gem_exec_big@single.html

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

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-rkl:          NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@gem_exec_capture@capture-invisible@smem0.html
    - shard-tglu:         NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-4/igt@gem_exec_capture@capture-invisible@smem0.html
    - shard-mtlp:         NOTRUN -> [SKIP][32] ([i915#6334]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-7/igt@gem_exec_capture@capture-invisible@smem0.html

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

  * igt@gem_exec_reloc@basic-cpu-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][34] ([i915#3281]) +7 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-cpu-wc-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][35] ([i915#3281]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html

  * igt@gem_exec_reloc@basic-write-gtt-active:
    - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#3281]) +3 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-5/igt@gem_exec_reloc@basic-write-gtt-active.html

  * igt@gem_exec_reloc@basic-write-gtt-noreloc:
    - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#3281]) +2 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-19/igt@gem_exec_reloc@basic-write-gtt-noreloc.html

  * igt@gem_fence_thrash@bo-copy:
    - shard-dg2:          NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@gem_fence_thrash@bo-copy.html

  * igt@gem_lmem_swapping@heavy-multi:
    - shard-glk:          NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk9/igt@gem_lmem_swapping@heavy-multi.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-tglu:         NOTRUN -> [SKIP][40] ([i915#4613])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-multi.html

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

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

  * igt@gem_mmap@big-bo:
    - shard-dg1:          NOTRUN -> [SKIP][44] ([i915#4083]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-14/igt@gem_mmap@big-bo.html

  * igt@gem_mmap_gtt@cpuset-big-copy:
    - shard-dg2:          NOTRUN -> [SKIP][45] ([i915#4077]) +8 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy.html

  * igt@gem_mmap_wc@bad-offset:
    - shard-mtlp:         NOTRUN -> [SKIP][46] ([i915#4083])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-8/igt@gem_mmap_wc@bad-offset.html
    - shard-dg2:          NOTRUN -> [SKIP][47] ([i915#4083])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@gem_mmap_wc@bad-offset.html

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

  * igt@gem_partial_pwrite_pread@write-snoop:
    - shard-dg1:          NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-12/igt@gem_partial_pwrite_pread@write-snoop.html
    - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#3282]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-5/igt@gem_partial_pwrite_pread@write-snoop.html

  * igt@gem_partial_pwrite_pread@writes-after-reads:
    - shard-rkl:          NOTRUN -> [SKIP][51] ([i915#3282]) +4 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_pread@exhaustion:
    - shard-glk:          NOTRUN -> [WARN][52] ([i915#2658])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk5/igt@gem_pread@exhaustion.html
    - shard-tglu:         NOTRUN -> [WARN][53] ([i915#2658])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-2/igt@gem_pread@exhaustion.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html

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

  * igt@gem_tiled_pread_basic@basic:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#15657])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-7/igt@gem_tiled_pread_basic@basic.html
    - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#15657])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-14/igt@gem_tiled_pread_basic@basic.html
    - shard-mtlp:         NOTRUN -> [SKIP][58] ([i915#15657])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-3/igt@gem_tiled_pread_basic@basic.html

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

  * igt@gem_userptr_blits@coherency-sync:
    - shard-rkl:          NOTRUN -> [SKIP][60] ([i915#14544] / [i915#3297]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
    - shard-tglu-1:       NOTRUN -> [SKIP][61] ([i915#3297]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-rkl:          NOTRUN -> [SKIP][62] ([i915#3282] / [i915#3297])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#3297]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html

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

  * igt@gem_workarounds@suspend-resume-context:
    - shard-glk:          NOTRUN -> [INCOMPLETE][65] ([i915#13356])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk1/igt@gem_workarounds@suspend-resume-context.html
    - shard-rkl:          [PASS][66] -> [INCOMPLETE][67] ([i915#13356]) +1 other test incomplete
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-7/igt@gem_workarounds@suspend-resume-context.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@gem_workarounds@suspend-resume-context.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-glk:          [PASS][68] -> [INCOMPLETE][69] ([i915#13356] / [i915#14586])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-glk6/igt@gem_workarounds@suspend-resume-fd.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk9/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen7_exec_parse@basic-rejected:
    - shard-dg2:          NOTRUN -> [SKIP][70] +4 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-7/igt@gen7_exec_parse@basic-rejected.html

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

  * igt@gen9_exec_parse@bb-chained:
    - shard-rkl:          NOTRUN -> [SKIP][72] ([i915#2527]) +2 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@gen9_exec_parse@bb-chained.html

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

  * igt@gen9_exec_parse@bb-start-far:
    - shard-dg1:          NOTRUN -> [SKIP][74] ([i915#2527])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@gen9_exec_parse@bb-start-far.html

  * igt@gpu_buddy@gpu_buddy:
    - shard-dg1:          NOTRUN -> [SKIP][75] ([i915#15678])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-15/igt@gpu_buddy@gpu_buddy.html

  * igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1:
    - shard-dg2:          NOTRUN -> [SKIP][76] ([i915#14073]) +15 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-8/igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1.html

  * igt@i915_fb_tiling@basic-x-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#13786])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@i915_fb_tiling@basic-x-tiling.html

  * igt@i915_module_load@reload-no-display:
    - shard-dg2:          [PASS][78] -> [DMESG-WARN][79] ([i915#13029] / [i915#14545])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-8/igt@i915_module_load@reload-no-display.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-5/igt@i915_module_load@reload-no-display.html
    - shard-tglu-1:       NOTRUN -> [DMESG-WARN][80] ([i915#13029] / [i915#14545])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@i915_module_load@reload-no-display.html
    - shard-dg1:          [PASS][81] -> [DMESG-WARN][82] ([i915#13029] / [i915#14545])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg1-15/igt@i915_module_load@reload-no-display.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@i915_module_load@reload-no-display.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][83] ([i915#13356] / [i915#13820]) +1 other test incomplete
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-tglu:         NOTRUN -> [SKIP][84] ([i915#6590]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-8/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#16080] / [i915#16166])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@i915_pm_rps@basic-api:
    - shard-dg1:          NOTRUN -> [SKIP][86] ([i915#11681] / [i915#6621])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-19/igt@i915_pm_rps@basic-api.html
    - shard-mtlp:         NOTRUN -> [SKIP][87] ([i915#11681] / [i915#6621])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-7/igt@i915_pm_rps@basic-api.html
    - shard-dg2:          NOTRUN -> [SKIP][88] ([i915#11681] / [i915#6621])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@i915_pm_rps@basic-api.html

  * igt@i915_power@sanity:
    - shard-mtlp:         [PASS][89] -> [SKIP][90] ([i915#7984])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-mtlp-3/igt@i915_power@sanity.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-4/igt@i915_power@sanity.html

  * igt@i915_query@hwconfig_table:
    - shard-rkl:          NOTRUN -> [SKIP][91] ([i915#6245])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@i915_query@hwconfig_table.html

  * igt@i915_query@query-topology-unsupported:
    - shard-rkl:          NOTRUN -> [SKIP][92] ([i915#16079])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-1/igt@i915_query@query-topology-unsupported.html
    - shard-tglu-1:       NOTRUN -> [SKIP][93] ([i915#16079])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@i915_query@query-topology-unsupported.html

  * igt@intel_hwmon@hwmon-write:
    - shard-rkl:          NOTRUN -> [SKIP][94] ([i915#7707])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@bo-too-small-due-to-tiling:
    - shard-dg1:          NOTRUN -> [SKIP][95] ([i915#4212])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][96] ([i915#12761])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][97] ([i915#12761] / [i915#14995])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html

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

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

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2:          NOTRUN -> [SKIP][103] ([i915#16707]) +12 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
    - shard-mtlp:         [PASS][104] -> [FAIL][105] ([i915#15733] / [i915#5138])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][106] ([i915#3638])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-3/igt@kms_big_fb@linear-8bpp-rotate-270.html

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

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-dg2:          NOTRUN -> [SKIP][108] ([i915#3828])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-rkl:          NOTRUN -> [SKIP][109] ([i915#3828]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-dg1:          NOTRUN -> [SKIP][110] ([i915#3828])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-tglu:         NOTRUN -> [SKIP][111] ([i915#3828])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-mtlp:         NOTRUN -> [SKIP][112] ([i915#3828])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#3638])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
    - shard-mtlp:         NOTRUN -> [SKIP][114] +2 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][115] ([i915#16707] / [i915#5190]) +2 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5190]) +4 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][117] ([i915#4538])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][118] ([i915#14098] / [i915#6095]) +44 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
    - shard-rkl:          NOTRUN -> [SKIP][119] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][120] ([i915#14544] / [i915#6095]) +7 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][121] ([i915#12313]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][122] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][123] ([i915#6095]) +54 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][124] ([i915#12313])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
    - shard-snb:          NOTRUN -> [SKIP][125] +58 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-snb5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][126] ([i915#6095]) +69 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html

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

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
    - shard-glk10:        NOTRUN -> [SKIP][128] +77 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][129] ([i915#12805])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][130] ([i915#15582]) +1 other test incomplete
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#12313])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][132] ([i915#6095]) +231 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][133] ([i915#6095]) +4 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][134] ([i915#10307] / [i915#6095]) +83 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3.html

  * igt@kms_cdclk@mode-transition:
    - shard-glk:          NOTRUN -> [SKIP][135] +294 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk3/igt@kms_cdclk@mode-transition.html

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

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

  * igt@kms_chamelium_audio@dp-audio-edid:
    - shard-dg1:          NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) +2 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-15/igt@kms_chamelium_audio@dp-audio-edid.html

  * igt@kms_chamelium_audio@hdmi-audio-after-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][139] ([i915#11151])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html

  * igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d:
    - shard-tglu-1:       NOTRUN -> [SKIP][140] ([i915#16471])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d:
    - shard-rkl:          NOTRUN -> [SKIP][141] ([i915#14544] / [i915#16471])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4:
    - shard-tglu:         NOTRUN -> [SKIP][142] ([i915#16471])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4:
    - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#16471])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
    - shard-rkl:          NOTRUN -> [SKIP][144] ([i915#16471])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
    - shard-dg1:          NOTRUN -> [SKIP][145] ([i915#16471])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-12/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
    - shard-mtlp:         NOTRUN -> [SKIP][146] ([i915#16464] / [i915#16471])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-5/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +5 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_chamelium_frames@dp-frame-dump.html
    - shard-rkl:          NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +7 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@kms_chamelium_frames@dp-frame-dump.html

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

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

  * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +1 other test skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html

  * igt@kms_color@ctm-blue-to-red:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#12655])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_color@ctm-blue-to-red.html

  * igt@kms_color@legacy-gamma:
    - shard-dg2:          [PASS][153] -> [SKIP][154] ([i915#12655])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-4/igt@kms_color@legacy-gamma.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_color@legacy-gamma.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglu-1:       NOTRUN -> [SKIP][155] ([i915#15865])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html

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

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

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#15330] / [i915#3299])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-rkl:          NOTRUN -> [SKIP][159] ([i915#15330] / [i915#3116]) +2 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-dg1:          NOTRUN -> [SKIP][160] ([i915#15330] / [i915#3299])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-tglu:         NOTRUN -> [SKIP][161] ([i915#15330] / [i915#3116] / [i915#3299])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-mtlp:         NOTRUN -> [SKIP][162] ([i915#15330] / [i915#3299])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-1.html

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

  * igt@kms_content_protection@legacy-hdcp14:
    - shard-dg1:          NOTRUN -> [SKIP][165] ([i915#15865])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-18/igt@kms_content_protection@legacy-hdcp14.html
    - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#15865])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-7/igt@kms_content_protection@legacy-hdcp14.html

  * igt@kms_content_protection@lic-type-0:
    - shard-tglu:         NOTRUN -> [SKIP][167] ([i915#15865]) +3 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-7/igt@kms_content_protection@lic-type-0.html

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

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-dg1:          NOTRUN -> [SKIP][169] ([i915#3555])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-rkl:          [PASS][170] -> [FAIL][171] ([i915#13566]) +1 other test fail
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][172] -> [FAIL][173] ([i915#13566]) +1 other test fail
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html

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

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-rkl:          NOTRUN -> [SKIP][175] ([i915#13049]) +2 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-rkl:          NOTRUN -> [SKIP][176] ([i915#3555]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_cursor_crc@cursor-random-max-size.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][177] ([i915#13049]) +3 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

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

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-mtlp:         NOTRUN -> [SKIP][179] ([i915#13049])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-dg2:          NOTRUN -> [SKIP][180] ([i915#13049])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-dg1:          NOTRUN -> [SKIP][181] ([i915#13049])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][182] ([i915#4103]) +2 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-dg1:          NOTRUN -> [SKIP][183] ([i915#4103])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-tglu:         NOTRUN -> [SKIP][184] ([i915#4103])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-mtlp:         NOTRUN -> [SKIP][185] ([i915#16119] / [i915#4213])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#11190] / [i915#16707])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
    - shard-dg2:          [PASS][187] -> [SKIP][188] ([i915#11190] / [i915#16707]) +1 other test skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
    - shard-dg1:          [PASS][189] -> [DMESG-WARN][190] ([i915#4423])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg1-16/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-12/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-dg2:          NOTRUN -> [SKIP][191] ([i915#13046] / [i915#5354])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
    - shard-mtlp:         NOTRUN -> [SKIP][192] ([i915#9809])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][193] ([i915#4103])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-rkl:          NOTRUN -> [SKIP][194] ([i915#14544] / [i915#9723])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

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

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-tglu-1:       NOTRUN -> [SKIP][196] ([i915#13707])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2:          NOTRUN -> [SKIP][197] ([i915#16361])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-rkl:          NOTRUN -> [SKIP][198] ([i915#16361]) +4 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-output-formats-bigjoiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][199] ([i915#16361]) +1 other test skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
    - shard-tglu:         NOTRUN -> [SKIP][200] ([i915#16361])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][201] ([i915#9878])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-rkl:          NOTRUN -> [INCOMPLETE][202] ([i915#9878])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-rkl:          NOTRUN -> [SKIP][203] ([i915#16084])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@hdr:
    - shard-dg2:          NOTRUN -> [SKIP][204] ([i915#16600])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-7/igt@kms_feature_discovery@hdr.html
    - shard-dg1:          NOTRUN -> [SKIP][205] ([i915#16600])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-14/igt@kms_feature_discovery@hdr.html
    - shard-tglu:         NOTRUN -> [SKIP][206] ([i915#16600])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-3/igt@kms_feature_discovery@hdr.html
    - shard-mtlp:         NOTRUN -> [SKIP][207] ([i915#16600])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-6/igt@kms_feature_discovery@hdr.html

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

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

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

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-dg1:          NOTRUN -> [SKIP][211] ([i915#8381]) +1 other test skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_flip@2x-plain-flip-interruptible:
    - shard-rkl:          NOTRUN -> [SKIP][212] ([i915#9934]) +4 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html
    - shard-tglu-1:       NOTRUN -> [SKIP][213] ([i915#3637] / [i915#9934]) +3 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
    - shard-dg1:          NOTRUN -> [SKIP][214] ([i915#9934])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@kms_flip@2x-plain-flip-interruptible.html
    - shard-mtlp:         NOTRUN -> [SKIP][215] ([i915#3637] / [i915#9934])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-4/igt@kms_flip@2x-plain-flip-interruptible.html

  * igt@kms_flip@absolute-wf_vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][216] ([i915#5354])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_flip@absolute-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-fences:
    - shard-mtlp:         NOTRUN -> [SKIP][217] ([i915#8381])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-3/igt@kms_flip@flip-vs-fences.html
    - shard-dg2:          NOTRUN -> [SKIP][218] ([i915#8381])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-5/igt@kms_flip@flip-vs-fences.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-dg2:          [PASS][219] -> [SKIP][220] ([i915#5354]) +5 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-4/igt@kms_flip@flip-vs-suspend.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_flip@flip-vs-suspend.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][223] ([i915#15643])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][224] ([i915#15643])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-rkl:          NOTRUN -> [SKIP][226] ([i915#14544] / [i915#15643])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
    - shard-dg2:          [PASS][227] -> [SKIP][228] ([i915#3555]) +2 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][230] ([i915#15104] / [i915#15990])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][231] ([i915#15104] / [i915#15990])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
    - shard-dg2:          [PASS][232] -> [SKIP][233] ([i915#16708] / [i915#5354]) +4 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html

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

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-dg1:          NOTRUN -> [SKIP][236] +16 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][237] ([i915#15990] / [i915#8708]) +4 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][238] ([i915#15990] / [i915#8708]) +1 other test skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][239] ([i915#15989]) +19 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html

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

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

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

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][243] ([i915#14544]) +7 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary:
    - shard-tglu-1:       NOTRUN -> [SKIP][244] ([i915#15989]) +13 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbchdr-suspend:
    - shard-tglu:         NOTRUN -> [SKIP][245] ([i915#15989]) +16 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-5/igt@kms_frontbuffer_tracking@fbchdr-suspend.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][247] ([i915#15104] / [i915#15990]) +2 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][249] ([i915#16708] / [i915#5354]) +5 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#15991] / [i915#5354]) +8 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite:
    - shard-mtlp:         NOTRUN -> [SKIP][251] ([i915#15991] / [i915#1825]) +4 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
    - shard-tglu-1:       NOTRUN -> [SKIP][252] ([i915#15102]) +32 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
    - shard-mtlp:         NOTRUN -> [SKIP][253] ([i915#15991]) +4 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-render:
    - shard-glk11:        NOTRUN -> [SKIP][254] +82 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk11/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][255] ([i915#5439])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html

  * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite:
    - shard-rkl:          [PASS][256] -> [SKIP][257] ([i915#15989]) +10 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite.html
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen:
    - shard-dg2:          NOTRUN -> [SKIP][258] ([i915#16708]) +3 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][259] ([i915#15990]) +1 other test skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][260] ([i915#15990])
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-4/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-onoff:
    - shard-glk:          [PASS][261] -> [SKIP][262]
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-onoff.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk5/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-rkl:          NOTRUN -> [SKIP][263] ([i915#9766])
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

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

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

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

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][267] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][268] ([i915#15990] / [i915#8708]) +8 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][269] ([i915#15102] / [i915#3023]) +15 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
    - shard-dg1:          NOTRUN -> [SKIP][270] ([i915#15102]) +7 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-14/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][271] ([i915#15990]) +11 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
    - shard-rkl:          NOTRUN -> [SKIP][272] +84 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][273] ([i915#15991]) +18 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_hdr@static-swap:
    - shard-rkl:          NOTRUN -> [SKIP][274] ([i915#16644] / [i915#3555] / [i915#8228])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@kms_hdr@static-swap.html

  * igt@kms_hdr@static-toggle:
    - shard-rkl:          [PASS][275] -> [SKIP][276] ([i915#16644] / [i915#3555] / [i915#8228])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-1/igt@kms_hdr@static-toggle.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-3/igt@kms_hdr@static-toggle.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][277] ([i915#15460])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_joiner@basic-big-joiner.html
    - shard-rkl:          NOTRUN -> [SKIP][278] ([i915#14544] / [i915#15460])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
    - shard-tglu-1:       NOTRUN -> [SKIP][279] ([i915#15460])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html

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

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

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][282] ([i915#15458]) +1 other test skip
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html

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

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

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2:          NOTRUN -> [SKIP][285] ([i915#15815])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-rkl:          NOTRUN -> [SKIP][286] ([i915#15815])
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-rkl:          NOTRUN -> [SKIP][287] ([i915#6301])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html

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

  * igt@kms_pipe_stress@stress-xrgb8888-untiled:
    - shard-tglu:         [PASS][289] -> [DMESG-WARN][290] ([i915#16696])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-tglu-2/igt@kms_pipe_stress@stress-xrgb8888-untiled.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-7/igt@kms_pipe_stress@stress-xrgb8888-untiled.html
    - shard-glk11:        NOTRUN -> [DMESG-WARN][291] ([i915#118])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk11/igt@kms_pipe_stress@stress-xrgb8888-untiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
    - shard-tglu:         NOTRUN -> [SKIP][292] ([i915#15709]) +3 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html

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

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

  * igt@kms_plane@pixel-format-linear-modifier:
    - shard-dg2:          [PASS][295] -> [SKIP][296] ([i915#8825])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-6/igt@kms_plane@pixel-format-linear-modifier.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_plane@pixel-format-linear-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
    - shard-dg2:          NOTRUN -> [SKIP][297] ([i915#15709]) +2 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
    - shard-rkl:          NOTRUN -> [SKIP][298] ([i915#15709]) +4 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/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-1:       NOTRUN -> [SKIP][299] ([i915#16386]) +1 other test skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/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-1:       NOTRUN -> [SKIP][300] ([i915#15709]) +2 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
    - shard-dg1:          NOTRUN -> [SKIP][301] ([i915#15709]) +2 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
    - shard-mtlp:         NOTRUN -> [SKIP][302] ([i915#15709])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-4/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html

  * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y:
    - shard-dg1:          NOTRUN -> [SKIP][303] ([i915#16112])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-17/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html

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

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

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

  * igt@kms_plane_multiple@tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][307] ([i915#14259])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-rkl:          NOTRUN -> [SKIP][308] ([i915#14259])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2:          NOTRUN -> [SKIP][309] ([i915#6953] / [i915#9423])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-rkl:          NOTRUN -> [SKIP][310] ([i915#6953])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-tglu-1:       NOTRUN -> [SKIP][311] ([i915#6953])
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html

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

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers:
    - shard-dg2:          [PASS][313] -> [SKIP][314] ([i915#15329] / [i915#9423]) +2 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
    - shard-dg2:          [PASS][315] -> [SKIP][316] ([i915#15329]) +19 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
    - shard-dg2:          NOTRUN -> [SKIP][317] ([i915#15329] / [i915#9423])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
    - shard-dg2:          NOTRUN -> [SKIP][318] ([i915#15329]) +3 other tests skip
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-dg2:          [PASS][319] -> [SKIP][320] ([i915#15329] / [i915#6953] / [i915#9423]) +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

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

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][322] ([i915#12343] / [i915#5354]) +1 other test skip
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_pm_backlight@fade-with-suspend.html

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

  * igt@kms_pm_dc@dc6-psr:
    - shard-tglu:         NOTRUN -> [SKIP][324] ([i915#15948])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-7/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][325] ([i915#14544] / [i915#15739])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
    - shard-tglu-1:       NOTRUN -> [SKIP][326] ([i915#15739])
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-rkl:          [PASS][327] -> [SKIP][328] ([i915#15073])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

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

  * igt@kms_pm_rpm@fences:
    - shard-dg1:          NOTRUN -> [SKIP][330] ([i915#4077]) +3 other tests skip
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-16/igt@kms_pm_rpm@fences.html
    - shard-mtlp:         NOTRUN -> [SKIP][331] ([i915#4077]) +3 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-4/igt@kms_pm_rpm@fences.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-rkl:          [PASS][332] -> [SKIP][333] ([i915#14544] / [i915#15073])
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg2:          [PASS][334] -> [SKIP][335] ([i915#15073]) +1 other test skip
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp.html
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html
    - shard-tglu-1:       NOTRUN -> [SKIP][336] ([i915#15073])
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-glk:          [PASS][337] -> [INCOMPLETE][338] ([i915#10553])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-glk5/igt@kms_pm_rpm@system-suspend-modeset.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk4/igt@kms_pm_rpm@system-suspend-modeset.html

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

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

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

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

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

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
    - shard-glk:          NOTRUN -> [SKIP][344] ([i915#11520]) +4 other tests skip
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-dg1:          NOTRUN -> [SKIP][345] ([i915#11520]) +1 other test skip
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

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

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

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

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][349] ([i915#9683])
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
    - shard-tglu-1:       NOTRUN -> [SKIP][350] ([i915#9683])
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-tglu:         NOTRUN -> [SKIP][351] ([i915#9683])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-6/igt@kms_psr2_su@page_flip-xrgb8888.html

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

  * igt@kms_psr@fbc-pr-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +4 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-14/igt@kms_psr@fbc-pr-suspend.html

  * igt@kms_psr@fbc-psr-no-drrs:
    - shard-tglu:         NOTRUN -> [SKIP][354] ([i915#9732]) +11 other tests skip
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-3/igt@kms_psr@fbc-psr-no-drrs.html

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

  * igt@kms_psr@psr-sprite-plane-move:
    - shard-tglu-1:       NOTRUN -> [SKIP][356] ([i915#9732]) +11 other tests skip
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-1/igt@kms_psr@psr-sprite-plane-move.html

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

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

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          NOTRUN -> [SKIP][360] ([i915#12755] / [i915#15867])
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-rkl:          NOTRUN -> [SKIP][361] ([i915#5289])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
    - shard-dg2:          NOTRUN -> [SKIP][362] ([i915#5190])
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-tglu:         NOTRUN -> [SKIP][363] ([i915#3555]) +1 other test skip
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_universal_plane@universal-plane-sanity:
    - shard-dg2:          [PASS][364] -> [SKIP][365] ([i915#16707]) +40 other tests skip
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-4/igt@kms_universal_plane@universal-plane-sanity.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_universal_plane@universal-plane-sanity.html

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

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][367] ([i915#12276]) +3 other tests incomplete
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html

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

  * igt@kms_vrr@flipline:
    - shard-rkl:          NOTRUN -> [SKIP][369] ([i915#15243] / [i915#3555])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-3/igt@kms_vrr@flipline.html

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

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-rkl:          NOTRUN -> [SKIP][371] ([i915#9906]) +3 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf_pmu@busy-idle-check-all@vcs0:
    - shard-dg2:          [PASS][372] -> [FAIL][373] ([i915#4349]) +5 other tests fail
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-7/igt@perf_pmu@busy-idle-check-all@vcs0.html
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@perf_pmu@busy-idle-check-all@vcs0.html

  * igt@perf_pmu@module-unload:
    - shard-glk:          NOTRUN -> [ABORT][374] ([i915#15778])
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk2/igt@perf_pmu@module-unload.html
    - shard-dg2:          NOTRUN -> [ABORT][375] ([i915#13029] / [i915#15778])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@perf_pmu@module-unload.html
    - shard-rkl:          NOTRUN -> [ABORT][376] ([i915#15778])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-3/igt@perf_pmu@module-unload.html
    - shard-dg1:          NOTRUN -> [ABORT][377] ([i915#13029] / [i915#15778])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-18/igt@perf_pmu@module-unload.html
    - shard-snb:          NOTRUN -> [ABORT][378] ([i915#15778])
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-snb4/igt@perf_pmu@module-unload.html
    - shard-tglu:         NOTRUN -> [ABORT][379] ([i915#15778])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-7/igt@perf_pmu@module-unload.html
    - shard-mtlp:         NOTRUN -> [ABORT][380] ([i915#15778])
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-6/igt@perf_pmu@module-unload.html

  * igt@perf_pmu@most-busy-check-all@bcs0:
    - shard-mtlp:         [PASS][381] -> [FAIL][382] ([i915#15997]) +1 other test fail
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-mtlp-1/igt@perf_pmu@most-busy-check-all@bcs0.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-1/igt@perf_pmu@most-busy-check-all@bcs0.html

  * igt@perf_pmu@rc6-suspend:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][383] ([i915#13356] / [i915#16236])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk11/igt@perf_pmu@rc6-suspend.html
    - shard-rkl:          NOTRUN -> [ABORT][384] ([i915#15131])
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-1/igt@perf_pmu@rc6-suspend.html

  * igt@prime_udl@share-import:
    - shard-tglu:         NOTRUN -> [SKIP][385] ([i915#16420])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-9/igt@prime_udl@share-import.html

  * igt@prime_udl@share-import-addfb:
    - shard-dg2:          NOTRUN -> [SKIP][386] ([i915#16420])
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@prime_udl@share-import-addfb.html

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

  * igt@prime_vgem@coherency-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][388] ([i915#3708] / [i915#4077])
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-13/igt@prime_vgem@coherency-gtt.html

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

  
#### Possible fixes ####

  * igt@gem_exec_big@single:
    - shard-mtlp:         [FAIL][390] ([i915#15871]) -> [PASS][391]
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-mtlp-6/igt@gem_exec_big@single.html
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-2/igt@gem_exec_big@single.html

  * igt@gem_exec_suspend@basic-s0:
    - shard-dg2:          [INCOMPLETE][392] ([i915#13356]) -> [PASS][393] +1 other test pass
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_workarounds@suspend-resume:
    - shard-rkl:          [INCOMPLETE][394] ([i915#13356]) -> [PASS][395] +1 other test pass
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@gem_workarounds@suspend-resume.html
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@gem_workarounds@suspend-resume.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2:
    - shard-glk:          [FAIL][396] ([i915#14888]) -> [PASS][397] +1 other test pass
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2.html
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-rkl:          [INCOMPLETE][398] ([i915#15582]) -> [PASS][399]
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_color@ctm-blue-to-red:
    - shard-dg1:          [DMESG-WARN][400] ([i915#4423]) -> [PASS][401]
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg1-14/igt@kms_color@ctm-blue-to-red.html
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-19/igt@kms_color@ctm-blue-to-red.html

  * igt@kms_color@ctm-green-to-red:
    - shard-dg2:          [SKIP][402] ([i915#12655]) -> [PASS][403]
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_color@ctm-green-to-red.html
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_color@ctm-green-to-red.html

  * igt@kms_cursor_crc@cursor-random-128x42:
    - shard-rkl:          [FAIL][404] ([i915#13566]) -> [PASS][405]
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-tglu:         [FAIL][406] ([i915#13566]) -> [PASS][407] +1 other test pass
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_edge_walk@256x256-top-edge:
    - shard-dg2:          [SKIP][408] ([i915#16707]) -> [PASS][409] +20 other tests pass
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_cursor_edge_walk@256x256-top-edge.html
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_cursor_edge_walk@256x256-top-edge.html

  * igt@kms_flip@blocking-wf_vblank@b-vga1:
    - shard-snb:          [FAIL][410] ([i915#14600]) -> [PASS][411] +1 other test pass
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-snb6/igt@kms_flip@blocking-wf_vblank@b-vga1.html
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-snb5/igt@kms_flip@blocking-wf_vblank@b-vga1.html

  * igt@kms_flip@bo-too-big:
    - shard-dg2:          [SKIP][412] ([i915#5354]) -> [PASS][413] +1 other test pass
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_flip@bo-too-big.html
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_flip@bo-too-big.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-rkl:          [INCOMPLETE][414] ([i915#16276] / [i915#6113]) -> [PASS][415] +2 other tests pass
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3:
    - shard-dg2:          [FAIL][416] ([i915#14600]) -> [PASS][417] +1 other test pass
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-1/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3.html
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-dg2:          [SKIP][418] ([i915#3555]) -> [PASS][419] +2 other tests pass
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
    - shard-dg2:          [SKIP][420] ([i915#16708] / [i915#5354]) -> [PASS][421] +5 other tests pass
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-glk:          [SKIP][422] -> [PASS][423] +2 other tests pass
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-glk9/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt:
    - shard-rkl:          [SKIP][424] ([i915#15989]) -> [PASS][425] +7 other tests pass
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_pipe_crc_basic@hang-read-crc:
    - shard-dg2:          [SKIP][426] ([i915#11190] / [i915#16707]) -> [PASS][427]
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_pipe_crc_basic@hang-read-crc.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_pipe_crc_basic@hang-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-rkl:          [ABORT][428] ([i915#15132]) -> [PASS][429] +1 other test pass
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
    - shard-dg2:          [SKIP][430] ([i915#8825]) -> [PASS][431] +3 other tests pass
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-dg2:          [SKIP][432] ([i915#15329] / [i915#6953] / [i915#9423]) -> [PASS][433]
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
    - shard-dg2:          [SKIP][434] ([i915#15329]) -> [PASS][435] +3 other tests pass
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg1:          [SKIP][436] ([i915#15073]) -> [PASS][437]
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-17/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-rkl:          [SKIP][438] ([i915#15073]) -> [PASS][439]
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_properties@crtc-properties-legacy:
    - shard-dg2:          [SKIP][440] ([i915#11521]) -> [PASS][441] +1 other test pass
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_properties@crtc-properties-legacy.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_properties@crtc-properties-legacy.html

  * igt@kms_setmode@basic:
    - shard-dg1:          [FAIL][442] ([i915#15106]) -> [PASS][443] +1 other test pass
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg1-15/igt@kms_setmode@basic.html
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-15/igt@kms_setmode@basic.html

  * igt@perf_pmu@busy-double-start:
    - shard-mtlp:         [FAIL][444] ([i915#4349]) -> [PASS][445] +2 other tests pass
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-mtlp-7/igt@perf_pmu@busy-double-start.html
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-mtlp-3/igt@perf_pmu@busy-double-start.html

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

  
#### Warnings ####

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

  * igt@gem_bad_reloc@negative-reloc-lut:
    - shard-rkl:          [SKIP][450] ([i915#3281]) -> [SKIP][451] ([i915#14544] / [i915#3281]) +5 other tests skip
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-rkl:          [SKIP][452] ([i915#14544] / [i915#7697]) -> [SKIP][453] ([i915#7697])
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_create@create-ext-set-pat:
    - shard-rkl:          [SKIP][454] ([i915#14544] / [i915#8562]) -> [SKIP][455] ([i915#8562])
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-rkl:          [SKIP][456] ([i915#14544] / [i915#280]) -> [SKIP][457] ([i915#280])
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_exec_reloc@basic-gtt-read-active:
    - shard-rkl:          [SKIP][458] ([i915#14544] / [i915#3281]) -> [SKIP][459] ([i915#3281]) +1 other test skip
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-active.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-active.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-rkl:          [SKIP][460] ([i915#14544] / [i915#4613]) -> [SKIP][461] ([i915#4613]) +1 other test skip
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_media_vme:
    - shard-rkl:          [SKIP][462] ([i915#284]) -> [SKIP][463] ([i915#14544] / [i915#284])
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-5/igt@gem_media_vme.html
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@gem_media_vme.html

  * igt@gem_pread@snoop:
    - shard-rkl:          [SKIP][464] ([i915#3282]) -> [SKIP][465] ([i915#14544] / [i915#3282]) +1 other test skip
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-7/igt@gem_pread@snoop.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@gem_pread@snoop.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-rkl:          [SKIP][466] ([i915#13717] / [i915#14544]) -> [SKIP][467] ([i915#13717])
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-rkl:          [SKIP][468] ([i915#14544] / [i915#3297]) -> [SKIP][469] ([i915#3297]) +1 other test skip
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gem_userptr_blits@relocations:
    - shard-rkl:          [SKIP][470] ([i915#3281] / [i915#3297]) -> [SKIP][471] ([i915#14544] / [i915#3281] / [i915#3297])
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-3/igt@gem_userptr_blits@relocations.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@gem_userptr_blits@relocations.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-rkl:          [SKIP][472] ([i915#2527]) -> [SKIP][473] ([i915#14544] / [i915#2527])
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-4/igt@gen9_exec_parse@bb-start-cmd.html
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html

  * igt@gen9_exec_parse@unaligned-access:
    - shard-rkl:          [SKIP][474] ([i915#14544] / [i915#2527]) -> [SKIP][475] ([i915#2527])
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@gen9_exec_parse@unaligned-access.html

  * igt@i915_pm_freq_api@freq-basic-api:
    - shard-rkl:          [SKIP][476] ([i915#8399]) -> [SKIP][477] ([i915#14544] / [i915#8399])
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-rkl:          [SKIP][478] ([i915#14544] / [i915#8399]) -> [SKIP][479] ([i915#8399])
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@i915_pm_freq_api@freq-reset.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-dg2:          [SKIP][480] ([i915#16707]) -> [SKIP][481] ([i915#1769] / [i915#3555])
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-dg2:          [SKIP][482] -> [SKIP][483] ([i915#16707]) +2 other tests skip
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-0:
    - shard-rkl:          [SKIP][484] ([i915#5286]) -> [SKIP][485] ([i915#14544] / [i915#5286])
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-rkl:          [SKIP][486] ([i915#14544] / [i915#5286]) -> [SKIP][487] ([i915#5286])
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2:          [SKIP][488] ([i915#16707]) -> [SKIP][489] +1 other test skip
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-rkl:          [SKIP][490] ([i915#3638]) -> [SKIP][491] ([i915#14544] / [i915#3638])
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-rkl:          [SKIP][492] ([i915#14544] / [i915#3638]) -> [SKIP][493] ([i915#3638])
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2:          [SKIP][494] ([i915#16707]) -> [SKIP][495] ([i915#3828])
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
    - shard-dg2:          [SKIP][496] ([i915#16707] / [i915#5190]) -> [SKIP][497] ([i915#4538] / [i915#5190]) +7 other tests skip
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2:          [SKIP][498] ([i915#5190]) -> [SKIP][499] ([i915#16707] / [i915#5190])
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2:          [SKIP][500] ([i915#4538] / [i915#5190]) -> [SKIP][501] ([i915#16707] / [i915#5190]) +7 other tests skip
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

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

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc:
    - shard-dg2:          [SKIP][504] ([i915#10307] / [i915#6095]) -> [SKIP][505] ([i915#16707]) +5 other tests skip
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html

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

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
    - shard-dg2:          [SKIP][508] ([i915#10307] / [i915#10434] / [i915#6095]) -> [SKIP][509] ([i915#16707])
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
    - shard-rkl:          [SKIP][510] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][511] ([i915#14098] / [i915#6095]) +4 other tests skip
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
    - shard-rkl:          [SKIP][512] ([i915#14098] / [i915#6095]) -> [SKIP][513] ([i915#14098] / [i915#14544] / [i915#6095]) +9 other tests skip
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][514] ([i915#6095]) -> [SKIP][515] ([i915#14544] / [i915#6095]) +6 other tests skip
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][516] ([i915#14544] / [i915#6095]) -> [SKIP][517] ([i915#6095]) +3 other tests skip
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-2.html
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg2:          [SKIP][518] ([i915#12313]) -> [SKIP][519] ([i915#16707])
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
    - shard-dg2:          [SKIP][520] ([i915#16707]) -> [SKIP][521] ([i915#10307] / [i915#6095]) +5 other tests skip
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-rkl:          [SKIP][522] ([i915#3742]) -> [SKIP][523] ([i915#14544] / [i915#3742])
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-dg2:          [SKIP][524] ([i915#13783]) -> [SKIP][525] ([i915#16707])
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-3/igt@kms_cdclk@plane-scaling.html
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4:
    - shard-rkl:          [SKIP][526] ([i915#14544] / [i915#16471]) -> [SKIP][527] ([i915#16471])
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-rkl:          [SKIP][528] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][529] ([i915#11151] / [i915#7828]) +3 other tests skip
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-rkl:          [SKIP][530] ([i915#11151] / [i915#7828]) -> [SKIP][531] ([i915#11151] / [i915#14544] / [i915#7828])
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

  * igt@kms_content_protection@content-type-change:
    - shard-dg2:          [SKIP][532] ([i915#16707]) -> [SKIP][533] ([i915#15865]) +1 other test skip
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_content_protection@content-type-change.html
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-rkl:          [SKIP][534] ([i915#15330] / [i915#3116]) -> [SKIP][535] ([i915#14544] / [i915#15330] / [i915#3116])
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0.html
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-dg2:          [SKIP][536] ([i915#15330]) -> [SKIP][537] ([i915#16707])
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
    - shard-dg2:          [SKIP][538] ([i915#16707]) -> [SKIP][539] ([i915#15330])
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html

  * igt@kms_content_protection@legacy:
    - shard-dg2:          [SKIP][540] ([i915#15865]) -> [SKIP][541] ([i915#16707])
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-7/igt@kms_content_protection@legacy.html
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_content_protection@legacy.html
    - shard-rkl:          [SKIP][542] ([i915#14544] / [i915#15865]) -> [SKIP][543] ([i915#15865]) +2 other tests skip
   [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_content_protection@legacy.html
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_content_protection@legacy.html

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

  * igt@kms_content_protection@type1:
    - shard-rkl:          [SKIP][546] ([i915#15865]) -> [SKIP][547] ([i915#14544] / [i915#15865])
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-4/igt@kms_content_protection@type1.html
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-dg2:          [SKIP][548] ([i915#16707]) -> [SKIP][549] ([i915#3555]) +2 other tests skip
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-32x10.html
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-rkl:          [SKIP][550] ([i915#14544] / [i915#3555]) -> [SKIP][551] ([i915#3555]) +2 other tests skip
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-rkl:          [SKIP][552] ([i915#13049]) -> [SKIP][553] ([i915#13049] / [i915#14544])
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-dg2:          [SKIP][554] ([i915#3555]) -> [SKIP][555] ([i915#16707]) +4 other tests skip
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-3/igt@kms_cursor_crc@cursor-random-max-size.html
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_cursor_crc@cursor-random-max-size.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-dg2:          [SKIP][556] ([i915#13049]) -> [SKIP][557] ([i915#16707]) +1 other test skip
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
   [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-dg2:          [SKIP][558] ([i915#13046] / [i915#5354]) -> [SKIP][559] ([i915#16707]) +2 other tests skip
   [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-dg2:          [SKIP][560] ([i915#16707]) -> [SKIP][561] ([i915#13046] / [i915#5354]) +3 other tests skip
   [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
   [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][562] ([i915#15804]) -> [FAIL][563] ([i915#15768])
   [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2:          [SKIP][564] ([i915#4103]) -> [SKIP][565] ([i915#16707])
   [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2:          [SKIP][566] ([i915#16707]) -> [SKIP][567] ([i915#4103]) +1 other test skip
   [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg2:          [SKIP][568] ([i915#13707]) -> [SKIP][569] ([i915#16707])
   [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_draw_crc@draw-method-mmap-wc:
    - shard-dg2:          [SKIP][570] ([i915#8812]) -> [SKIP][571] ([i915#16707])
   [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html
   [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner:
    - shard-rkl:          [SKIP][572] ([i915#16361]) -> [SKIP][573] ([i915#14544] / [i915#16361])
   [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html
   [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-dg2:          [SKIP][574] ([i915#16361]) -> [SKIP][575] ([i915#16707]) +2 other tests skip
   [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-5/igt@kms_dsc@dsc-with-bpc.html
   [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_dsc@dsc-with-formats-bigjoiner:
    - shard-rkl:          [SKIP][576] ([i915#14544] / [i915#16361]) -> [SKIP][577] ([i915#16361]) +2 other tests skip
   [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_dsc@dsc-with-formats-bigjoiner.html
   [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@kms_dsc@dsc-with-formats-bigjoiner.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2:          [SKIP][578] ([i915#16707]) -> [SKIP][579] ([i915#16361]) +1 other test skip
   [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
    - shard-rkl:          [SKIP][582] ([i915#14544] / [i915#15643]) -> [SKIP][583] ([i915#15643])
   [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
   [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-rkl:          [SKIP][584] ([i915#15643]) -> [SKIP][585] ([i915#14544] / [i915#15643]) +3 other tests skip
   [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
   [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2:          [SKIP][586] ([i915#15991] / [i915#5354]) -> [SKIP][587] ([i915#16708] / [i915#5354]) +22 other tests skip
   [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
   [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-render:
    - shard-dg1:          [SKIP][588] ([i915#15989]) -> [SKIP][589] ([i915#15989] / [i915#4423])
   [588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg1-16/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-render.html
   [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
    - shard-dg2:          [SKIP][590] ([i915#16708]) -> [SKIP][591] ([i915#15990]) +11 other tests skip
   [590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
   [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt:
    - shard-dg2:          [SKIP][592] ([i915#15989]) -> [SKIP][593] ([i915#16708]) +13 other tests skip
   [592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html
   [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
    - shard-dg2:          [SKIP][594] ([i915#15990] / [i915#8708]) -> [SKIP][595] ([i915#16708] / [i915#5354]) +10 other tests skip
   [594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
   [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][596] ([i915#15102]) -> [SKIP][597] ([i915#10433] / [i915#15102]) +2 other tests skip
   [596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
   [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][598] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][599] ([i915#15102] / [i915#3023]) +2 other tests skip
   [598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
   [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
    - shard-dg2:          [SKIP][600] ([i915#16708] / [i915#5354]) -> [SKIP][601] ([i915#15102]) +6 other tests skip
   [600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
   [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][602] ([i915#1825]) -> [SKIP][603] ([i915#14544] / [i915#1825]) +5 other tests skip
   [602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
   [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][604] ([i915#14544] / [i915#1825]) -> [SKIP][605] ([i915#1825])
   [604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
   [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
    - shard-dg2:          [SKIP][606] ([i915#16708] / [i915#5354]) -> [SKIP][607] ([i915#15990] / [i915#8708]) +3 other tests skip
   [606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
   [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-dg2:          [SKIP][608] ([i915#10433] / [i915#15102]) -> [SKIP][609] ([i915#15102]) +2 other tests skip
   [608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
   [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
    - shard-dg2:          [SKIP][610] ([i915#15102]) -> [SKIP][611] ([i915#16708] / [i915#5354]) +12 other tests skip
   [610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
   [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][612] ([i915#15102]) -> [SKIP][613] ([i915#16708]) +17 other tests skip
   [612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
   [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-rkl:          [SKIP][614] ([i915#15102]) -> [SKIP][615] ([i915#14544] / [i915#15102]) +5 other tests skip
   [614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite.html
   [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2:          [SKIP][616] ([i915#15990]) -> [SKIP][617] ([i915#16708]) +19 other tests skip
   [616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff:
    - shard-rkl:          [SKIP][618] -> [SKIP][619] ([i915#14544]) +29 other tests skip
   [618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html
   [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2:          [SKIP][620] ([i915#15991]) -> [SKIP][621] ([i915#16708]) +25 other tests skip
   [620]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html
   [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu:
    - shard-dg2:          [SKIP][622] ([i915#16708]) -> [SKIP][623] ([i915#15989]) +6 other tests skip
   [622]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu.html
   [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
    - shard-dg2:          [SKIP][624] ([i915#16708]) -> [SKIP][625] ([i915#15102]) +7 other tests skip
   [624]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
   [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-dg2:          [SKIP][626] ([i915#16708]) -> [SKIP][627] ([i915#15104] / [i915#15990]) +2 other tests skip
   [626]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
   [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          [SKIP][628] ([i915#15104] / [i915#15990]) -> [SKIP][629] ([i915#16708])
   [628]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
   [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
    - shard-dg1:          [SKIP][630] ([i915#15102]) -> [SKIP][631] ([i915#15102] / [i915#4423])
   [630]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
   [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-rkl:          [SKIP][632] ([i915#15102] / [i915#3023]) -> [SKIP][633] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
   [632]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
   [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-dg2:          [SKIP][634] ([i915#16708] / [i915#5354]) -> [SKIP][635] ([i915#15991] / [i915#5354]) +15 other tests skip
   [634]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
   [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][636] ([i915#14544] / [i915#15102]) -> [SKIP][637] ([i915#15102]) +7 other tests skip
   [636]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-onoff:
    - shard-dg1:          [SKIP][638] ([i915#15102] / [i915#4423]) -> [SKIP][639] ([i915#15102])
   [638]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-onoff.html
   [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-12/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt:
    - shard-rkl:          [SKIP][640] ([i915#14544]) -> [SKIP][641] +30 other tests skip
   [640]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
   [641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-dg2:          [SKIP][642] ([i915#16708]) -> [SKIP][643] ([i915#15991]) +16 other tests skip
   [642]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-pgflip-blt.html
   [643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-dg2:          [SKIP][644] ([i915#16707]) -> [SKIP][645] ([i915#12713] / [i915#16518])
   [644]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
   [645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@static-toggle:
    - shard-dg2:          [SKIP][646] ([i915#16518] / [i915#3555] / [i915#8228]) -> [SKIP][647] ([i915#16707]) +1 other test skip
   [646]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-5/igt@kms_hdr@static-toggle.html
   [647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_hdr@static-toggle.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2:          [SKIP][648] ([i915#16707]) -> [SKIP][649] ([i915#13705])
   [648]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
   [649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

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

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-dg2:          [SKIP][652] ([i915#13958]) -> [SKIP][653] ([i915#16707])
   [652]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-8/igt@kms_plane_multiple@2x-tiling-none.html
   [653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-dg2:          [SKIP][654] ([i915#16707]) -> [SKIP][655] ([i915#13958])
   [654]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_plane_multiple@2x-tiling-x.html
   [655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-rkl:          [SKIP][656] ([i915#14259]) -> [SKIP][657] ([i915#14259] / [i915#14544])
   [656]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html
   [657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
    - shard-rkl:          [SKIP][658] ([i915#14544] / [i915#15329]) -> [SKIP][659] ([i915#15329]) +3 other tests skip
   [658]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
   [659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html

  * igt@kms_pm_backlight@fade:
    - shard-rkl:          [SKIP][660] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][661] ([i915#12343] / [i915#5354])
   [660]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_pm_backlight@fade.html
   [661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-8/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][662] ([i915#3828]) -> [SKIP][663] ([i915#14544] / [i915#9340])
   [662]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
   [663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-dg1:          [SKIP][664] ([i915#9340]) -> [SKIP][665] ([i915#3828])
   [664]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html
   [665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-rkl:          [SKIP][666] ([i915#11520] / [i915#14544]) -> [SKIP][667] ([i915#11520]) +1 other test skip
   [666]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
   [667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-rkl:          [SKIP][668] ([i915#11520]) -> [SKIP][669] ([i915#11520] / [i915#14544]) +2 other tests skip
   [668]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
   [669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-rkl:          [SKIP][670] ([i915#14544] / [i915#9683]) -> [SKIP][671] ([i915#9683])
   [670]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
   [671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@pr-cursor-blt:
    - shard-rkl:          [SKIP][672] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][673] ([i915#1072] / [i915#9732]) +6 other tests skip
   [672]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@kms_psr@pr-cursor-blt.html
   [673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-2/igt@kms_psr@pr-cursor-blt.html

  * igt@kms_psr@pr-primary-mmap-cpu:
    - shard-rkl:          [SKIP][674] ([i915#1072] / [i915#9732]) -> [SKIP][675] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
   [674]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-2/igt@kms_psr@pr-primary-mmap-cpu.html
   [675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_psr@pr-primary-mmap-cpu.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-rkl:          [SKIP][676] ([i915#15949]) -> [SKIP][677] ([i915#14544] / [i915#15949])
   [676]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2:          [SKIP][678] ([i915#16707] / [i915#5190]) -> [SKIP][679] ([i915#5190])
   [678]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-dg2:          [SKIP][680] ([i915#16707]) -> [SKIP][681] ([i915#12755] / [i915#15867])
   [680]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-270.html
   [681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2:          [SKIP][682] ([i915#16707]) -> [SKIP][683] ([i915#8623])
   [682]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-basic:
    - shard-dg2:          [SKIP][684] ([i915#16707]) -> [SKIP][685] ([i915#15243] / [i915#3555]) +1 other test skip
   [684]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-10/igt@kms_vrr@flip-basic.html
   [685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-1/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flipline:
    - shard-dg2:          [SKIP][686] ([i915#15243] / [i915#3555]) -> [SKIP][687] ([i915#16707])
   [686]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-3/igt@kms_vrr@flipline.html
   [687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_vrr@flipline.html

  * igt@kms_vrr@negative-basic:
    - shard-rkl:          [SKIP][688] ([i915#3555] / [i915#9906]) -> [SKIP][689] ([i915#14544] / [i915#3555] / [i915#9906])
   [688]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-3/igt@kms_vrr@negative-basic.html
   [689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-dg2:          [SKIP][690] ([i915#9906]) -> [SKIP][691] ([i915#16707])
   [690]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-virtual.html
   [691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@perf@unprivileged-single-ctx-counters:
    - shard-rkl:          [SKIP][692] ([i915#2433]) -> [SKIP][693] ([i915#14544] / [i915#2433])
   [692]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-3/igt@perf@unprivileged-single-ctx-counters.html
   [693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-rkl:          [SKIP][694] ([i915#14544] / [i915#9917]) -> [SKIP][695] ([i915#9917])
   [694]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
   [695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-rkl:          [SKIP][696] ([i915#9917]) -> [SKIP][697] ([i915#14544] / [i915#9917])
   [696]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18918/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15604/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html

  
  [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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [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#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
  [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
  [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
  [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
  [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#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
  [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
  [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
  [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
  [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#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
  [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
  [i915#15768]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15768
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
  [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
  [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
  [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
  [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#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997
  [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079
  [i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080
  [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
  [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112
  [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119
  [i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166
  [i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236
  [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276
  [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
  [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
  [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
  [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420
  [i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
  [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
  [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479
  [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518
  [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600
  [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644
  [i915#16696]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16696
  [i915#16707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16707
  [i915#16708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16708
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
  [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [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#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [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#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
  [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#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
  [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
  [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#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * CI: CI-20190529 -> None
  * IGT: IGT_9032 -> IGTPW_15604
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_18918: 13293e234fec99844f5ff4386553699f72f21e0e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15604: 19f62a86f68cba0b13d604638695c5916d85e374 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_9032: 9032
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [PATCH i-g-t] tests/intel/xe_debugfs: add uc debugfs validation and read tests
  2026-07-29  7:41 [PATCH i-g-t] tests/intel/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
                   ` (3 preceding siblings ...)
  2026-07-30  2:22 ` ✗ i915.CI.Full: " Patchwork
@ 2026-07-30 20:47 ` Daniele Ceraolo Spurio
  4 siblings, 0 replies; 6+ messages in thread
From: Daniele Ceraolo Spurio @ 2026-07-30 20:47 UTC (permalink / raw)
  To: Sobin Thomas, igt-dev; +Cc: kamil.konieczny



On 7/29/2026 12:41 AM, Sobin Thomas wrote:
> Add coverage for GT-specific uc debugfs entries by introducing a new
> uc-info-read subtest that validates the presence of required files in the
> GT debugfs hierarchy. The test currently verifies the existence of
> the following debugfs nodes:
>
>    - uc/gsc_info
>    - uc/huc_info
>    - uc/guc_info
>    - uc/guc_pc
>
> These additions improve validation of Xe GT debugfs interfaces and
> provide basic functional coverage for the GSC information debugfs node.
>
> v2: Add support for guc and huc info (Daniele)
> v3: Added checks for the device nodes.
> v4: Consolidated the calls into single test_uc_info_read subtest
> v5: Fixed mandatory and optional logs and access check
>      is done using igt_sysfs_has_attr. (Daniele)
>      Fixed subject nits. (Kamil)
>
> Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>

Reviewed-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>

Daniele

> ---
>   tests/intel/xe_debugfs.c | 71 +++++++++++++++++++++++++++++++++++++++-
>   1 file changed, 70 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
> index da482157e..5c045b04f 100644
> --- a/tests/intel/xe_debugfs.c
> +++ b/tests/intel/xe_debugfs.c
> @@ -16,6 +16,18 @@ struct {
>   	bool warn_on_not_hit;
>   } opt = { 0 };
>   
> +struct uc_info_node {
> +	const char *node;
> +	bool mandatory;
> +};
> +
> +static const struct uc_info_node uc_info_nodes[] = {
> +	{ "uc/gsc_info", false },
> +	{ "uc/huc_info", false },
> +	{ "uc/guc_info", true },
> +	{ "uc/guc_pc",   true },
> +};
> +
>   /**
>    * TEST: Xe debugfs test
>    * Description: Xe-specific debugfs tests. These are complementary to the
> @@ -595,6 +607,56 @@ static void check_gt_reg_sr(int fd, int gt)
>   	igt_assert_eq(problems, 0);
>   }
>   
> +/**
> + * SUBTEST: uc-info-read
> + * Description: This is for reading the uc device nodes.
> + */
> +static void test_uc_info_read(struct xe_device *xe_dev, unsigned int gt)
> +{
> +	int debugfs_fd = igt_debugfs_gt_dir(xe_dev->fd, gt);
> +	int i;
> +	int fail_count = 0;
> +
> +	igt_skip_on_f(debugfs_fd < 0, "Failed to open debugfs directory\n");
> +
> +	for (i = 0; i < ARRAY_SIZE(uc_info_nodes); i++) {
> +		const char *node = uc_info_nodes[i].node;
> +		bool mandatory = uc_info_nodes[i].mandatory;
> +		char *buf;
> +
> +		if (!igt_sysfs_has_attr(debugfs_fd, node)) {
> +			if (mandatory)
> +				fail_count++;
> +			igt_info("%s debugfs node not present on GT-%u\n", node, gt);
> +			continue;
> +		}
> +		buf = igt_sysfs_get(debugfs_fd, node);
> +		if (!buf) {
> +			if (mandatory)
> +				fail_count++;
> +
> +			igt_info("Failed to read %s %s debugfs file on GT-%u\n",
> +				 mandatory ? "mandatory" : "optional", node, gt);
> +			continue;
> +		}
> +
> +		if (buf[0] == '\0') {
> +			free(buf);
> +			if (mandatory)
> +				fail_count++;
> +			igt_info("%s %s debugfs file is empty on GT-%u\n",
> +				 mandatory ? "mandatory" : "optional", node, gt);
> +			continue;
> +		}
> +		igt_info("GT-%u: successfully read %s (%zu bytes)\n", gt, node, strlen(buf));
> +		free(buf);
> +	}
> +	close(debugfs_fd);
> +	igt_fail_on_f(fail_count > 0,
> +		      "%d mandatory debugfs node(s) failed (missing/unreadable/empty) on GT-%u\n",
> +		      fail_count, gt);
> +}
> +
>   const char *help_str =
>   	"  --warn-not-hit|--w\tWarn about devfs nodes that have no tests";
>   
> @@ -619,8 +681,9 @@ static int opt_handler(int option, int option_index, void *input)
>   int igt_main_args("", long_options, help_str, opt_handler, NULL)
>   {
>   	struct xe_device *xe_dev;
> +	int fd = -1;
> +	unsigned int gt;
>   	unsigned int t;
> -	int fd = -1, gt;
>   
>   	igt_fixture() {
>   		fd = drm_open_driver_master(DRIVER_XE);
> @@ -648,6 +711,12 @@ int igt_main_args("", long_options, help_str, opt_handler, NULL)
>   			igt_dynamic_f("gt%d", gt)
>   				check_gt_reg_sr(fd, gt);
>   
> +	igt_describe("Verify that uC debugfs info nodes are present and readable.");
> +	igt_subtest_with_dynamic("uc-info-read")
> +		xe_for_each_gt(fd, gt)
> +			igt_dynamic_f("gt%d", gt)
> +				test_uc_info_read(xe_dev, gt);
> +
>   	igt_fixture() {
>   		drm_close_driver(fd);
>   	}


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

end of thread, other threads:[~2026-07-30 20:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-29  7:41 [PATCH i-g-t] tests/intel/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
2026-07-29 15:30 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-07-29 16:15 ` ✓ i915.CI.BAT: " Patchwork
2026-07-29 19:16 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-07-30  2:22 ` ✗ i915.CI.Full: " Patchwork
2026-07-30 20:47 ` [PATCH i-g-t] " Daniele Ceraolo Spurio

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.