Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] tests/xe: Add xe_cg_dmem test
@ 2025-01-15 11:55 Maarten Lankhorst
  2025-01-16 11:06 ` ✓ i915.CI.BAT: success for " Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Maarten Lankhorst @ 2025-01-15 11:55 UTC (permalink / raw)
  To: igt-dev; +Cc: Maarten Lankhorst

This adds test to ensure the basic functionality of dmem works as
expected on discrete platforms.

Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
 tests/intel/xe_cg_dmem.c | 379 +++++++++++++++++++++++++++++++++++++++
 tests/meson.build        |   1 +
 2 files changed, 380 insertions(+)
 create mode 100644 tests/intel/xe_cg_dmem.c

diff --git a/tests/intel/xe_cg_dmem.c b/tests/intel/xe_cg_dmem.c
new file mode 100644
index 000000000..2924fd973
--- /dev/null
+++ b/tests/intel/xe_cg_dmem.c
@@ -0,0 +1,379 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+/**
+ * TEST: Check cgroup VRAM allocation limits
+ * Category: Software building block
+ * Sub-category: cgroup
+ * Test category: functionality test
+ * Run type: BAT
+ * Description: Test that the dmem cgroup works as intended.
+ * Mega feature: General Core features
+ * Functionality: cgroup
+*/
+
+#include <string.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <sys/stat.h>
+
+#include "igt.h"
+#include "igt_device.h"
+#include "igt_sysfs.h"
+
+#include "xe_drm.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+
+static int cgfd = -1, igtcg = -1, cg1 = -1, cg1_1 = -1, cg1_2 = -1, cg2 = -1;
+static char cgid[64];
+
+/*
+ * cgroups:
+ *                                      / cg1_1
+ * /sys/fs/cgroup (cgfd) / igtcg / cg1 /- cg1_2
+ *                               / cg2
+ */
+
+static void set_cgrp(int cg)
+{
+	igt_sysfs_set_u32(cg, "cgroup.procs", getpid());
+}
+
+static inline void set_cg_val(int cg, const char *resource, int64_t val)
+{
+	if (val >= 0)
+		igt_assert(igt_sysfs_printf(cg, resource, "%s %"PRIu64, cgid, val));
+	else
+		igt_assert(igt_sysfs_printf(cg, resource, "%s max", cgid));
+}
+
+static void set_cgrp_min(int cg, int64_t min)
+{
+	set_cg_val(cg, "dmem.min", min);
+}
+
+static void set_cgrp_low(int cg, int64_t low)
+{
+	set_cg_val(cg, "dmem.low", low);
+}
+
+static void set_cgrp_max(int cg, int64_t max)
+{
+	set_cg_val(cg, "dmem.max", max);
+}
+
+static int64_t get_cg_val(int cg, const char *resource)
+{
+	char *devstr, *valstr, *str;
+	int64_t val;
+
+	str = igt_sysfs_get(cg, resource);
+	igt_assert(str);
+	devstr = strstr(str, cgid);
+	igt_assert(devstr);
+
+	/* Only care about the line describing this region, terminate if needed */
+	devstr = strtok(devstr, "\n");
+
+	valstr = strstr(devstr, " ") + 1;
+	if (!strcmp(valstr, "max"))
+		val = INT64_MAX;
+	else
+		val = strtoll(valstr, NULL, 10);
+
+	free(str);
+	return val;
+}
+
+static int64_t get_cgrp_min(int cg)
+{
+	return get_cg_val(cg, "dmem.min");
+}
+
+static int64_t get_cgrp_low(int cg)
+{
+	return get_cg_val(cg, "dmem.low");
+}
+
+static int64_t get_cgrp_max(int cg)
+{
+	return get_cg_val(cg, "dmem.max");
+}
+
+static int64_t get_cgrp_current(int cg)
+{
+	return get_cg_val(cg, "dmem.current");
+}
+
+static void assert_all_cgs_empty(void)
+{
+	igt_assert(!get_cgrp_current(igtcg));
+}
+
+static void reset_cgs(void)
+{
+	int i, fds[] = { igtcg, cg1, cg1_1, cg1_2, cg2 };
+	set_cgrp(cgfd);
+
+	for (i = 0; i < ARRAY_SIZE(fds); i++) {
+		int cg = fds[i];
+
+		set_cgrp_min(cg, 0);
+		set_cgrp_low(cg, 0);
+		set_cgrp_max(cg, -1);
+	}
+}
+
+static void cleanup_cg(int sig)
+{
+	/* Move self to root so we can rmdir */
+	set_cgrp(cgfd);
+
+	unlinkat(cg1, "cg1_1", AT_REMOVEDIR);
+	unlinkat(cg1, "cg1_2", AT_REMOVEDIR);
+	unlinkat(igtcg, "cg1", AT_REMOVEDIR);
+	unlinkat(igtcg, "cg2", AT_REMOVEDIR);
+	unlinkat(cgfd, "igtcg", AT_REMOVEDIR);
+
+	/* leak fd's at exit, nobody cares */
+}
+
+static int mkcgrp(int fd, const char *name)
+{
+	int err;
+
+	/* Check and enable controller */
+	igt_require(igt_sysfs_set(fd, "cgroup.subtree_control", "+dmem"));
+
+	err = mkdirat(fd, name, 0755);
+	if (!err || (err == -1 && errno == EEXIST))
+		err = openat(fd, name, O_RDONLY);
+	igt_assert(err >= 0);
+	return err;
+}
+
+static void create_cgroups(void)
+{
+	char *controllers;
+	cgfd = open("/sys/fs/cgroup", O_RDONLY);
+	igt_require(cgfd >= 0);
+
+	controllers = igt_sysfs_get(cgfd, "cgroup.controllers");
+	igt_require(controllers && strstr(controllers, "dmem"));
+	free(controllers);
+
+	igt_install_exit_handler(cleanup_cg);
+
+	/* Populate cg's */
+	igtcg = mkcgrp(cgfd, "igtcg");
+	cg1 = mkcgrp(igtcg, "cg1");
+	cg1_1 = mkcgrp(cg1, "cg1_1");
+	cg1_2 = mkcgrp(cg1, "cg1_2");
+	cg2 = mkcgrp(igtcg, "cg2");
+}
+
+static int bo_create_at(struct xe_device *xe, int cg, uint64_t bo_size)
+{
+	struct drm_xe_gem_create create = {
+		.placement = vram_if_possible(xe->fd, 0),
+		.cpu_caching = __xe_default_cpu_caching(xe->fd, create.placement, 0),
+		.size = bo_size,
+	};
+
+	set_cgrp(cg);
+
+	if (igt_ioctl(xe->fd, DRM_IOCTL_XE_GEM_CREATE, &create) < 0) {
+		igt_debug("Creating bo with size %"PRIu64" returned -1/%m\n", bo_size);
+		return -errno;
+	}
+
+	igt_debug("Creating bo with size %"PRIu64" and handle %u\n", bo_size, create.handle);
+	return create.handle;
+}
+
+/**
+ * SUBTEST: functional
+ * Description: Test if written values can be read back,
+ * 	to rule out copy/paste errors.
+ */
+static void test_functional(void)
+{
+	set_cgrp_min(igtcg, 12345);
+	set_cgrp_low(igtcg, 54321);
+	set_cgrp_max(igtcg, 67890);
+
+	igt_assert_eq_u64(get_cgrp_min(igtcg), 12345);
+	igt_assert_eq_u64(get_cgrp_low(igtcg), 54321);
+	igt_assert_eq_u64(get_cgrp_max(igtcg), 67890);
+
+	set_cgrp_min(igtcg, -1);
+	set_cgrp_low(igtcg, -1);
+	set_cgrp_max(igtcg, -1);
+
+	igt_assert_eq_u64(get_cgrp_min(igtcg), INT64_MAX);
+	igt_assert_eq_u64(get_cgrp_low(igtcg), INT64_MAX);
+	igt_assert_eq_u64(get_cgrp_max(igtcg), INT64_MAX);
+
+	set_cgrp_min(igtcg, 0);
+	set_cgrp_low(igtcg, 0);
+	set_cgrp_max(igtcg, 0);
+	igt_assert_eq_u64(get_cgrp_low(igtcg), 0);
+	igt_assert_eq_u64(get_cgrp_max(igtcg), 0);
+	igt_assert_eq_u64(get_cgrp_min(igtcg), 0);
+}
+
+/**
+ * SUBTEST: test-simple-max
+ * Description: Test that cgroup max limits are respected between
+ * 	various nestings of cgroups, and correct cgroups are evicted.
+ */
+static void test_simple_max(struct xe_device *xe)
+{
+	uint64_t bo_size = xe->default_alignment;
+	int bo1, bo1_1, bo1_2;
+
+	/* Test if we set cgroup limits, that they are respected */
+	assert_all_cgs_empty();
+
+	reset_cgs();
+
+	set_cgrp_max(igtcg, 0);
+	igt_assert(get_cgrp_max(igtcg) == 0);
+	set_cgrp_max(cg1, 2 * bo_size);
+	set_cgrp_max(cg1_1, 2 * bo_size);
+	set_cgrp_max(cg1_2, bo_size);
+	set_cgrp_max(cg2, -1);
+	igt_assert(get_cgrp_max(cg2) == INT64_MAX);
+
+	/* First check if top cg limit (of igtcg) is not ignored */
+	igt_assert_eq(-ENOMEM, bo_create_at(xe, cg1_1, bo_size));
+
+	assert_all_cgs_empty();
+	set_cgrp_max(igtcg, 4 * bo_size);
+
+	/* Same cg limit? */
+	bo1_1 = bo_create_at(xe, cg1_1, 2 * bo_size);
+	igt_assert(bo1_1 > 0);
+
+	set_cgrp_max(cg1, 3 * bo_size);
+	bo1_2 = bo_create_at(xe, cg1_2, bo_size);
+	igt_assert(bo1_2 > 0);
+
+	/* Create a too big bo and check if 1_2 is evicted */
+	igt_assert_eq(-ENOMEM, bo_create_at(xe, cg1_2, 4 * bo_size));
+	igt_assert_eq_u64(0, get_cgrp_current(cg1_2));
+
+	gem_close(xe->fd, bo1_2);
+	bo1_2 = bo_create_at(xe, cg1_2, bo_size);
+	igt_assert(bo1_2 > 0);
+
+	set_cgrp_max(cg1, 4 * bo_size);
+	bo1 = bo_create_at(xe, cg1_1, bo_size);
+	igt_assert(bo1 > 0);
+
+	gem_close(xe->fd, bo1_2);
+	gem_close(xe->fd, bo1_1);
+	gem_close(xe->fd, bo1);
+}
+
+static void create_cg1_min(struct xe_device *xe, int *bo1_1, int *bo1_2)
+{
+	uint64_t bo_size = xe->default_alignment;
+
+	if (*bo1_1 > 0)
+		gem_close(xe->fd, *bo1_1);
+
+	if (*bo1_2 > 0)
+		gem_close(xe->fd, *bo1_2);
+
+	*bo1_1 = bo_create_at(xe, cg1_1, bo_size);
+	igt_assert(*bo1_1 > 0);
+
+	*bo1_2 = bo_create_at(xe, cg1_2, bo_size);
+	igt_assert(*bo1_2 > 0);
+}
+
+/**
+ * SUBTEST: test-simple-min
+ * Description: Test that cgroup min limits are respected between
+ * 	various nestings of cgroups, and correct cgroups are evicted.
+ */
+static void test_simple_min(struct xe_device *xe)
+{
+	uint64_t bo_size = xe->default_alignment;
+	int bo1_1 = -1, bo1_2 = -1, bo2;
+
+	assert_all_cgs_empty();
+	reset_cgs();
+
+	/* set static max of 2 bo's for testing, allow protection as well on cg1 */
+	set_cgrp_max(igtcg, 2 * bo_size);
+	set_cgrp_min(igtcg, 2 * bo_size);
+	set_cgrp_min(cg1, 2 * bo_size);
+	set_cgrp_min(cg1_1, bo_size);
+	set_cgrp_min(cg1_2, bo_size);
+
+	create_cg1_min(xe, &bo1_1, &bo1_2);
+
+	igt_assert_eq_u64(get_cgrp_current(cg1), 2 * bo_size);
+
+	bo2 = bo_create_at(xe, cg2, bo_size);
+	igt_assert_eq_u64(get_cgrp_current(cg1), 2 * bo_size);
+	igt_assert_eq(bo2, -ENOMEM);
+
+	/* Unprotect one */
+	set_cgrp_min(cg1, bo_size);
+	set_cgrp_min(cg1_2, 0);
+
+	bo2 = bo_create_at(xe, cg2, bo_size);
+	/* Verify cg1_2 is evicted, cg1_1 not */
+	igt_assert_eq_u64(get_cgrp_current(cg1_2), 0);
+	igt_assert_eq_u64(get_cgrp_current(cg1), bo_size);
+	igt_assert_eq_u64(get_cgrp_current(igtcg), 2 * bo_size);
+	igt_assert(bo2 > 0);
+
+	gem_close(xe->fd, bo2);
+	gem_close(xe->fd, bo1_1);
+	gem_close(xe->fd, bo1_2);
+}
+
+igt_main
+{
+	struct xe_device *xe;
+	int fd;
+
+	igt_fixture {
+		char *data;
+		char busid[32];
+
+		fd = drm_open_driver(DRIVER_XE);
+		xe = xe_device_get(fd);
+
+		/* XXX: Easier way to determine busid? */
+		igt_device_get_pci_slot_name(fd, busid);
+
+		/* For now, require VRAM as shared memory lacks support */
+		igt_require(xe->has_vram);
+		sprintf(cgid, "drm/%s/vram0", busid);
+
+		create_cgroups();
+
+		data = igt_sysfs_get(cgfd, "dmem.capacity");
+		igt_debug("Contents: %s\n", data);
+		/* Ensure our driver is found" */
+		igt_require_f(strstr(data, busid), "Is driver xe/%s supported by dmem controller?\n", busid);
+		free(data);
+	}
+
+	igt_subtest("functional")
+		test_functional();
+
+	igt_subtest("test-simple-max")
+		test_simple_max(xe);
+
+	igt_subtest("test-simple-min")
+		test_simple_min(xe);
+}
diff --git a/tests/meson.build b/tests/meson.build
index a6750d523..f2a0dea88 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -273,6 +273,7 @@ intel_kms_progs = [
 intel_xe_progs = [
 	'xe_wedged',
 	'xe_ccs',
+	'xe_cg_dmem',
 	'xe_create',
 	'xe_compute',
 	'xe_compute_preempt',
-- 
2.43.0


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

* ✓ i915.CI.BAT: success for tests/xe: Add xe_cg_dmem test
  2025-01-15 11:55 [PATCH i-g-t] tests/xe: Add xe_cg_dmem test Maarten Lankhorst
@ 2025-01-16 11:06 ` Patchwork
  2025-01-16 11:32 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-01-16 11:06 UTC (permalink / raw)
  To: Maarten Lankhorst; +Cc: igt-dev

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

== Series Details ==

Series: tests/xe: Add xe_cg_dmem test
URL   : https://patchwork.freedesktop.org/series/143593/
State : success

== Summary ==

CI Bug Log - changes from IGT_8193 -> IGTPW_12447
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@runner@aborted:
    - fi-pnv-d510:        NOTRUN -> [FAIL][1] ([i915#13350])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/fi-pnv-d510/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - bat-mtlp-8:         [INCOMPLETE][2] ([i915#13495]) -> [PASS][3]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [DMESG-FAIL][4] ([i915#13393]) -> [PASS][5] +1 other test pass
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/bat-arlh-3/igt@i915_selftest@live@workarounds.html
    - bat-mtlp-6:         [DMESG-FAIL][6] ([i915#13393]) -> [PASS][7] +1 other test pass
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/bat-mtlp-6/igt@i915_selftest@live@workarounds.html

  
  [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350
  [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393
  [i915#13495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13495


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8193 -> IGTPW_12447

  CI-20190529: 20190529
  CI_DRM_15964: 4cea1f90028925afcf1a0f8a0ef301f90349688c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12447: 4593317dedb4854dc0f4d7beed6cf9c68f3adeb8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ Xe.CI.BAT: success for tests/xe: Add xe_cg_dmem test
  2025-01-15 11:55 [PATCH i-g-t] tests/xe: Add xe_cg_dmem test Maarten Lankhorst
  2025-01-16 11:06 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2025-01-16 11:32 ` Patchwork
  2025-01-16 15:11 ` ✗ Xe.CI.Full: failure " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-01-16 11:32 UTC (permalink / raw)
  To: Maarten Lankhorst; +Cc: igt-dev

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

== Series Details ==

Series: tests/xe: Add xe_cg_dmem test
URL   : https://patchwork.freedesktop.org/series/143593/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8193_BAT -> XEIGTPW_12447_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (8 -> 8)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - bat-adlp-vf:        NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit:
    - bat-adlp-vf:        NOTRUN -> [DMESG-FAIL][2] ([Intel XE#4078])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit.html

  
#### Possible fixes ####

  * igt@xe_exec_basic@twice-bindexecqueue-rebind:
    - bat-adlp-vf:        [DMESG-WARN][3] ([Intel XE#3970]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html

  * igt@xe_live_ktest@xe_dma_buf:
    - bat-adlp-vf:        [SKIP][5] ([Intel XE#1192]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt@xe_live_ktest@xe_dma_buf.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt@xe_live_ktest@xe_dma_buf.html

  
#### Warnings ####

  * igt@xe_live_ktest@xe_bo:
    - bat-adlp-vf:        [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html

  * igt@xe_live_ktest@xe_migrate:
    - bat-adlp-vf:        [SKIP][9] ([Intel XE#1192]) -> [DMESG-FAIL][10] ([Intel XE#4078])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html

  
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
  [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455


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

  * IGT: IGT_8193 -> IGTPW_12447
  * Linux: xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c -> xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0

  IGTPW_12447: 4593317dedb4854dc0f4d7beed6cf9c68f3adeb8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c
  xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0: 4840e56bcc47f3af6bbc58bcc83b094540e5efa0

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for tests/xe: Add xe_cg_dmem test
  2025-01-15 11:55 [PATCH i-g-t] tests/xe: Add xe_cg_dmem test Maarten Lankhorst
  2025-01-16 11:06 ` ✓ i915.CI.BAT: success for " Patchwork
  2025-01-16 11:32 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-01-16 15:11 ` Patchwork
  2025-01-16 15:18 ` Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-01-16 15:11 UTC (permalink / raw)
  To: Maarten Lankhorst; +Cc: igt-dev

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

== Series Details ==

Series: tests/xe: Add xe_cg_dmem test
URL   : https://patchwork.freedesktop.org/series/143593/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12447_full
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
    - shard-bmg:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
    - shard-dg2-set2:     [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html

  * igt@kms_flip@flip-vs-suspend@d-dp4:
    - shard-dg2-set2:     NOTRUN -> ([INCOMPLETE][5], [PASS][6])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1:
    - shard-lnl:          [PASS][7] -> ([INCOMPLETE][8], [PASS][9]) +3 other tests ( 1 incomplete, 1 pass )
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1.html

  * igt@kms_flip_tiling@flip-change-tiling:
    - shard-bmg:          [PASS][10] -> ([SKIP][11], [INCOMPLETE][12]) ([Intel XE#2136])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip_tiling@flip-change-tiling.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_flip_tiling@flip-change-tiling.html

  * {igt@xe_cg_dmem@functional} (NEW):
    - shard-bmg:          NOTRUN -> ([SKIP][13], [SKIP][14])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_cg_dmem@functional.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@xe_cg_dmem@functional.html
    - shard-lnl:          NOTRUN -> ([SKIP][15], [SKIP][16])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@xe_cg_dmem@functional.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@xe_cg_dmem@functional.html

  * {igt@xe_cg_dmem@test-simple-min} (NEW):
    - shard-dg2-set2:     NOTRUN -> [SKIP][17] +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@xe_cg_dmem@test-simple-min.html
    - shard-lnl:          NOTRUN -> [SKIP][18] +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@xe_cg_dmem@test-simple-min.html

  * igt@xe_exec_threads@threads-cm-shared-vm-rebind:
    - shard-bmg:          NOTRUN -> ([FAIL][19], [SKIP][20]) ([Intel XE#1130])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@xe_exec_threads@threads-cm-shared-vm-rebind.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_exec_threads@threads-cm-shared-vm-rebind.html
    - shard-dg2-set2:     NOTRUN -> [FAIL][21]
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_exec_threads@threads-cm-shared-vm-rebind.html

  
#### Warnings ####

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [FAIL][22] ([Intel XE#2882]) -> ([FAIL][23], [SKIP][24]) ([Intel XE#2423])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][25] ([Intel XE#2882]) -> [FAIL][26]
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html

  
New tests
---------

  New tests have been introduced between XEIGT_8193_full and XEIGTPW_12447_full:

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

  * igt@xe_cg_dmem@functional:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@xe_cg_dmem@test-simple-max:
    - Statuses : 3 skip(s)
    - Exec time: [0.0] s

  * igt@xe_cg_dmem@test-simple-min:
    - Statuses : 3 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@hotrebind:
    - shard-bmg:          [PASS][27] -> [SKIP][28] ([Intel XE#1885]) +3 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@core_hotunplug@hotrebind.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@core_hotunplug@hotrebind.html

  * igt@core_hotunplug@hotrebind-lateclose:
    - shard-bmg:          [PASS][29] -> ([SKIP][30], [SKIP][31]) ([Intel XE#1885])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@core_hotunplug@hotrebind-lateclose.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@core_hotunplug@hotrebind-lateclose.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@core_hotunplug@hotrebind-lateclose.html

  * igt@core_hotunplug@hotreplug:
    - shard-bmg:          [PASS][32] -> ([PASS][33], [SKIP][34]) ([Intel XE#1885])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@core_hotunplug@hotreplug.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@core_hotunplug@hotreplug.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@core_hotunplug@hotreplug.html

  * igt@core_setmaster@master-drop-set-user:
    - shard-bmg:          [PASS][35] -> ([FAIL][36], [PASS][37]) ([Intel XE#3249]) +2 other tests ( 1 fail, 1 pass )
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@core_setmaster@master-drop-set-user.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@core_setmaster@master-drop-set-user.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@core_setmaster@master-drop-set-user.html

  * igt@fbdev@eof:
    - shard-bmg:          [PASS][38] -> ([SKIP][39], [PASS][40]) ([Intel XE#2134]) +2 other tests ( 1 pass, 1 skip )
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@fbdev@eof.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@fbdev@eof.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@fbdev@eof.html

  * igt@kms_addfb_basic@bad-pitch-63:
    - shard-bmg:          NOTRUN -> ([PASS][41], [SKIP][42]) ([Intel XE#2423]) +1 other test ( 1 pass, 1 skip )
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_addfb_basic@bad-pitch-63.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-63.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#873])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-lnl:          NOTRUN -> ([SKIP][44], [SKIP][45]) ([Intel XE#1407])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [PASS][46] -> ([PASS][47], [SKIP][48]) ([Intel XE#2136]) +28 other tests ( 1 pass, 1 skip )
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-bmg:          [PASS][49] -> ([SKIP][50], [SKIP][51]) ([Intel XE#2136]) +8 other tests ( 2 skip )
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-180:
    - shard-bmg:          [PASS][52] -> [SKIP][53] ([Intel XE#2136]) +24 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-180.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [PASS][54] -> [SKIP][55] ([Intel XE#2136]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> ([SKIP][56], [SKIP][57]) ([Intel XE#2136] / [Intel XE#2327])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#316]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-lnl:          NOTRUN -> ([SKIP][59], [SKIP][60]) ([Intel XE#1124]) +1 other test ( 2 skip )
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-lnl:          NOTRUN -> ([SKIP][61], [SKIP][62]) ([Intel XE#1467])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb.html

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

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

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#1124]) +2 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#619])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][67], [SKIP][68]) ([Intel XE#1124]) +1 other test ( 2 skip )
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#367]) +5 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][70], [SKIP][71]) ([Intel XE#367]) +1 other test ( 2 skip )
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#2191]) +2 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> ([SKIP][73], [SKIP][74]) ([Intel XE#2423] / [Intel XE#367])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][75] ([Intel XE#455] / [Intel XE#787]) +44 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#2907]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> ([SKIP][77], [SKIP][78]) ([Intel XE#2136] / [Intel XE#2887])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][79] ([Intel XE#2136]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-bmg:          NOTRUN -> ([SKIP][80], [PASS][81]) ([Intel XE#2136])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#2887]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          NOTRUN -> ([SKIP][83], [SKIP][84]) ([Intel XE#2136]) +1 other test ( 2 skip )
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][85] ([Intel XE#787]) +195 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][86], [SKIP][87]) ([Intel XE#787]) +27 other tests ( 2 skip )
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][89], [SKIP][90]) ([Intel XE#455] / [Intel XE#787]) +7 other tests ( 2 skip )
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#2887])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [PASS][92] -> ([PASS][93], [INCOMPLETE][94]) ([Intel XE#1727] / [Intel XE#3124])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
    - shard-dg2-set2:     [PASS][95] -> ([PASS][96], [INCOMPLETE][97]) ([Intel XE#3124])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [PASS][98] -> ([PASS][99], [DMESG-WARN][100]) ([Intel XE#1727] / [Intel XE#3113])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][101], [SKIP][102]) ([Intel XE#306])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_chamelium_color@ctm-0-50.html

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

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][104] ([Intel XE#373]) +10 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#373]) +3 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html

  * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][106], [SKIP][107]) ([Intel XE#373])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html

  * igt@kms_content_protection@atomic@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][108] ([Intel XE#1178]) +1 other test fail
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_content_protection@atomic@pipe-a-dp-2.html

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

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

  * igt@kms_content_protection@uevent@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][111] ([Intel XE#1188])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-random-32x10:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][112], [SKIP][113]) ([Intel XE#455]) +3 other tests ( 2 skip )
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_cursor_crc@cursor-random-32x10.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_cursor_crc@cursor-random-32x10.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-lnl:          NOTRUN -> ([SKIP][114], [SKIP][115]) ([Intel XE#2321])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_cursor_crc@cursor-random-512x170.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-bmg:          NOTRUN -> ([SKIP][116], [SKIP][117]) ([Intel XE#2320] / [Intel XE#2423])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-max-size.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-lnl:          NOTRUN -> ([SKIP][118], [SKIP][119]) ([Intel XE#309])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
    - shard-bmg:          [PASS][120] -> ([SKIP][121], [PASS][122]) ([Intel XE#2291])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][123] -> [SKIP][124] ([Intel XE#2291])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#309]) +2 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-bmg:          [PASS][126] -> ([SKIP][127], [SKIP][128]) ([Intel XE#2291] / [Intel XE#2423])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#1508])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [PASS][130] -> ([SKIP][131], [SKIP][132]) ([Intel XE#1340] / [Intel XE#2423])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          NOTRUN -> ([SKIP][133], [SKIP][134]) ([Intel XE#2372])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_feature_discovery@chamelium.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_feature_discovery@chamelium.html
    - shard-dg2-set2:     NOTRUN -> ([SKIP][135], [SKIP][136]) ([Intel XE#701])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_feature_discovery@chamelium.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     NOTRUN -> [SKIP][137] ([Intel XE#1138])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][138], [SKIP][139]) ([Intel XE#1135])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_feature_discovery@psr2.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-bmg:          [PASS][140] -> ([SKIP][141], [SKIP][142]) ([Intel XE#2316] / [Intel XE#2423])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][143] ([Intel XE#1421]) +1 other test skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
    - shard-bmg:          [PASS][144] -> ([SKIP][145], [PASS][146]) ([Intel XE#2316])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][147] -> ([PASS][148], [FAIL][149]) ([Intel XE#301])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
    - shard-bmg:          [PASS][150] -> [FAIL][151] ([Intel XE#3321])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-dg2-set2:     NOTRUN -> ([ABORT][152], [PASS][153]) ([Intel XE#2625])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a2-dp2:
    - shard-dg2-set2:     NOTRUN -> [ABORT][154] ([Intel XE#2625])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a2-dp2.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [PASS][155] -> [SKIP][156] ([Intel XE#2423]) +107 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [PASS][157] -> [SKIP][158] ([Intel XE#2316]) +1 other test skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-plain-flip.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-lnl:          NOTRUN -> ([SKIP][159], [SKIP][160]) ([Intel XE#1421])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank:
    - shard-bmg:          [PASS][161] -> ([SKIP][162], [FAIL][163]) ([Intel XE#2423] / [Intel XE#2882])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@flip-vs-blocking-wf-vblank.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@c-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][164] ([Intel XE#2882]) +1 other test fail
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_flip@flip-vs-blocking-wf-vblank@c-dp2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4:
    - shard-dg2-set2:     [PASS][165] -> [FAIL][166] ([Intel XE#301]) +8 other tests fail
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][167] ([Intel XE#301])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-expired-vblank@c-dp4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][168] ([Intel XE#301] / [Intel XE#3321])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-dg2-set2:     NOTRUN -> ([PASS][169], [INCOMPLETE][170]) ([Intel XE#2597])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [PASS][171] -> [INCOMPLETE][172] ([Intel XE#2597])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@nonexisting-fb:
    - shard-dg2-set2:     [PASS][173] -> [SKIP][174] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip@nonexisting-fb.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_flip@nonexisting-fb.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-lnl:          NOTRUN -> ([SKIP][175], [SKIP][176]) ([Intel XE#1401] / [Intel XE#1745])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> ([SKIP][177], [SKIP][178]) ([Intel XE#1401])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][179] ([Intel XE#455]) +12 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][181] ([Intel XE#1401])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> ([SKIP][182], [SKIP][183]) ([Intel XE#1397] / [Intel XE#1745])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> ([SKIP][184], [SKIP][185]) ([Intel XE#1397])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-dg2-set2:     NOTRUN -> [SKIP][186] ([i915#5274])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][187] ([Intel XE#651]) +30 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][188], [SKIP][189]) ([Intel XE#651]) +8 other tests ( 2 skip )
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> ([FAIL][190], [FAIL][191]) ([Intel XE#2333])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][192] ([Intel XE#656]) +6 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> ([SKIP][193], [SKIP][194]) ([Intel XE#651]) +2 other tests ( 2 skip )
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> ([SKIP][195], [SKIP][196]) ([Intel XE#2136] / [Intel XE#2313])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
    - shard-lnl:          NOTRUN -> ([SKIP][197], [SKIP][198]) ([Intel XE#656]) +5 other tests ( 2 skip )
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][199] ([Intel XE#2312])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][200] ([Intel XE#653]) +31 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][201] ([Intel XE#2313])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][202], [SKIP][203]) ([Intel XE#653]) +4 other tests ( 2 skip )
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][204] ([Intel XE#2050])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_hdr@bpc-switch:
    - shard-bmg:          NOTRUN -> [SKIP][205] ([Intel XE#2423]) +4 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][206] ([Intel XE#1503])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][207] ([Intel XE#346])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][208] ([Intel XE#616]) +3 other tests fail
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
    - shard-bmg:          [PASS][209] -> ([SKIP][210], [PASS][211]) ([Intel XE#2423]) +141 other tests ( 1 pass, 1 skip )
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][212] ([Intel XE#877])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
    - shard-dg2-set2:     NOTRUN -> [SKIP][213] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
    - shard-dg2-set2:     NOTRUN -> [SKIP][214] ([Intel XE#2763]) +5 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
    - shard-bmg:          [PASS][215] -> ([SKIP][216], [SKIP][217]) ([Intel XE#2423]) +33 other tests ( 2 skip )
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
    - shard-dg2-set2:     NOTRUN -> [SKIP][218] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     NOTRUN -> [SKIP][219] ([Intel XE#870]) +1 other test skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          NOTRUN -> ([SKIP][220], [SKIP][221]) ([Intel XE#870])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_pm_backlight@fade.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [PASS][222] -> ([FAIL][223], [FAIL][224]) ([Intel XE#718])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][225], [SKIP][226]) ([Intel XE#1129])
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@basic-rte:
    - shard-bmg:          [PASS][227] -> [SKIP][228] ([Intel XE#2446]) +4 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_pm_rpm@basic-rte.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_rpm@basic-rte.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          [PASS][229] -> ([PASS][230], [SKIP][231]) ([Intel XE#2446]) +2 other tests ( 1 pass, 1 skip )
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_pm_rpm@i2c.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_pm_rpm@i2c.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@legacy-planes-dpms:
    - shard-bmg:          [PASS][232] -> ([SKIP][233], [SKIP][234]) ([Intel XE#2446])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_pm_rpm@legacy-planes-dpms.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_rpm@legacy-planes-dpms.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-dg2-set2:     [PASS][235] -> [SKIP][236] ([Intel XE#2446])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt@kms_pm_rpm@universal-planes-dpms.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][237] ([Intel XE#2893])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][238] ([Intel XE#1489])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][239] ([Intel XE#1489]) +9 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-bmg:          NOTRUN -> ([SKIP][240], [SKIP][241]) ([Intel XE#1489] / [Intel XE#2136])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][242], [SKIP][243]) ([Intel XE#1489]) +2 other tests ( 2 skip )
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> ([SKIP][244], [SKIP][245]) ([Intel XE#2893]) +1 other test ( 2 skip )
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2-set2:     NOTRUN -> [SKIP][246] ([Intel XE#1122])
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-sprite-plane-move:
    - shard-bmg:          NOTRUN -> [SKIP][247] ([Intel XE#2234] / [Intel XE#2850])
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_psr@fbc-pr-sprite-plane-move.html

  * igt@kms_psr@pr-dpms:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][248], [SKIP][249]) ([Intel XE#2850] / [Intel XE#929])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_psr@pr-dpms.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_psr@pr-dpms.html

  * igt@kms_psr@psr-basic:
    - shard-bmg:          NOTRUN -> [SKIP][250] ([Intel XE#2136]) +3 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr@psr-basic.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][251] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_psr@psr-dpms.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][252] ([Intel XE#3414]) +2 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][253] ([Intel XE#1127])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][254], [SKIP][255]) ([Intel XE#1500] / [Intel XE#362])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-lnl:          [PASS][256] -> [FAIL][257] ([Intel XE#899])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][258] -> [FAIL][259] ([Intel XE#2159]) +1 other test fail
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@lobf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][260] ([Intel XE#2168])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_vrr@lobf.html

  * {igt@xe_cg_dmem@test-simple-max} (NEW):
    - shard-bmg:          NOTRUN -> ([SKIP][261], [SKIP][262]) ([Intel XE#1130]) +1 other test ( 2 skip )
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_cg_dmem@test-simple-max.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_cg_dmem@test-simple-max.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     NOTRUN -> [SKIP][263] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-dg2-set2:     NOTRUN -> [SKIP][264] ([Intel XE#1126])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_eudebug@basic-vm-access-parameters:
    - shard-dg2-set2:     NOTRUN -> [SKIP][265] ([Intel XE#1130]) +1 other test skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters.html

  * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
    - shard-lnl:          NOTRUN -> ([SKIP][266], [SKIP][267]) ([Intel XE#3889])
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html

  * igt@xe_eudebug@discovery-race-vmbind:
    - shard-bmg:          NOTRUN -> [SKIP][268] ([Intel XE#2905]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_eudebug@discovery-race-vmbind.html

  * igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][269], [SKIP][270]) ([Intel XE#2905]) +1 other test ( 2 skip )
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html

  * igt@xe_eudebug_online@interrupt-other-debuggable:
    - shard-dg2-set2:     NOTRUN -> [SKIP][271] ([Intel XE#2905]) +10 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_eudebug_online@interrupt-other-debuggable.html

  * igt@xe_eudebug_online@single-step:
    - shard-bmg:          NOTRUN -> ([SKIP][272], [SKIP][273]) ([Intel XE#1130] / [Intel XE#2905])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_eudebug_online@single-step.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_eudebug_online@single-step.html

  * igt@xe_evict@evict-large-multi-vm:
    - shard-lnl:          NOTRUN -> ([SKIP][274], [SKIP][275]) ([Intel XE#688])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@xe_evict@evict-large-multi-vm.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@xe_evict@evict-large-multi-vm.html

  * igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][276] ([Intel XE#1130]) +3 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> ([SKIP][277], [SKIP][278]) ([Intel XE#1392])
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][279] ([Intel XE#2322])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
    - shard-dg2-set2:     [PASS][280] -> ([SKIP][281], [PASS][282]) ([Intel XE#1392]) +3 other tests ( 1 pass, 1 skip )
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-null:
    - shard-dg2-set2:     [PASS][283] -> [SKIP][284] ([Intel XE#1392]) +1 other test skip
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@xe_exec_basic@multigpu-once-null.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html
    - shard-lnl:          NOTRUN -> [SKIP][285] ([Intel XE#1392]) +2 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@xe_exec_basic@multigpu-once-null.html

  * igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
    - shard-bmg:          [PASS][286] -> ([SKIP][287], [SKIP][288]) ([Intel XE#1130]) +85 other tests ( 2 skip )
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][289], [SKIP][290]) ([Intel XE#288]) +4 other tests ( 2 skip )
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][291] ([Intel XE#288]) +27 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_reset@parallel-cat-error:
    - shard-dg2-set2:     [PASS][292] -> [SKIP][293] ([Intel XE#1130]) +7 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@xe_exec_reset@parallel-cat-error.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_exec_reset@parallel-cat-error.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip:
    - shard-lnl:          NOTRUN -> [SKIP][294] ([Intel XE#2905])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@xe_exec_sip_eudebug@breakpoint-writesip.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip-twice:
    - shard-lnl:          NOTRUN -> ([SKIP][295], [SKIP][296]) ([Intel XE#2905]) +2 other tests ( 2 skip )
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-bmg:          [PASS][297] -> ([PASS][298], [SKIP][299]) ([Intel XE#1130]) +323 other tests ( 1 pass, 1 skip )
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_gt_freq@freq_suspend:
    - shard-dg2-set2:     [PASS][300] -> ([PASS][301], [ABORT][302]) ([Intel XE#2625])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt@xe_gt_freq@freq_suspend.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_gt_freq@freq_suspend.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][303] ([Intel XE#2229]) +1 other test skip
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_dma_buf:
    - shard-bmg:          [PASS][304] -> ([SKIP][305], [PASS][306]) ([Intel XE#1192])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@xe_live_ktest@xe_dma_buf.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-bmg:          [PASS][307] -> ([PASS][308], [SKIP][309]) ([Intel XE#2229])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_live_ktest@xe_mocs:
    - shard-bmg:          [PASS][310] -> ([FAIL][311], [SKIP][312]) ([Intel XE#1192] / [Intel XE#1999])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_live_ktest@xe_mocs.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_live_ktest@xe_mocs.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_live_ktest@xe_mocs.html

  * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
    - shard-bmg:          [PASS][313] -> [FAIL][314] ([Intel XE#1999]) +1 other test fail
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html

  * igt@xe_media_fill@media-fill:
    - shard-dg2-set2:     NOTRUN -> [SKIP][315] ([Intel XE#560])
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@xe_media_fill@media-fill.html

  * igt@xe_mmap@pci-membarrier-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][316] ([Intel XE#4045])
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@xe_mmap@pci-membarrier-parallel.html

  * igt@xe_module_load@many-reload:
    - shard-bmg:          [PASS][317] -> ([FAIL][318], [PASS][319]) ([Intel XE#3546])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_module_load@many-reload.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_module_load@many-reload.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_module_load@many-reload.html

  * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
    - shard-dg2-set2:     NOTRUN -> [SKIP][320] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html

  * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> ([FAIL][321], [FAIL][322]) ([Intel XE#1173]) +1 other test ( 2 fail )
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     NOTRUN -> [SKIP][323] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@s2idle-basic:
    - shard-dg2-set2:     [PASS][324] -> [ABORT][325] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@xe_pm@s2idle-basic.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm@s3-exec-after:
    - shard-dg2-set2:     [PASS][326] -> ([PASS][327], [ABORT][328]) ([Intel XE#1358])
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@xe_pm@s3-exec-after.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@xe_pm@s3-exec-after.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@xe_pm@s3-exec-after.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> ([SKIP][329], [SKIP][330]) ([Intel XE#2284] / [Intel XE#366])
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@xe_pm@s4-d3cold-basic-exec.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - shard-lnl:          [PASS][331] -> [ABORT][332] ([Intel XE#1358] / [Intel XE#1794])
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-lnl:          [PASS][333] -> ([PASS][334], [FAIL][335]) ([Intel XE#958])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html

  * igt@xe_query@multigpu-query-invalid-size:
    - shard-lnl:          NOTRUN -> [SKIP][336] ([Intel XE#944])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@xe_query@multigpu-query-invalid-size.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-dg2-set2:     NOTRUN -> [SKIP][337] ([Intel XE#944])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-bmg:          NOTRUN -> ([SKIP][338], [SKIP][339]) ([Intel XE#1130] / [Intel XE#944])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_query@multigpu-query-uc-fw-version-huc.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_query@query-gt-list:
    - shard-bmg:          [PASS][340] -> [SKIP][341] ([Intel XE#1130]) +222 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@xe_query@query-gt-list.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_query@query-gt-list.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-dg2-set2:     NOTRUN -> [SKIP][342] ([Intel XE#3342])
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_vm@munmap-style-unbind-end:
    - shard-bmg:          NOTRUN -> ([SKIP][343], [PASS][344]) ([Intel XE#1130]) +4 other tests ( 1 pass, 1 skip )
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_vm@munmap-style-unbind-end.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_vm@munmap-style-unbind-end.html

  
#### Possible fixes ####

  * igt@core_getversion@basic:
    - shard-bmg:          [FAIL][345] -> [PASS][346]
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@core_getversion@basic.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt@core_getversion@basic.html

  * igt@fbdev@pan:
    - shard-bmg:          [SKIP][347] ([Intel XE#2134]) -> ([PASS][348], [PASS][349])
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@fbdev@pan.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@fbdev@pan.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@fbdev@pan.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
    - shard-bmg:          [FAIL][350] ([Intel XE#827]) -> [PASS][351]
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
    - shard-lnl:          [FAIL][352] ([Intel XE#3719]) -> [PASS][353] +3 other tests pass
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][354] ([Intel XE#3862]) -> ([PASS][355], [PASS][356]) +1 other test ( 2 pass )
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1:
    - shard-lnl:          [FAIL][357] ([Intel XE#4075]) -> [PASS][358] +1 other test pass
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-bmg:          [SKIP][359] ([Intel XE#2291]) -> [PASS][360] +1 other test pass
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][361] ([Intel XE#2291]) -> ([PASS][362], [PASS][363]) +2 other tests ( 2 pass )
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-lnl:          [FAIL][364] ([Intel XE#1475]) -> [PASS][365]
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4:
    - shard-dg2-set2:     [FAIL][366] ([Intel XE#301]) -> ([PASS][367], [PASS][368])
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-bmg:          [SKIP][369] ([Intel XE#2316]) -> [PASS][370] +1 other test pass
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [SKIP][371] ([Intel XE#2316]) -> ([PASS][372], [PASS][373]) +1 other test ( 2 pass )
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@dpms-vs-vblank-race:
    - shard-dg2-set2:     [INCOMPLETE][374] ([Intel XE#2049]) -> [PASS][375]
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_flip@dpms-vs-vblank-race.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@dpms-vs-vblank-race.html

  * igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a6:
    - shard-dg2-set2:     [INCOMPLETE][376] -> [PASS][377]
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a6.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a6.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-lnl:          [FAIL][378] ([Intel XE#886]) -> ([PASS][379], [PASS][380]) +1 other test ( 2 pass )
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a6:
    - shard-dg2-set2:     [FAIL][381] ([Intel XE#4072]) -> [PASS][382]
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a6.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a6.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a6:
    - shard-dg2-set2:     [FAIL][383] ([Intel XE#886]) -> [PASS][384] +1 other test pass
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a6.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [FAIL][385] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][386]
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3:
    - shard-bmg:          [FAIL][387] ([Intel XE#3820]) -> [PASS][388] +1 other test pass
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [SKIP][389] ([Intel XE#2571]) -> ([PASS][390], [PASS][391])
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-lnl:          [FAIL][392] ([Intel XE#899]) -> [PASS][393] +1 other test pass
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue:
    - shard-dg2-set2:     [SKIP][394] ([Intel XE#1392]) -> [PASS][395] +2 other tests pass
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@xe_exec_basic@multigpu-once-bindexecqueue.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-dg2-set2:     [ABORT][396] ([Intel XE#1358]) -> [PASS][397]
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt@xe_pm@s2idle-basic-exec.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s4-basic-exec:
    - shard-lnl:          [ABORT][398] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> ([PASS][399], [PASS][400])
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@xe_pm@s4-basic-exec.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-lnl:          [ABORT][401] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][402]
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_vm@bind-once:
    - shard-bmg:          [SKIP][403] ([Intel XE#1130]) -> [PASS][404] +1 other test pass
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_vm@bind-once.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_vm@bind-once.html

  * igt@xe_vm@mixed-userptr-misaligned-binds-1611661312:
    - shard-bmg:          [SKIP][405] ([Intel XE#1130]) -> ([PASS][406], [PASS][407]) +1 other test ( 2 pass )
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_vm@mixed-userptr-misaligned-binds-1611661312.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_vm@mixed-userptr-misaligned-binds-1611661312.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@xe_vm@mixed-userptr-misaligned-binds-1611661312.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          [SKIP][408] ([Intel XE#2233]) -> ([SKIP][409], [SKIP][410]) ([Intel XE#2233] / [Intel XE#2423])
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@bad-pitch-999:
    - shard-bmg:          [SKIP][411] ([Intel XE#3007]) -> ([SKIP][412], [SKIP][413]) ([Intel XE#2423])
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_addfb_basic@bad-pitch-999.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_addfb_basic@bad-pitch-999.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-999.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-bmg:          [FAIL][414] ([Intel XE#827]) -> ([SKIP][415], [PASS][416]) ([Intel XE#2423])
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
    - shard-dg2-set2:     [SKIP][417] ([Intel XE#2550]) -> ([SKIP][418], [SKIP][419]) ([Intel XE#2550] / [Intel XE#3767]) +23 other tests ( 2 skip )
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html

  * igt@kms_async_flips@invalid-async-flip-atomic:
    - shard-bmg:          [SKIP][420] ([Intel XE#3768]) -> ([SKIP][421], [SKIP][422]) ([Intel XE#2423] / [Intel XE#3768])
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_async_flips@invalid-async-flip-atomic.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_async_flips@invalid-async-flip-atomic.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_async_flips@invalid-async-flip-atomic.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          [SKIP][423] ([Intel XE#2370]) -> ([SKIP][424], [SKIP][425]) ([Intel XE#2423])
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - shard-bmg:          [SKIP][426] ([Intel XE#2327]) -> ([SKIP][427], [SKIP][428]) ([Intel XE#2136] / [Intel XE#2327]) +4 other tests ( 2 skip )
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-bmg:          [SKIP][429] ([Intel XE#2327]) -> ([SKIP][430], [SKIP][431]) ([Intel XE#2136])
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-bmg:          [SKIP][432] ([Intel XE#2327]) -> [SKIP][433] ([Intel XE#2136]) +2 other tests skip
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
    - shard-bmg:          [SKIP][434] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][435], [SKIP][436]) ([Intel XE#1124])
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][437] ([Intel XE#607]) -> ([SKIP][438], [SKIP][439]) ([Intel XE#2136] / [Intel XE#607])
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][440] ([Intel XE#610]) -> [SKIP][441] ([Intel XE#2136])
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          [SKIP][442] ([Intel XE#1124]) -> [SKIP][443] ([Intel XE#2136]) +13 other tests skip
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [SKIP][444] ([Intel XE#1124]) -> ([SKIP][445], [SKIP][446]) ([Intel XE#2136]) +3 other tests ( 2 skip )
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          [SKIP][447] ([Intel XE#1124]) -> ([SKIP][448], [SKIP][449]) ([Intel XE#1124] / [Intel XE#2136]) +19 other tests ( 2 skip )
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          [SKIP][450] ([Intel XE#2328]) -> ([SKIP][451], [SKIP][452]) ([Intel XE#2136]) +1 other test ( 2 skip )
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][453] ([Intel XE#610]) -> ([SKIP][454], [SKIP][455]) ([Intel XE#2136] / [Intel XE#610])
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          [SKIP][456] ([Intel XE#2314] / [Intel XE#2894]) -> ([SKIP][457], [SKIP][458]) ([Intel XE#2314] / [Intel XE#2423] / [Intel XE#2894])
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-bmg:          [SKIP][459] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][460] ([Intel XE#2423])
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          [SKIP][461] ([Intel XE#367]) -> [SKIP][462] ([Intel XE#2423]) +3 other tests skip
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - shard-bmg:          [SKIP][463] ([Intel XE#367]) -> ([SKIP][464], [SKIP][465]) ([Intel XE#2423] / [Intel XE#367]) +5 other tests ( 2 skip )
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
    - shard-bmg:          [SKIP][466] ([Intel XE#2887]) -> ([SKIP][467], [SKIP][468]) ([Intel XE#2136]) +7 other tests ( 2 skip )
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][469] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][470], [SKIP][471]) ([Intel XE#2887])
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html

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

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][474] ([Intel XE#2652] / [Intel XE#787]) -> ([SKIP][475], [SKIP][476]) ([Intel XE#2136])
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][477] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][478] ([Intel XE#2136])
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][479] ([Intel XE#3432]) -> [SKIP][480] ([Intel XE#2136]) +2 other tests skip
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][481] ([Intel XE#3432]) -> ([SKIP][482], [SKIP][483]) ([Intel XE#2136])
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-bmg:          [SKIP][484] ([Intel XE#3432]) -> ([SKIP][485], [SKIP][486]) ([Intel XE#2136] / [Intel XE#3432]) +2 other tests ( 2 skip )
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          [SKIP][487] ([Intel XE#2887]) -> ([SKIP][488], [SKIP][489]) ([Intel XE#2136] / [Intel XE#2887]) +23 other tests ( 2 skip )
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][490] ([Intel XE#2652] / [Intel XE#787]) -> ([SKIP][491], [SKIP][492]) ([Intel XE#2136] / [Intel XE#2652] / [Intel XE#787]) +1 other test ( 2 skip )
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          [SKIP][493] ([Intel XE#2724]) -> ([SKIP][494], [SKIP][495]) ([Intel XE#2136])
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_cdclk@mode-transition.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cdclk@mode-transition.html
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          [SKIP][496] ([Intel XE#2724]) -> ([SKIP][497], [SKIP][498]) ([Intel XE#2136] / [Intel XE#2724]) +1 other test ( 2 skip )
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-bmg:          [SKIP][499] ([Intel XE#2325]) -> ([SKIP][500], [SKIP][501]) ([Intel XE#2325] / [Intel XE#2423]) +2 other tests ( 2 skip )
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_chamelium_color@ctm-0-50.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-bmg:          [SKIP][502] ([Intel XE#2325]) -> [SKIP][503] ([Intel XE#2423]) +4 other tests skip
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_chamelium_color@ctm-blue-to-red.html
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-bmg:          [SKIP][504] ([Intel XE#3007]) -> ([SKIP][505], [SKIP][506]) ([Intel XE#2325] / [Intel XE#2423])
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_chamelium_color@ctm-green-to-red.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-dg2-set2:     [SKIP][507] ([Intel XE#306]) -> [SKIP][508] ([Intel XE#2423] / [i915#2575])
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_chamelium_color@ctm-max.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-bmg:          [SKIP][509] ([Intel XE#2252]) -> ([SKIP][510], [SKIP][511]) ([Intel XE#2252] / [Intel XE#2423]) +16 other tests ( 2 skip )
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
    - shard-dg2-set2:     [SKIP][512] ([Intel XE#373]) -> [SKIP][513] ([Intel XE#2423] / [i915#2575])
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          [SKIP][514] ([Intel XE#2252]) -> [SKIP][515] ([Intel XE#2423]) +10 other tests skip
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
    - shard-bmg:          [SKIP][516] ([Intel XE#3007]) -> ([SKIP][517], [SKIP][518]) ([Intel XE#2252] / [Intel XE#2423])
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-bmg:          [SKIP][519] ([Intel XE#2252]) -> ([SKIP][520], [SKIP][521]) ([Intel XE#2423]) +3 other tests ( 2 skip )
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [FAIL][522] ([Intel XE#1178]) -> ([SKIP][523], [SKIP][524]) ([Intel XE#2341] / [Intel XE#2423])
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_content_protection@atomic.html
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_content_protection@atomic.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          [SKIP][525] ([Intel XE#2341]) -> ([SKIP][526], [SKIP][527]) ([Intel XE#2423])
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_content_protection@content-type-change.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_content_protection@content-type-change.html
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-bmg:          [SKIP][528] ([Intel XE#2390]) -> ([SKIP][529], [SKIP][530]) ([Intel XE#2390] / [Intel XE#2423])
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0.html
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][531] ([Intel XE#1178]) -> [SKIP][532] ([Intel XE#2423])
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_content_protection@legacy.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [FAIL][533] ([Intel XE#1178]) -> ([FAIL][534], [SKIP][535]) ([Intel XE#1178] / [Intel XE#2423])
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_content_protection@lic-type-0.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_content_protection@lic-type-0.html
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-1:
    - shard-bmg:          [SKIP][536] ([Intel XE#2341]) -> [SKIP][537] ([Intel XE#2423])
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_content_protection@lic-type-1.html
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@mei-interface:
    - shard-bmg:          [SKIP][538] ([Intel XE#2341]) -> ([SKIP][539], [SKIP][540]) ([Intel XE#2341] / [Intel XE#2423])
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_content_protection@mei-interface.html
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_content_protection@mei-interface.html
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][541] ([Intel XE#1188]) -> ([SKIP][542], [SKIP][543]) ([Intel XE#2423])
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_content_protection@uevent.html
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_content_protection@uevent.html
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-bmg:          [SKIP][544] ([Intel XE#2320]) -> ([SKIP][545], [SKIP][546]) ([Intel XE#2423]) +2 other tests ( 2 skip )
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-bmg:          [SKIP][547] ([Intel XE#2320]) -> ([SKIP][548], [SKIP][549]) ([Intel XE#2320] / [Intel XE#2423]) +6 other tests ( 2 skip )
   [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          [SKIP][550] ([Intel XE#2321]) -> ([SKIP][551], [SKIP][552]) ([Intel XE#2321] / [Intel XE#2423]) +1 other test ( 2 skip )
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x170.html
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x170.html
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-bmg:          [SKIP][553] ([Intel XE#2321]) -> ([SKIP][554], [SKIP][555]) ([Intel XE#2423])
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x512.html
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x512.html
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-bmg:          [SKIP][556] ([Intel XE#2320]) -> [SKIP][557] ([Intel XE#2423]) +7 other tests skip
   [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-bmg:          [SKIP][558] ([Intel XE#2321]) -> [SKIP][559] ([Intel XE#2423])
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-bmg:          [SKIP][560] ([Intel XE#2291]) -> ([SKIP][561], [SKIP][562]) ([Intel XE#2423])
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-bmg:          [SKIP][563] ([Intel XE#2291]) -> [SKIP][564] ([Intel XE#2423]) +1 other test skip
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-bmg:          [DMESG-WARN][565] ([Intel XE#877]) -> ([DMESG-WARN][566], [SKIP][567]) ([Intel XE#2423] / [Intel XE#877])
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][568] ([Intel XE#2286]) -> [SKIP][569] ([Intel XE#2423])
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          [FAIL][570] ([Intel XE#2141]) -> ([FAIL][571], [SKIP][572]) ([Intel XE#2136] / [Intel XE#2141])
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][573] ([Intel XE#1508]) -> [SKIP][574] ([Intel XE#2136])
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][575] ([Intel XE#2425]) -> ([SKIP][576], [PASS][577]) ([Intel XE#2423])
   [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
   [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
   [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-bmg:          [SKIP][578] ([Intel XE#2323]) -> [SKIP][579] ([Intel XE#2423])
   [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_display_modes@mst-extended-mode-negative.html
   [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_display_modes@mst-extended-mode-negative.html
    - shard-dg2-set2:     [SKIP][580] ([Intel XE#307]) -> [SKIP][581] ([Intel XE#2423] / [i915#2575])
   [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt@kms_display_modes@mst-extended-mode-negative.html
   [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-bmg:          [SKIP][582] ([Intel XE#2244]) -> [SKIP][583] ([Intel XE#2136]) +1 other test skip
   [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
   [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          [SKIP][584] ([Intel XE#2244]) -> ([SKIP][585], [SKIP][586]) ([Intel XE#2136] / [Intel XE#2244]) +2 other tests ( 2 skip )
   [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html
   [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
   [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-bmg:          [SKIP][587] ([Intel XE#2244]) -> ([SKIP][588], [SKIP][589]) ([Intel XE#2136])
   [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          [SKIP][590] ([Intel XE#776]) -> ([SKIP][591], [SKIP][592]) ([Intel XE#2136] / [Intel XE#776]) +1 other test ( 2 skip )
   [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_fbcon_fbt@psr-suspend.html
   [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_fbcon_fbt@psr-suspend.html
   [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-bmg:          [SKIP][593] ([Intel XE#2375]) -> ([SKIP][594], [SKIP][595]) ([Intel XE#2375] / [Intel XE#2423])
   [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_feature_discovery@dp-mst.html
   [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html
   [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          [SKIP][596] ([Intel XE#2374]) -> ([SKIP][597], [SKIP][598]) ([Intel XE#2374] / [Intel XE#2423])
   [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_feature_discovery@psr2.html
   [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_feature_discovery@psr2.html
   [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [FAIL][599] ([Intel XE#2882]) -> ([SKIP][600], [FAIL][601]) ([Intel XE#2423] / [Intel XE#2882])
   [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-dg2-set2:     [FAIL][602] ([Intel XE#301]) -> ([FAIL][603], [PASS][604]) ([Intel XE#301])
   [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [FAIL][605] ([Intel XE#2882] / [Intel XE#3820]) -> [SKIP][606] ([Intel XE#2316])
   [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-bmg:          [SKIP][607] ([Intel XE#2316]) -> [SKIP][608] ([Intel XE#2423]) +2 other tests skip
   [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
   [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [SKIP][609] ([Intel XE#2316]) -> ([PASS][610], [SKIP][611]) ([Intel XE#2423]) +1 other test ( 1 pass, 1 skip )
   [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
   [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
   [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-bmg:          [SKIP][612] ([Intel XE#2316]) -> ([SKIP][613], [SKIP][614]) ([Intel XE#2423])
   [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
   [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
   [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-bmg:          [FAIL][615] ([Intel XE#2882]) -> [SKIP][616] ([Intel XE#2423])
   [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank.html
   [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-bmg:          [SKIP][617] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][618] ([Intel XE#2136]) +4 other tests skip
   [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
   [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
    - shard-bmg:          [SKIP][619] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][620] ([Intel XE#2136])
   [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
   [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][621] ([Intel XE#2293] / [Intel XE#2380]) -> ([SKIP][622], [SKIP][623]) ([Intel XE#2136] / [Intel XE#2293] / [Intel XE#2380]) +10 other tests ( 2 skip )
   [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-bmg:          [SKIP][624] ([Intel XE#2293] / [Intel XE#2380]) -> ([SKIP][625], [SKIP][626]) ([Intel XE#2136]) +2 other tests ( 2 skip )
   [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
   [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
   [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][627] ([Intel XE#2311]) -> ([SKIP][628], [SKIP][629]) ([Intel XE#2136] / [Intel XE#2311]) +45 other tests ( 2 skip )
   [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
   [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
   [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][630] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][631] ([Intel XE#2311])
   [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html
   [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][632] ([Intel XE#651]) -> [SKIP][633] ([Intel XE#2136]) +1 other test skip
   [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][634] ([Intel XE#2311]) -> [SKIP][635] ([Intel XE#2136]) +33 other tests skip
   [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][636] ([Intel XE#651]) -> [SKIP][637] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
   [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][638] ([Intel XE#2311]) -> [SKIP][639] ([Intel XE#2312]) +6 other tests skip
   [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
   [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][640] ([Intel XE#2312]) -> ([SKIP][641], [SKIP][642]) ([Intel XE#2136] / [Intel XE#2311]) +6 other tests ( 2 skip )
   [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][643] ([Intel XE#2312]) -> ([SKIP][644], [SKIP][645]) ([Intel XE#2136]) +5 other tests ( 2 skip )
   [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][646] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][647], [SKIP][648]) ([Intel XE#2136])
   [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
   [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
   [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [FAIL][649] ([Intel XE#2333]) -> [SKIP][650] ([Intel XE#2136]) +12 other tests skip
   [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
   [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [FAIL][651] ([Intel XE#2333]) -> [SKIP][652] ([Intel XE#2312]) +4 other tests skip
   [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [FAIL][653] ([Intel XE#2333]) -> ([SKIP][654], [SKIP][655]) ([Intel XE#2136] / [Intel XE#2312]) +2 other tests ( 2 skip )
   [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
    - shard-bmg:          [FAIL][656] ([Intel XE#2333]) -> ([FAIL][657], [SKIP][658]) ([Intel XE#2312] / [Intel XE#2333])
   [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
   [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
   [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][659] ([Intel XE#2312]) -> ([FAIL][660], [SKIP][661]) ([Intel XE#2136] / [Intel XE#2333]) +1 other test ( 1 fail, 1 skip )
   [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][662] ([Intel XE#2312]) -> ([FAIL][663], [FAIL][664]) ([Intel XE#2333]) +2 other tests ( 2 fail )
   [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][665] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][666], [FAIL][667]) ([Intel XE#2136] / [Intel XE#2333])
   [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [FAIL][668] ([Intel XE#2333]) -> ([SKIP][669], [SKIP][670]) ([Intel XE#2136]) +5 other tests ( 2 skip )
   [668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [FAIL][671] ([Intel XE#2333]) -> ([FAIL][672], [SKIP][673]) ([Intel XE#2136] / [Intel XE#2333]) +23 other tests ( 1 fail, 1 skip )
   [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
    - shard-bmg:          [DMESG-FAIL][674] ([Intel XE#877]) -> ([FAIL][675], [FAIL][676]) ([Intel XE#2333])
   [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
   [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
   [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][677] ([Intel XE#2312]) -> ([SKIP][678], [SKIP][679]) ([Intel XE#2311] / [Intel XE#2312])
   [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][680] ([Intel XE#2311]) -> ([SKIP][681], [SKIP][682]) ([Intel XE#2136] / [Intel XE#2312]) +2 other tests ( 2 skip )
   [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][683] ([Intel XE#2312]) -> ([SKIP][684], [SKIP][685]) ([Intel XE#2311]) +2 other tests ( 2 skip )
   [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html
   [684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html
   [685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][686] ([Intel XE#2312]) -> [SKIP][687] ([Intel XE#2311])
   [686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
   [687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][688] ([Intel XE#2311]) -> ([SKIP][689], [SKIP][690]) ([Intel XE#2311] / [Intel XE#2312]) +1 other test ( 2 skip )
   [688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
   [689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
   [690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
    - shard-bmg:          [SKIP][691] ([Intel XE#2311]) -> ([SKIP][692], [SKIP][693]) ([Intel XE#2136]) +10 other tests ( 2 skip )
   [691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
   [692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
   [693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-bmg:          [SKIP][694] ([Intel XE#2352]) -> [SKIP][695] ([Intel XE#2136])
   [694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][696] ([Intel XE#2313]) -> ([SKIP][697], [SKIP][698]) ([Intel XE#2136]) +12 other tests ( 2 skip )
   [696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
   [697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
   [698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][699] ([Intel XE#2313]) -> ([SKIP][700], [SKIP][701]) ([Intel XE#2136] / [Intel XE#2313]) +45 other tests ( 2 skip )
   [699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
   [700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
   [701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][702] ([Intel XE#2313]) -> [SKIP][703] ([Intel XE#2312]) +4 other tests skip
   [702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
   [703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][704] ([Intel XE#2313]) -> ([SKIP][705], [SKIP][706]) ([Intel XE#2136] / [Intel XE#2312]) +3 other tests ( 2 skip )
   [704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
   [705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
   [706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][707] ([Intel XE#2312]) -> ([SKIP][708], [SKIP][709]) ([Intel XE#2136] / [Intel XE#2313]) +3 other tests ( 2 skip )
   [707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [709]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][710] ([Intel XE#2312]) -> [SKIP][711] ([Intel XE#2136]) +10 other tests skip
   [710]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
   [711]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][712] ([Intel XE#2313]) -> ([SKIP][713], [SKIP][714]) ([Intel XE#2312] / [Intel XE#2313]) +2 other tests ( 2 skip )
   [712]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [713]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [714]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][715] ([Intel XE#2312]) -> [SKIP][716] ([Intel XE#2313]) +1 other test skip
   [715]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
   [716]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-bmg:          [SKIP][717] ([Intel XE#2352]) -> ([SKIP][718], [SKIP][719]) ([Intel XE#2136] / [Intel XE#2352])
   [717]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [718]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [719]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          [SKIP][720] ([Intel XE#2350]) -> ([SKIP][721], [SKIP][722]) ([Intel XE#2136])
   [720]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [721]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [722]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][723] ([Intel XE#2313]) -> [SKIP][724] ([Intel XE#2136]) +33 other tests skip
   [723]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [724]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
    - shard-dg2-set2:     [SKIP][725] ([Intel XE#653]) -> [SKIP][726] ([Intel XE#2136]) +2 other tests skip
   [725]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [726]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][727] ([Intel XE#2312]) -> ([SKIP][728], [SKIP][729]) ([Intel XE#2312] / [Intel XE#2313])
   [727]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
   [728]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
   [729]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-rte:
    - shard-bmg:          [SKIP][730] ([Intel XE#2312]) -> ([SKIP][731], [SKIP][732]) ([Intel XE#2313]) +2 other tests ( 2 skip )
   [730]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-rte.html
   [731]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-rte.html
   [732]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][733] ([Intel XE#2312]) -> ([SKIP][734], [SKIP][735]) ([Intel XE#2136] / [Intel XE#2312]) +1 other test ( 2 skip )
   [733]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
   [734]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
   [735]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_getfb@getfb2-accept-ccs:
    - shard-bmg:          [SKIP][736] ([Intel XE#2340]) -> ([SKIP][737], [SKIP][738]) ([Intel XE#2340] / [Intel XE#2423])
   [736]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_getfb@getfb2-accept-ccs.html
   [737]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html
   [738]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][739] ([Intel XE#1503]) -> ([PASS][740], [SKIP][741]) ([Intel XE#2423])
   [739]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
   [740]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
   [741]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          [SKIP][742] ([Intel XE#346]) -> ([SKIP][743], [SKIP][744]) ([Intel XE#2136] / [Intel XE#346])
   [742]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html
   [743]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
   [744]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          [SKIP][745] ([Intel XE#2927]) -> ([SKIP][746], [SKIP][747]) ([Intel XE#2136] / [Intel XE#2927])
   [745]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
   [746]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html
   [747]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          [SKIP][748] ([Intel XE#2501]) -> ([SKIP][749], [SKIP][750]) ([Intel XE#2423] / [Intel XE#2501])
   [748]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [749]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [750]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-bmg:          [SKIP][751] ([Intel XE#2486]) -> ([SKIP][752], [SKIP][753]) ([Intel XE#2423] / [Intel XE#2486])
   [751]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html
   [752]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html
   [753]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_plane_alpha_blend@constant-alpha-max:
    - shard-bmg:          [SKIP][754] ([Intel XE#3007]) -> [SKIP][755] ([Intel XE#2423]) +1 other test skip
   [754]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_plane_alpha_blend@constant-alpha-max.html
   [755]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_alpha_blend@constant-alpha-max.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          [SKIP][756] ([Intel XE#2393]) -> [SKIP][757] ([Intel XE#2423])
   [756]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html
   [757]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          [SKIP][758] ([Intel XE#2393]) -> ([SKIP][759], [SKIP][760]) ([Intel XE#2423])
   [758]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html
   [759]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html
   [760]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          [SKIP][761] ([Intel XE#2493]) -> ([SKIP][762], [SKIP][763]) ([Intel XE#2423] / [Intel XE#2493]) +1 other test ( 2 skip )
   [761]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html
   [762]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html
   [763]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
    - shard-bmg:          [SKIP][764] ([Intel XE#3007]) -> [DMESG-WARN][765] ([Intel XE#877])
   [764]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
   [765]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
    - shard-bmg:          [SKIP][766] ([Intel XE#2763]) -> ([SKIP][767], [SKIP][768]) ([Intel XE#2423])
   [766]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
   [767]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
   [768]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-bmg:          [SKIP][769] ([Intel XE#2763]) -> [SKIP][770] ([Intel XE#2423]) +2 other tests skip
   [769]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
   [770]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          [SKIP][771] ([Intel XE#2763]) -> ([SKIP][772], [SKIP][773]) ([Intel XE#2423] / [Intel XE#2763]) +7 other tests ( 2 skip )
   [771]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [772]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [773]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          [SKIP][774] ([Intel XE#2938]) -> ([SKIP][775], [SKIP][776]) ([Intel XE#2136])
   [774]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_pm_backlight@brightness-with-dpms.html
   [775]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html
   [776]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          [SKIP][777] ([Intel XE#2392]) -> [SKIP][778] ([Intel XE#2136])
   [777]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html
   [778]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-bmg:          [SKIP][779] ([Intel XE#3309]) -> ([SKIP][780], [SKIP][781]) ([Intel XE#2136] / [Intel XE#3309])
   [779]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_pm_dc@dc5-retention-flops.html
   [780]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html
   [781]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          [SKIP][782] ([Intel XE#2392]) -> ([SKIP][783], [SKIP][784]) ([Intel XE#2136] / [Intel XE#2392])
   [782]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html
   [783]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_dc@dc6-psr.html
   [784]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@basic-pci-d3-state:
    - shard-bmg:          [FAIL][785] -> ([SKIP][786], [SKIP][787]) ([Intel XE#2446])
   [785]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_pm_rpm@basic-pci-d3-state.html
   [786]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_rpm@basic-pci-d3-state.html
   [787]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_rpm@basic-pci-d3-state.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          [SKIP][788] ([Intel XE#1439] / [Intel XE#836]) -> ([SKIP][789], [SKIP][790]) ([Intel XE#1439] / [Intel XE#2446] / [Intel XE#836])
   [788]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [789]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [790]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-bmg:          [SKIP][791] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> ([SKIP][792], [SKIP][793]) ([Intel XE#1439] / [Intel XE#2446] / [Intel XE#3141] / [Intel XE#836]) +1 other test ( 2 skip )
   [791]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp.html
   [792]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp.html
   [793]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-bmg:          [SKIP][794] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][795] ([Intel XE#2446])
   [794]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [795]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          [SKIP][796] ([Intel XE#1489]) -> ([SKIP][797], [SKIP][798]) ([Intel XE#2136]) +4 other tests ( 2 skip )
   [796]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
   [797]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
   [798]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          [SKIP][799] ([Intel XE#1489]) -> [SKIP][800] ([Intel XE#2136]) +10 other tests skip
   [799]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
   [800]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-bmg:          [SKIP][801] ([Intel XE#1489]) -> ([SKIP][802], [SKIP][803]) ([Intel XE#1489] / [Intel XE#2136]) +15 other tests ( 2 skip )
   [801]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
   [802]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
   [803]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-dg2-set2:     [SKIP][804] ([Intel XE#1489]) -> [SKIP][805] ([Intel XE#2136])
   [804]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
   [805]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-bmg:          [SKIP][806] ([Intel XE#2387]) -> ([SKIP][807], [SKIP][808]) ([Intel XE#2136] / [Intel XE#2387])
   [806]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_psr2_su@page_flip-p010.html
   [807]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
   [808]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          [SKIP][809] ([Intel XE#2387]) -> ([SKIP][810], [SKIP][811]) ([Intel XE#2136])
   [809]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html
   [810]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr2_su@page_flip-xrgb8888.html
   [811]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-pr-cursor-blt:
    - shard-bmg:          [SKIP][812] ([Intel XE#2234] / [Intel XE#2850]) -> ([SKIP][813], [SKIP][814]) ([Intel XE#2136] / [Intel XE#2234] / [Intel XE#2850]) +26 other tests ( 2 skip )
   [812]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html
   [813]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_psr@fbc-pr-cursor-blt.html
   [814]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr@fbc-pr-cursor-blt.html

  * igt@kms_psr@fbc-psr-sprite-plane-onoff:
    - shard-dg2-set2:     [SKIP][815] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][816] ([Intel XE#2136] / [Intel XE#2351])
   [815]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
   [816]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-onoff.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          [SKIP][817] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][818] ([Intel XE#2136]) +15 other tests skip
   [817]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html
   [818]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_psr@psr2-suspend:
    - shard-bmg:          [SKIP][819] ([Intel XE#2234] / [Intel XE#2850]) -> ([SKIP][820], [SKIP][821]) ([Intel XE#2136]) +6 other tests ( 2 skip )
   [819]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_psr@psr2-suspend.html
   [820]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr@psr2-suspend.html
   [821]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr@psr2-suspend.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          [SKIP][822] ([Intel XE#2414]) -> ([SKIP][823], [SKIP][824]) ([Intel XE#2136])
   [822]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [823]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [824]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          [SKIP][825] ([Intel XE#2414]) -> ([SKIP][826], [SKIP][827]) ([Intel XE#2136] / [Intel XE#2414])
   [825]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [826]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [827]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          [SKIP][828] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][829] ([Intel XE#2423])
   [828]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html
   [829]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-bmg:          [SKIP][830] ([Intel XE#3414] / [Intel XE#3904]) -> ([SKIP][831], [SKIP][832]) ([Intel XE#2423] / [Intel XE#3414] / [Intel XE#3904]) +1 other test ( 2 skip )
   [830]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-90.html
   [831]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-90.html
   [832]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-bmg:          [SKIP][833] ([Intel XE#2330]) -> [SKIP][834] ([Intel XE#2423]) +1 other test skip
   [833]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [834]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          [SKIP][835] ([Intel XE#2330]) -> ([SKIP][836], [SKIP][837]) ([Intel XE#2330] / [Intel XE#2423]) +1 other test ( 2 skip )
   [835]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [836]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [837]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][838] ([Intel XE#1127]) -> [SKIP][839] ([Intel XE#2423] / [i915#2575])
   [838]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [839]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-bmg:          [SKIP][840] ([Intel XE#2413]) -> ([SKIP][841], [SKIP][842]) ([Intel XE#2413] / [Intel XE#2423]) +2 other tests ( 2 skip )
   [840]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html
   [841]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-center.html
   [842]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-bmg:          [SKIP][843] ([Intel XE#2413]) -> [SKIP][844] ([Intel XE#2423])
   [843]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
   [844]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          [SKIP][845] ([Intel XE#1435]) -> ([SKIP][846], [SKIP][847]) ([Intel XE#2423])
   [845]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
   [846]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
   [847]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][848] ([Intel XE#2426]) -> ([SKIP][849], [SKIP][850]) ([Intel XE#2423] / [Intel XE#2426]) +1 other test ( 2 skip )
   [848]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
   [849]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
   [850]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
    - shard-dg2-set2:     [SKIP][851] ([Intel XE#362]) -> ([FAIL][852], [SKIP][853]) ([Intel XE#1729] / [Intel XE#362])
   [851]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
   [852]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
   [853]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-bmg:          [SKIP][854] ([Intel XE#2450]) -> ([SKIP][855], [SKIP][856]) ([Intel XE#2423] / [Intel XE#2450])
   [854]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
   [855]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html
   [856]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@flip-dpms:
    - shard-bmg:          [SKIP][857] ([Intel XE#1499]) -> ([SKIP][858], [SKIP][859]) ([Intel XE#1499] / [Intel XE#2423]) +1 other test ( 2 skip )
   [857]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_vrr@flip-dpms.html
   [858]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_vrr@flip-dpms.html
   [859]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][860] ([Intel XE#1499]) -> [SKIP][861] ([Intel XE#2423]) +1 other test skip
   [860]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_vrr@flip-suspend.html
   [861]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          [SKIP][862] ([Intel XE#2168]) -> [SKIP][863] ([Intel XE#2423])
   [862]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_vrr@lobf.html
   [863]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_vrr@lobf.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          [SKIP][864] ([Intel XE#1499]) -> ([SKIP][865], [SKIP][866]) ([Intel XE#2423])
   [864]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_vrr@max-min.html
   [865]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_vrr@max-min.html
   [866]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_vrr@max-min.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-bmg:          [SKIP][867] ([Intel XE#3007]) -> ([SKIP][868], [SKIP][869]) ([Intel XE#1499] / [Intel XE#2423])
   [867]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-virtual.html
   [868]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-virtual.html
   [869]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-bmg:          [SKIP][870] ([Intel XE#756]) -> ([SKIP][871], [SKIP][872]) ([Intel XE#2423] / [Intel XE#756])
   [870]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
   [871]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
   [872]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-bmg:          [SKIP][873] ([Intel XE#756]) -> ([SKIP][874], [SKIP][875]) ([Intel XE#2423])
   [873]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_writeback@writeback-fb-id.html
   [874]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_writeback@writeback-fb-id.html
   [875]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-bmg:          [SKIP][876] ([Intel XE#756]) -> [SKIP][877] ([Intel XE#2423])
   [876]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html
   [877]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-bmg:          [SKIP][878] ([Intel XE#1091] / [Intel XE#2849]) -> ([SKIP][879], [SKIP][880]) ([Intel XE#2423])
   [878]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
   [879]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
   [880]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_eudebug@basic-vm-access-parameters-userptr:
    - shard-bmg:          [SKIP][881] ([Intel XE#3889]) -> [SKIP][882] ([Intel XE#1130])
   [881]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
   [882]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_eudebug@basic-vm-access-parameters-userptr.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          [SKIP][883] ([Intel XE#2905]) -> [SKIP][884] ([Intel XE#1130]) +15 other tests skip
   [883]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
   [884]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
    - shard-bmg:          [SKIP][885] ([Intel XE#3889]) -> ([SKIP][886], [SKIP][887]) ([Intel XE#1130] / [Intel XE#3889])
   [885]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
   [886]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
   [887]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html

  * igt@xe_eudebug_online@basic-breakpoint:
    - shard-dg2-set2:     [SKIP][888] ([Intel XE#2905]) -> [SKIP][889] ([Intel XE#1130])
   [888]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@xe_eudebug_online@basic-breakpoint.html
   [889]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_eudebug_online@basic-breakpoint.html

  * igt@xe_eudebug_online@set-breakpoint:
    - shard-bmg:          [SKIP][890] ([Intel XE#2905]) -> ([SKIP][891], [SKIP][892]) ([Intel XE#1130]) +3 other tests ( 2 skip )
   [890]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_eudebug_online@set-breakpoint.html
   [891]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_eudebug_online@set-breakpoint.html
   [892]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-bmg:          [SKIP][893] ([Intel XE#2905]) -> ([SKIP][894], [SKIP][895]) ([Intel XE#1130] / [Intel XE#2905]) +17 other tests ( 2 skip )
   [893]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_eudebug_online@stopped-thread.html
   [894]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_eudebug_online@stopped-thread.html
   [895]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_exec_balancer@once-parallel-userptr-invalidate:
    - shard-bmg:          [SKIP][896] ([Intel XE#1130]) -> ([SKIP][897], [PASS][898]) ([Intel XE#1130]) +4 other tests ( 1 pass, 1 skip )
   [896]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
   [897]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
   [898]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-bmg:          [SKIP][899] ([Intel XE#2322]) -> ([SKIP][900], [SKIP][901]) ([Intel XE#1130] / [Intel XE#2322]) +15 other tests ( 2 skip )
   [899]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
   [900]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
   [901]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-bmg:          [SKIP][902] ([Intel XE#2322]) -> [SKIP][903] ([Intel XE#1130]) +8 other tests skip
   [902]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
   [903]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-bmg:          [SKIP][904] ([Intel XE#2322]) -> ([SKIP][905], [SKIP][906]) ([Intel XE#1130]) +3 other tests ( 2 skip )
   [904]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_exec_basic@multigpu-once-null-rebind.html
   [905]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html
   [906]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_live_ktest@xe_bo:
    - shard-bmg:          [SKIP][907] ([Intel XE#1192]) -> [SKIP][908] ([Intel XE#2229])
   [907]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@xe_live_ktest@xe_bo.html
   [908]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_live_ktest@xe_bo.html

  * igt@xe_mmap@pci-membarrier:
    - shard-bmg:          [SKIP][909] ([Intel XE#4045]) -> ([SKIP][910], [SKIP][911]) ([Intel XE#1130] / [Intel XE#4045])
   [909]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_mmap@pci-membarrier.html
   [910]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_mmap@pci-membarrier.html
   [911]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_mmap@pci-membarrier.html

  * igt@xe_mmap@pci-membarrier-parallel:
    - shard-bmg:          [SKIP][912] ([Intel XE#4045]) -> [SKIP][913] ([Intel XE#1130])
   [912]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_mmap@pci-membarrier-parallel.html
   [913]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_mmap@pci-membarrier-parallel.html

  * igt@xe_mmap@small-bar:
    - shard-bmg:          [SKIP][914] ([Intel XE#586]) -> ([SKIP][915], [SKIP][916]) ([Intel XE#1130] / [Intel XE#586])
   [914]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@xe_mmap@small-bar.html
   [915]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@xe_mmap@small-bar.html
   [916]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_mmap@small-bar.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-bmg:          [SKIP][917] ([Intel XE#2248]) -> ([SKIP][918], [SKIP][919]) ([Intel XE#1130] / [Intel XE#2248])
   [917]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html
   [918]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html
   [919]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_oa@syncs-syncobj-wait:
    - shard-dg2-set2:     [SKIP][920] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][921] ([Intel XE#1130])
   [920]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@xe_oa@syncs-syncobj-wait.html
   [921]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_oa@syncs-syncobj-wait.html

  * igt@xe_oa@unprivileged-single-ctx-counters:
    - shard-bmg:          [SKIP][922] ([Intel XE#2248]) -> [SKIP][923] ([Intel XE#1130])
   [922]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_oa@unprivileged-single-ctx-counters.html
   [923]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_oa@unprivileged-single-ctx-counters.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-bmg:          [SKIP][924] ([Intel XE#1420]) -> [SKIP][925] ([Intel XE#1130])
   [924]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html
   [925]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          [SKIP][926] ([Intel XE#2245]) -> ([SKIP][927], [SKIP][928]) ([Intel XE#1130] / [Intel XE#2245])
   [926]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@xe_pat@pat-index-xelp.html
   [927]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_pat@pat-index-xelp.html
   [928]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          [SKIP][929] ([Intel XE#2284]) -> ([SKIP][930], [SKIP][931]) ([Intel XE#1130])
   [929]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_pm@d3cold-mocs.html
   [930]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_pm@d3cold-mocs.html
   [931]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-bmg:          [SKIP][932] ([Intel XE#2284]) -> ([SKIP][933], [SKIP][934]) ([Intel XE#1130] / [Intel XE#2284]) +4 other tests ( 2 skip )
   [932]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@xe_pm@s3-d3cold-basic-exec.html
   [933]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_pm@s3-d3cold-basic-exec.html
   [934]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-bmg:          [SKIP][935] ([Intel XE#579]) -> ([SKIP][936], [SKIP][937]) ([Intel XE#1130] / [Intel XE#579])
   [935]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_pm@vram-d3cold-threshold.html
   [936]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html
   [937]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-bmg:          [SKIP][938] ([Intel XE#944]) -> ([SKIP][939], [SKIP][940]) ([Intel XE#1130]) +1 other test ( 2 skip )
   [938]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html
   [939]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html
   [940]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          [SKIP][941] ([Intel XE#944]) -> [SKIP][942] ([Intel XE#1130]) +3 other tests skip
   [941]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [942]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-bmg:          [SKIP][943] ([Intel XE#944]) -> ([SKIP][944], [SKIP][945]) ([Intel XE#1130] / [Intel XE#944]) +3 other tests ( 2 skip )
   [943]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html
   [944]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_query@multigpu-query-mem-usage.html
   [945]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          [SKIP][946] ([Intel XE#3342]) -> [SKIP][947] ([Intel XE#1130])
   [946]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_sriov_flr@flr-each-isolation.html
   [947]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          [SKIP][948] ([Intel XE#3342]) -> ([SKIP][949], [SKIP][950]) ([Intel XE#1130] / [Intel XE#3342])
   [948]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html
   [949]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html
   [950]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html

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

  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
  [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
  [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
  [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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [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#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323
  [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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
  [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
  [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#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
  [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
  [Intel XE#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
  [Intel XE#4072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4072
  [Intel XE#4075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4075
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274


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

  * IGT: IGT_8193 -> IGTPW_12447
  * Linux: xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c -> xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0

  IGTPW_12447: 4593317dedb4854dc0f4d7beed6cf9c68f3adeb8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c
  xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0: 4840e56bcc47f3af6bbc58bcc83b094540e5efa0

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for tests/xe: Add xe_cg_dmem test
  2025-01-15 11:55 [PATCH i-g-t] tests/xe: Add xe_cg_dmem test Maarten Lankhorst
                   ` (2 preceding siblings ...)
  2025-01-16 15:11 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-01-16 15:18 ` Patchwork
  2025-01-17 12:31 ` ✗ i915.CI.Full: " Patchwork
  2025-01-17 18:01 ` [PATCH i-g-t] " Kamil Konieczny
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-01-16 15:18 UTC (permalink / raw)
  To: Maarten Lankhorst; +Cc: igt-dev

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

== Series Details ==

Series: tests/xe: Add xe_cg_dmem test
URL   : https://patchwork.freedesktop.org/series/143593/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12447_full
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
    - shard-bmg:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
    - shard-dg2-set2:     [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html

  * igt@kms_flip@flip-vs-suspend@d-dp4:
    - shard-dg2-set2:     NOTRUN -> ([INCOMPLETE][5], [PASS][6])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1:
    - shard-lnl:          [PASS][7] -> ([INCOMPLETE][8], [PASS][9]) +3 other tests ( 1 incomplete, 1 pass )
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1.html

  * igt@kms_flip_tiling@flip-change-tiling:
    - shard-bmg:          [PASS][10] -> ([SKIP][11], [INCOMPLETE][12]) ([Intel XE#2136])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip_tiling@flip-change-tiling.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_flip_tiling@flip-change-tiling.html

  * {igt@xe_cg_dmem@functional} (NEW):
    - shard-bmg:          NOTRUN -> ([SKIP][13], [SKIP][14])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_cg_dmem@functional.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@xe_cg_dmem@functional.html
    - shard-lnl:          NOTRUN -> ([SKIP][15], [SKIP][16])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@xe_cg_dmem@functional.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@xe_cg_dmem@functional.html

  * {igt@xe_cg_dmem@test-simple-min} (NEW):
    - shard-dg2-set2:     NOTRUN -> [SKIP][17] +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@xe_cg_dmem@test-simple-min.html
    - shard-lnl:          NOTRUN -> [SKIP][18] +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@xe_cg_dmem@test-simple-min.html

  * igt@xe_exec_threads@threads-cm-shared-vm-rebind:
    - shard-bmg:          NOTRUN -> ([FAIL][19], [SKIP][20]) ([Intel XE#1130])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@xe_exec_threads@threads-cm-shared-vm-rebind.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_exec_threads@threads-cm-shared-vm-rebind.html
    - shard-dg2-set2:     NOTRUN -> [FAIL][21]
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_exec_threads@threads-cm-shared-vm-rebind.html

  
#### Warnings ####

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [FAIL][22] ([Intel XE#2882]) -> ([FAIL][23], [SKIP][24]) ([Intel XE#2423])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][25] ([Intel XE#2882]) -> [FAIL][26]
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html

  
New tests
---------

  New tests have been introduced between XEIGT_8193_full and XEIGTPW_12447_full:

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

  * igt@xe_cg_dmem@functional:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@xe_cg_dmem@test-simple-max:
    - Statuses : 3 skip(s)
    - Exec time: [0.0] s

  * igt@xe_cg_dmem@test-simple-min:
    - Statuses : 3 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@hotrebind:
    - shard-bmg:          [PASS][27] -> [SKIP][28] ([Intel XE#1885]) +3 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@core_hotunplug@hotrebind.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@core_hotunplug@hotrebind.html

  * igt@core_hotunplug@hotrebind-lateclose:
    - shard-bmg:          [PASS][29] -> ([SKIP][30], [SKIP][31]) ([Intel XE#1885])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@core_hotunplug@hotrebind-lateclose.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@core_hotunplug@hotrebind-lateclose.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@core_hotunplug@hotrebind-lateclose.html

  * igt@core_hotunplug@hotreplug:
    - shard-bmg:          [PASS][32] -> ([PASS][33], [SKIP][34]) ([Intel XE#1885])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@core_hotunplug@hotreplug.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@core_hotunplug@hotreplug.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@core_hotunplug@hotreplug.html

  * igt@core_setmaster@master-drop-set-user:
    - shard-bmg:          [PASS][35] -> ([FAIL][36], [PASS][37]) ([Intel XE#3249]) +2 other tests ( 1 fail, 1 pass )
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@core_setmaster@master-drop-set-user.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@core_setmaster@master-drop-set-user.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@core_setmaster@master-drop-set-user.html

  * igt@fbdev@eof:
    - shard-bmg:          [PASS][38] -> ([SKIP][39], [PASS][40]) ([Intel XE#2134]) +2 other tests ( 1 pass, 1 skip )
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@fbdev@eof.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@fbdev@eof.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@fbdev@eof.html

  * igt@kms_addfb_basic@bad-pitch-63:
    - shard-bmg:          NOTRUN -> ([PASS][41], [SKIP][42]) ([Intel XE#2423]) +1 other test ( 1 pass, 1 skip )
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_addfb_basic@bad-pitch-63.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-63.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#873])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-lnl:          NOTRUN -> ([SKIP][44], [SKIP][45]) ([Intel XE#1407])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [PASS][46] -> ([PASS][47], [SKIP][48]) ([Intel XE#2136]) +28 other tests ( 1 pass, 1 skip )
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-bmg:          [PASS][49] -> ([SKIP][50], [SKIP][51]) ([Intel XE#2136]) +8 other tests ( 2 skip )
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-180:
    - shard-bmg:          [PASS][52] -> [SKIP][53] ([Intel XE#2136]) +24 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-180.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [PASS][54] -> [SKIP][55] ([Intel XE#2136]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> ([SKIP][56], [SKIP][57]) ([Intel XE#2136] / [Intel XE#2327])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#316]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-lnl:          NOTRUN -> ([SKIP][59], [SKIP][60]) ([Intel XE#1124]) +1 other test ( 2 skip )
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-lnl:          NOTRUN -> ([SKIP][61], [SKIP][62]) ([Intel XE#1467])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb.html

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

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

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#1124]) +2 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#619])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][67], [SKIP][68]) ([Intel XE#1124]) +1 other test ( 2 skip )
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#367]) +5 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][70], [SKIP][71]) ([Intel XE#367]) +1 other test ( 2 skip )
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#2191]) +2 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> ([SKIP][73], [SKIP][74]) ([Intel XE#2423] / [Intel XE#367])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][75] ([Intel XE#455] / [Intel XE#787]) +44 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#2907]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> ([SKIP][77], [SKIP][78]) ([Intel XE#2136] / [Intel XE#2887])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][79] ([Intel XE#2136]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-bmg:          NOTRUN -> ([SKIP][80], [PASS][81]) ([Intel XE#2136])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#2887]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          NOTRUN -> ([SKIP][83], [SKIP][84]) ([Intel XE#2136]) +1 other test ( 2 skip )
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][85] ([Intel XE#787]) +195 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][86], [SKIP][87]) ([Intel XE#787]) +27 other tests ( 2 skip )
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][89], [SKIP][90]) ([Intel XE#455] / [Intel XE#787]) +7 other tests ( 2 skip )
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#2887])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [PASS][92] -> ([PASS][93], [INCOMPLETE][94]) ([Intel XE#1727] / [Intel XE#3124])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
    - shard-dg2-set2:     [PASS][95] -> ([PASS][96], [INCOMPLETE][97]) ([Intel XE#3124])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [PASS][98] -> ([PASS][99], [DMESG-WARN][100]) ([Intel XE#1727] / [Intel XE#3113])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][101], [SKIP][102]) ([Intel XE#306])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_chamelium_color@ctm-0-50.html

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

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][104] ([Intel XE#373]) +10 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#373]) +3 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html

  * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][106], [SKIP][107]) ([Intel XE#373])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html

  * igt@kms_content_protection@atomic@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][108] ([Intel XE#1178]) +1 other test fail
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_content_protection@atomic@pipe-a-dp-2.html

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

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

  * igt@kms_content_protection@uevent@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][111] ([Intel XE#1188])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-random-32x10:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][112], [SKIP][113]) ([Intel XE#455]) +3 other tests ( 2 skip )
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_cursor_crc@cursor-random-32x10.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_cursor_crc@cursor-random-32x10.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-lnl:          NOTRUN -> ([SKIP][114], [SKIP][115]) ([Intel XE#2321])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_cursor_crc@cursor-random-512x170.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-bmg:          NOTRUN -> ([SKIP][116], [SKIP][117]) ([Intel XE#2320] / [Intel XE#2423])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-max-size.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-lnl:          NOTRUN -> ([SKIP][118], [SKIP][119]) ([Intel XE#309])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
    - shard-bmg:          [PASS][120] -> ([SKIP][121], [PASS][122]) ([Intel XE#2291])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][123] -> [SKIP][124] ([Intel XE#2291])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#309]) +2 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-bmg:          [PASS][126] -> ([SKIP][127], [SKIP][128]) ([Intel XE#2291] / [Intel XE#2423])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#1508])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [PASS][130] -> ([SKIP][131], [SKIP][132]) ([Intel XE#1340] / [Intel XE#2423])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          NOTRUN -> ([SKIP][133], [SKIP][134]) ([Intel XE#2372])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_feature_discovery@chamelium.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_feature_discovery@chamelium.html
    - shard-dg2-set2:     NOTRUN -> ([SKIP][135], [SKIP][136]) ([Intel XE#701])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_feature_discovery@chamelium.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     NOTRUN -> [SKIP][137] ([Intel XE#1138])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][138], [SKIP][139]) ([Intel XE#1135])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_feature_discovery@psr2.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-bmg:          [PASS][140] -> ([SKIP][141], [SKIP][142]) ([Intel XE#2316] / [Intel XE#2423])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][143] ([Intel XE#1421]) +1 other test skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
    - shard-bmg:          [PASS][144] -> ([SKIP][145], [PASS][146]) ([Intel XE#2316])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][147] -> ([PASS][148], [FAIL][149]) ([Intel XE#301])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
    - shard-bmg:          [PASS][150] -> [FAIL][151] ([Intel XE#3321])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-dg2-set2:     NOTRUN -> ([ABORT][152], [PASS][153]) ([Intel XE#2625])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a2-dp2:
    - shard-dg2-set2:     NOTRUN -> [ABORT][154] ([Intel XE#2625])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a2-dp2.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [PASS][155] -> [SKIP][156] ([Intel XE#2423]) +107 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [PASS][157] -> [SKIP][158] ([Intel XE#2316]) +1 other test skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-plain-flip.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-lnl:          NOTRUN -> ([SKIP][159], [SKIP][160]) ([Intel XE#1421])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank:
    - shard-bmg:          [PASS][161] -> ([SKIP][162], [FAIL][163]) ([Intel XE#2423] / [Intel XE#2882])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@flip-vs-blocking-wf-vblank.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@c-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][164] ([Intel XE#2882]) +1 other test fail
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_flip@flip-vs-blocking-wf-vblank@c-dp2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4:
    - shard-dg2-set2:     [PASS][165] -> [FAIL][166] ([Intel XE#301]) +8 other tests fail
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][167] ([Intel XE#301])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-expired-vblank@c-dp4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][168] ([Intel XE#301] / [Intel XE#3321])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-dg2-set2:     NOTRUN -> ([PASS][169], [INCOMPLETE][170]) ([Intel XE#2597])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [PASS][171] -> [INCOMPLETE][172] ([Intel XE#2597])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@nonexisting-fb:
    - shard-dg2-set2:     [PASS][173] -> [SKIP][174] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip@nonexisting-fb.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_flip@nonexisting-fb.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-lnl:          NOTRUN -> ([SKIP][175], [SKIP][176]) ([Intel XE#1401] / [Intel XE#1745])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> ([SKIP][177], [SKIP][178]) ([Intel XE#1401])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][179] ([Intel XE#455]) +12 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][181] ([Intel XE#1401])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> ([SKIP][182], [SKIP][183]) ([Intel XE#1397] / [Intel XE#1745])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> ([SKIP][184], [SKIP][185]) ([Intel XE#1397])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-dg2-set2:     NOTRUN -> [SKIP][186] ([i915#5274])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][187] ([Intel XE#651]) +30 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][188], [SKIP][189]) ([Intel XE#651]) +8 other tests ( 2 skip )
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> ([FAIL][190], [FAIL][191]) ([Intel XE#2333])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][192] ([Intel XE#656]) +6 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> ([SKIP][193], [SKIP][194]) ([Intel XE#651]) +2 other tests ( 2 skip )
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> ([SKIP][195], [SKIP][196]) ([Intel XE#2136] / [Intel XE#2313])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
    - shard-lnl:          NOTRUN -> ([SKIP][197], [SKIP][198]) ([Intel XE#656]) +5 other tests ( 2 skip )
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][199] ([Intel XE#2312])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][200] ([Intel XE#653]) +31 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][201] ([Intel XE#2313])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][202], [SKIP][203]) ([Intel XE#653]) +4 other tests ( 2 skip )
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][204] ([Intel XE#2050])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_hdr@bpc-switch:
    - shard-bmg:          NOTRUN -> [SKIP][205] ([Intel XE#2423]) +4 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][206] ([Intel XE#1503])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][207] ([Intel XE#346])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][208] ([Intel XE#616]) +3 other tests fail
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
    - shard-bmg:          [PASS][209] -> ([SKIP][210], [PASS][211]) ([Intel XE#2423]) +141 other tests ( 1 pass, 1 skip )
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][212] ([Intel XE#877])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
    - shard-dg2-set2:     NOTRUN -> [SKIP][213] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
    - shard-dg2-set2:     NOTRUN -> [SKIP][214] ([Intel XE#2763]) +5 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
    - shard-bmg:          [PASS][215] -> ([SKIP][216], [SKIP][217]) ([Intel XE#2423]) +33 other tests ( 2 skip )
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
    - shard-dg2-set2:     NOTRUN -> [SKIP][218] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     NOTRUN -> [SKIP][219] ([Intel XE#870]) +1 other test skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          NOTRUN -> ([SKIP][220], [SKIP][221]) ([Intel XE#870])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_pm_backlight@fade.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [PASS][222] -> ([FAIL][223], [FAIL][224]) ([Intel XE#718])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][225], [SKIP][226]) ([Intel XE#1129])
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@basic-rte:
    - shard-bmg:          [PASS][227] -> [SKIP][228] ([Intel XE#2446]) +4 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_pm_rpm@basic-rte.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_rpm@basic-rte.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          [PASS][229] -> ([PASS][230], [SKIP][231]) ([Intel XE#2446]) +2 other tests ( 1 pass, 1 skip )
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_pm_rpm@i2c.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_pm_rpm@i2c.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@legacy-planes-dpms:
    - shard-bmg:          [PASS][232] -> ([SKIP][233], [SKIP][234]) ([Intel XE#2446])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_pm_rpm@legacy-planes-dpms.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_rpm@legacy-planes-dpms.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-dg2-set2:     [PASS][235] -> [SKIP][236] ([Intel XE#2446])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt@kms_pm_rpm@universal-planes-dpms.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][237] ([Intel XE#2893])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][238] ([Intel XE#1489])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][239] ([Intel XE#1489]) +9 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-bmg:          NOTRUN -> ([SKIP][240], [SKIP][241]) ([Intel XE#1489] / [Intel XE#2136])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][242], [SKIP][243]) ([Intel XE#1489]) +2 other tests ( 2 skip )
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> ([SKIP][244], [SKIP][245]) ([Intel XE#2893]) +1 other test ( 2 skip )
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2-set2:     NOTRUN -> [SKIP][246] ([Intel XE#1122])
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-sprite-plane-move:
    - shard-bmg:          NOTRUN -> [SKIP][247] ([Intel XE#2234] / [Intel XE#2850])
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_psr@fbc-pr-sprite-plane-move.html

  * igt@kms_psr@pr-dpms:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][248], [SKIP][249]) ([Intel XE#2850] / [Intel XE#929])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_psr@pr-dpms.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_psr@pr-dpms.html

  * igt@kms_psr@psr-basic:
    - shard-bmg:          NOTRUN -> [SKIP][250] ([Intel XE#2136]) +3 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr@psr-basic.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][251] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_psr@psr-dpms.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][252] ([Intel XE#3414]) +2 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][253] ([Intel XE#1127])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][254], [SKIP][255]) ([Intel XE#1500] / [Intel XE#362])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-lnl:          [PASS][256] -> [FAIL][257] ([Intel XE#899])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][258] -> [FAIL][259] ([Intel XE#2159]) +1 other test fail
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@lobf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][260] ([Intel XE#2168])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_vrr@lobf.html

  * {igt@xe_cg_dmem@test-simple-max} (NEW):
    - shard-bmg:          NOTRUN -> ([SKIP][261], [SKIP][262]) ([Intel XE#1130]) +1 other test ( 2 skip )
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_cg_dmem@test-simple-max.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_cg_dmem@test-simple-max.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     NOTRUN -> [SKIP][263] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-dg2-set2:     NOTRUN -> [SKIP][264] ([Intel XE#1126])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_eudebug@basic-vm-access-parameters:
    - shard-dg2-set2:     NOTRUN -> [SKIP][265] ([Intel XE#1130]) +1 other test skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters.html

  * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
    - shard-lnl:          NOTRUN -> ([SKIP][266], [SKIP][267]) ([Intel XE#3889])
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html

  * igt@xe_eudebug@discovery-race-vmbind:
    - shard-bmg:          NOTRUN -> [SKIP][268] ([Intel XE#2905]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_eudebug@discovery-race-vmbind.html

  * igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][269], [SKIP][270]) ([Intel XE#2905]) +1 other test ( 2 skip )
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html

  * igt@xe_eudebug_online@interrupt-other-debuggable:
    - shard-dg2-set2:     NOTRUN -> [SKIP][271] ([Intel XE#2905]) +10 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_eudebug_online@interrupt-other-debuggable.html

  * igt@xe_eudebug_online@single-step:
    - shard-bmg:          NOTRUN -> ([SKIP][272], [SKIP][273]) ([Intel XE#1130] / [Intel XE#2905])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_eudebug_online@single-step.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_eudebug_online@single-step.html

  * igt@xe_evict@evict-large-multi-vm:
    - shard-lnl:          NOTRUN -> ([SKIP][274], [SKIP][275]) ([Intel XE#688])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@xe_evict@evict-large-multi-vm.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@xe_evict@evict-large-multi-vm.html

  * igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][276] ([Intel XE#1130]) +3 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> ([SKIP][277], [SKIP][278]) ([Intel XE#1392])
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][279] ([Intel XE#2322])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
    - shard-dg2-set2:     [PASS][280] -> ([SKIP][281], [PASS][282]) ([Intel XE#1392]) +3 other tests ( 1 pass, 1 skip )
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-null:
    - shard-dg2-set2:     [PASS][283] -> [SKIP][284] ([Intel XE#1392]) +1 other test skip
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@xe_exec_basic@multigpu-once-null.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html
    - shard-lnl:          NOTRUN -> [SKIP][285] ([Intel XE#1392]) +2 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@xe_exec_basic@multigpu-once-null.html

  * igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
    - shard-bmg:          [PASS][286] -> ([SKIP][287], [SKIP][288]) ([Intel XE#1130]) +85 other tests ( 2 skip )
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     NOTRUN -> ([SKIP][289], [SKIP][290]) ([Intel XE#288]) +4 other tests ( 2 skip )
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][291] ([Intel XE#288]) +27 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_reset@parallel-cat-error:
    - shard-dg2-set2:     [PASS][292] -> [SKIP][293] ([Intel XE#1130]) +7 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@xe_exec_reset@parallel-cat-error.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_exec_reset@parallel-cat-error.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip:
    - shard-lnl:          NOTRUN -> [SKIP][294] ([Intel XE#2905])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@xe_exec_sip_eudebug@breakpoint-writesip.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip-twice:
    - shard-lnl:          NOTRUN -> ([SKIP][295], [SKIP][296]) ([Intel XE#2905]) +2 other tests ( 2 skip )
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-bmg:          [PASS][297] -> ([PASS][298], [SKIP][299]) ([Intel XE#1130]) +323 other tests ( 1 pass, 1 skip )
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_gt_freq@freq_suspend:
    - shard-dg2-set2:     [PASS][300] -> ([PASS][301], [ABORT][302]) ([Intel XE#2625])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt@xe_gt_freq@freq_suspend.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_gt_freq@freq_suspend.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][303] ([Intel XE#2229]) +1 other test skip
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_dma_buf:
    - shard-bmg:          [PASS][304] -> ([SKIP][305], [PASS][306]) ([Intel XE#1192])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@xe_live_ktest@xe_dma_buf.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-bmg:          [PASS][307] -> ([PASS][308], [SKIP][309]) ([Intel XE#2229])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_live_ktest@xe_mocs:
    - shard-bmg:          [PASS][310] -> ([FAIL][311], [SKIP][312]) ([Intel XE#1192] / [Intel XE#1999])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_live_ktest@xe_mocs.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_live_ktest@xe_mocs.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_live_ktest@xe_mocs.html

  * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
    - shard-bmg:          [PASS][313] -> [FAIL][314] ([Intel XE#1999]) +1 other test fail
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html

  * igt@xe_media_fill@media-fill:
    - shard-dg2-set2:     NOTRUN -> [SKIP][315] ([Intel XE#560])
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@xe_media_fill@media-fill.html

  * igt@xe_mmap@pci-membarrier-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][316] ([Intel XE#4045])
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@xe_mmap@pci-membarrier-parallel.html

  * igt@xe_module_load@many-reload:
    - shard-bmg:          [PASS][317] -> ([FAIL][318], [PASS][319]) ([Intel XE#3546])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_module_load@many-reload.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_module_load@many-reload.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_module_load@many-reload.html

  * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
    - shard-dg2-set2:     NOTRUN -> [SKIP][320] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html

  * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> ([FAIL][321], [FAIL][322]) ([Intel XE#1173]) +1 other test ( 2 fail )
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     NOTRUN -> [SKIP][323] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@s2idle-basic:
    - shard-dg2-set2:     [PASS][324] -> [ABORT][325] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@xe_pm@s2idle-basic.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm@s3-exec-after:
    - shard-dg2-set2:     [PASS][326] -> ([PASS][327], [ABORT][328]) ([Intel XE#1358])
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@xe_pm@s3-exec-after.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt@xe_pm@s3-exec-after.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt@xe_pm@s3-exec-after.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> ([SKIP][329], [SKIP][330]) ([Intel XE#2284] / [Intel XE#366])
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@xe_pm@s4-d3cold-basic-exec.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - shard-lnl:          [PASS][331] -> [ABORT][332] ([Intel XE#1358] / [Intel XE#1794])
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-lnl:          [PASS][333] -> ([PASS][334], [FAIL][335]) ([Intel XE#958])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html

  * igt@xe_query@multigpu-query-invalid-size:
    - shard-lnl:          NOTRUN -> [SKIP][336] ([Intel XE#944])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@xe_query@multigpu-query-invalid-size.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-dg2-set2:     NOTRUN -> [SKIP][337] ([Intel XE#944])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-bmg:          NOTRUN -> ([SKIP][338], [SKIP][339]) ([Intel XE#1130] / [Intel XE#944])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_query@multigpu-query-uc-fw-version-huc.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_query@query-gt-list:
    - shard-bmg:          [PASS][340] -> [SKIP][341] ([Intel XE#1130]) +222 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@xe_query@query-gt-list.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_query@query-gt-list.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-dg2-set2:     NOTRUN -> [SKIP][342] ([Intel XE#3342])
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_vm@munmap-style-unbind-end:
    - shard-bmg:          NOTRUN -> ([SKIP][343], [PASS][344]) ([Intel XE#1130]) +4 other tests ( 1 pass, 1 skip )
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_vm@munmap-style-unbind-end.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_vm@munmap-style-unbind-end.html

  
#### Possible fixes ####

  * igt@core_getversion@basic:
    - shard-bmg:          [FAIL][345] -> [PASS][346]
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@core_getversion@basic.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt@core_getversion@basic.html

  * igt@fbdev@pan:
    - shard-bmg:          [SKIP][347] ([Intel XE#2134]) -> ([PASS][348], [PASS][349])
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@fbdev@pan.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@fbdev@pan.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@fbdev@pan.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
    - shard-bmg:          [FAIL][350] ([Intel XE#827]) -> [PASS][351]
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
    - shard-lnl:          [FAIL][352] ([Intel XE#3719]) -> [PASS][353] +3 other tests pass
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][354] ([Intel XE#3862]) -> ([PASS][355], [PASS][356]) +1 other test ( 2 pass )
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1:
    - shard-lnl:          [FAIL][357] ([Intel XE#4075]) -> [PASS][358] +1 other test pass
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-bmg:          [SKIP][359] ([Intel XE#2291]) -> [PASS][360] +1 other test pass
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][361] ([Intel XE#2291]) -> ([PASS][362], [PASS][363]) +2 other tests ( 2 pass )
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-lnl:          [FAIL][364] ([Intel XE#1475]) -> [PASS][365]
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4:
    - shard-dg2-set2:     [FAIL][366] ([Intel XE#301]) -> ([PASS][367], [PASS][368])
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-bmg:          [SKIP][369] ([Intel XE#2316]) -> [PASS][370] +1 other test pass
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [SKIP][371] ([Intel XE#2316]) -> ([PASS][372], [PASS][373]) +1 other test ( 2 pass )
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@dpms-vs-vblank-race:
    - shard-dg2-set2:     [INCOMPLETE][374] ([Intel XE#2049]) -> [PASS][375]
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_flip@dpms-vs-vblank-race.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@dpms-vs-vblank-race.html

  * igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a6:
    - shard-dg2-set2:     [INCOMPLETE][376] -> [PASS][377]
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a6.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a6.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-lnl:          [FAIL][378] ([Intel XE#886]) -> ([PASS][379], [PASS][380]) +1 other test ( 2 pass )
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a6:
    - shard-dg2-set2:     [FAIL][381] ([Intel XE#4072]) -> [PASS][382]
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a6.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a6.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a6:
    - shard-dg2-set2:     [FAIL][383] ([Intel XE#886]) -> [PASS][384] +1 other test pass
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a6.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [FAIL][385] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][386]
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3:
    - shard-bmg:          [FAIL][387] ([Intel XE#3820]) -> [PASS][388] +1 other test pass
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [SKIP][389] ([Intel XE#2571]) -> ([PASS][390], [PASS][391])
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-lnl:          [FAIL][392] ([Intel XE#899]) -> [PASS][393] +1 other test pass
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue:
    - shard-dg2-set2:     [SKIP][394] ([Intel XE#1392]) -> [PASS][395] +2 other tests pass
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt@xe_exec_basic@multigpu-once-bindexecqueue.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-dg2-set2:     [ABORT][396] ([Intel XE#1358]) -> [PASS][397]
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt@xe_pm@s2idle-basic-exec.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s4-basic-exec:
    - shard-lnl:          [ABORT][398] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> ([PASS][399], [PASS][400])
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt@xe_pm@s4-basic-exec.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-lnl:          [ABORT][401] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][402]
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_vm@bind-once:
    - shard-bmg:          [SKIP][403] ([Intel XE#1130]) -> [PASS][404] +1 other test pass
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_vm@bind-once.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_vm@bind-once.html

  * igt@xe_vm@mixed-userptr-misaligned-binds-1611661312:
    - shard-bmg:          [SKIP][405] ([Intel XE#1130]) -> ([PASS][406], [PASS][407]) +1 other test ( 2 pass )
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_vm@mixed-userptr-misaligned-binds-1611661312.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_vm@mixed-userptr-misaligned-binds-1611661312.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@xe_vm@mixed-userptr-misaligned-binds-1611661312.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          [SKIP][408] ([Intel XE#2233]) -> ([SKIP][409], [SKIP][410]) ([Intel XE#2233] / [Intel XE#2423])
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@bad-pitch-999:
    - shard-bmg:          [SKIP][411] ([Intel XE#3007]) -> ([SKIP][412], [SKIP][413]) ([Intel XE#2423])
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_addfb_basic@bad-pitch-999.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_addfb_basic@bad-pitch-999.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-999.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-bmg:          [FAIL][414] ([Intel XE#827]) -> ([SKIP][415], [PASS][416]) ([Intel XE#2423])
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
    - shard-dg2-set2:     [SKIP][417] ([Intel XE#2550]) -> ([SKIP][418], [SKIP][419]) ([Intel XE#2550] / [Intel XE#3767]) +23 other tests ( 2 skip )
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html

  * igt@kms_async_flips@invalid-async-flip-atomic:
    - shard-bmg:          [SKIP][420] ([Intel XE#3768]) -> ([SKIP][421], [SKIP][422]) ([Intel XE#2423] / [Intel XE#3768])
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_async_flips@invalid-async-flip-atomic.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_async_flips@invalid-async-flip-atomic.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_async_flips@invalid-async-flip-atomic.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          [SKIP][423] ([Intel XE#2370]) -> ([SKIP][424], [SKIP][425]) ([Intel XE#2423])
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - shard-bmg:          [SKIP][426] ([Intel XE#2327]) -> ([SKIP][427], [SKIP][428]) ([Intel XE#2136] / [Intel XE#2327]) +4 other tests ( 2 skip )
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-bmg:          [SKIP][429] ([Intel XE#2327]) -> ([SKIP][430], [SKIP][431]) ([Intel XE#2136])
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-bmg:          [SKIP][432] ([Intel XE#2327]) -> [SKIP][433] ([Intel XE#2136]) +2 other tests skip
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
    - shard-bmg:          [SKIP][434] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][435], [SKIP][436]) ([Intel XE#1124])
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][437] ([Intel XE#607]) -> ([SKIP][438], [SKIP][439]) ([Intel XE#2136] / [Intel XE#607])
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][440] ([Intel XE#610]) -> [SKIP][441] ([Intel XE#2136])
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          [SKIP][442] ([Intel XE#1124]) -> [SKIP][443] ([Intel XE#2136]) +13 other tests skip
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [SKIP][444] ([Intel XE#1124]) -> ([SKIP][445], [SKIP][446]) ([Intel XE#2136]) +3 other tests ( 2 skip )
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          [SKIP][447] ([Intel XE#1124]) -> ([SKIP][448], [SKIP][449]) ([Intel XE#1124] / [Intel XE#2136]) +19 other tests ( 2 skip )
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          [SKIP][450] ([Intel XE#2328]) -> ([SKIP][451], [SKIP][452]) ([Intel XE#2136]) +1 other test ( 2 skip )
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][453] ([Intel XE#610]) -> ([SKIP][454], [SKIP][455]) ([Intel XE#2136] / [Intel XE#610])
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          [SKIP][456] ([Intel XE#2314] / [Intel XE#2894]) -> ([SKIP][457], [SKIP][458]) ([Intel XE#2314] / [Intel XE#2423] / [Intel XE#2894])
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-bmg:          [SKIP][459] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][460] ([Intel XE#2423])
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          [SKIP][461] ([Intel XE#367]) -> [SKIP][462] ([Intel XE#2423]) +3 other tests skip
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - shard-bmg:          [SKIP][463] ([Intel XE#367]) -> ([SKIP][464], [SKIP][465]) ([Intel XE#2423] / [Intel XE#367]) +5 other tests ( 2 skip )
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
    - shard-bmg:          [SKIP][466] ([Intel XE#2887]) -> ([SKIP][467], [SKIP][468]) ([Intel XE#2136]) +7 other tests ( 2 skip )
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][469] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][470], [SKIP][471]) ([Intel XE#2887])
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html

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

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][474] ([Intel XE#2652] / [Intel XE#787]) -> ([SKIP][475], [SKIP][476]) ([Intel XE#2136])
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][477] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][478] ([Intel XE#2136])
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][479] ([Intel XE#3432]) -> [SKIP][480] ([Intel XE#2136]) +2 other tests skip
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][481] ([Intel XE#3432]) -> ([SKIP][482], [SKIP][483]) ([Intel XE#2136])
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-bmg:          [SKIP][484] ([Intel XE#3432]) -> ([SKIP][485], [SKIP][486]) ([Intel XE#2136] / [Intel XE#3432]) +2 other tests ( 2 skip )
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          [SKIP][487] ([Intel XE#2887]) -> ([SKIP][488], [SKIP][489]) ([Intel XE#2136] / [Intel XE#2887]) +23 other tests ( 2 skip )
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][490] ([Intel XE#2652] / [Intel XE#787]) -> ([SKIP][491], [SKIP][492]) ([Intel XE#2136] / [Intel XE#2652] / [Intel XE#787]) +1 other test ( 2 skip )
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          [SKIP][493] ([Intel XE#2724]) -> ([SKIP][494], [SKIP][495]) ([Intel XE#2136])
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_cdclk@mode-transition.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cdclk@mode-transition.html
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          [SKIP][496] ([Intel XE#2724]) -> ([SKIP][497], [SKIP][498]) ([Intel XE#2136] / [Intel XE#2724]) +1 other test ( 2 skip )
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-bmg:          [SKIP][499] ([Intel XE#2325]) -> ([SKIP][500], [SKIP][501]) ([Intel XE#2325] / [Intel XE#2423]) +2 other tests ( 2 skip )
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_chamelium_color@ctm-0-50.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-bmg:          [SKIP][502] ([Intel XE#2325]) -> [SKIP][503] ([Intel XE#2423]) +4 other tests skip
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_chamelium_color@ctm-blue-to-red.html
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-bmg:          [SKIP][504] ([Intel XE#3007]) -> ([SKIP][505], [SKIP][506]) ([Intel XE#2325] / [Intel XE#2423])
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_chamelium_color@ctm-green-to-red.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-dg2-set2:     [SKIP][507] ([Intel XE#306]) -> [SKIP][508] ([Intel XE#2423] / [i915#2575])
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_chamelium_color@ctm-max.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-bmg:          [SKIP][509] ([Intel XE#2252]) -> ([SKIP][510], [SKIP][511]) ([Intel XE#2252] / [Intel XE#2423]) +16 other tests ( 2 skip )
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
    - shard-dg2-set2:     [SKIP][512] ([Intel XE#373]) -> [SKIP][513] ([Intel XE#2423] / [i915#2575])
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          [SKIP][514] ([Intel XE#2252]) -> [SKIP][515] ([Intel XE#2423]) +10 other tests skip
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
    - shard-bmg:          [SKIP][516] ([Intel XE#3007]) -> ([SKIP][517], [SKIP][518]) ([Intel XE#2252] / [Intel XE#2423])
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-bmg:          [SKIP][519] ([Intel XE#2252]) -> ([SKIP][520], [SKIP][521]) ([Intel XE#2423]) +3 other tests ( 2 skip )
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [FAIL][522] ([Intel XE#1178]) -> ([SKIP][523], [SKIP][524]) ([Intel XE#2341] / [Intel XE#2423])
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_content_protection@atomic.html
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_content_protection@atomic.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          [SKIP][525] ([Intel XE#2341]) -> ([SKIP][526], [SKIP][527]) ([Intel XE#2423])
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_content_protection@content-type-change.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_content_protection@content-type-change.html
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-bmg:          [SKIP][528] ([Intel XE#2390]) -> ([SKIP][529], [SKIP][530]) ([Intel XE#2390] / [Intel XE#2423])
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0.html
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][531] ([Intel XE#1178]) -> [SKIP][532] ([Intel XE#2423])
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_content_protection@legacy.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [FAIL][533] ([Intel XE#1178]) -> ([FAIL][534], [SKIP][535]) ([Intel XE#1178] / [Intel XE#2423])
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_content_protection@lic-type-0.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_content_protection@lic-type-0.html
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-1:
    - shard-bmg:          [SKIP][536] ([Intel XE#2341]) -> [SKIP][537] ([Intel XE#2423])
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_content_protection@lic-type-1.html
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@mei-interface:
    - shard-bmg:          [SKIP][538] ([Intel XE#2341]) -> ([SKIP][539], [SKIP][540]) ([Intel XE#2341] / [Intel XE#2423])
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_content_protection@mei-interface.html
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_content_protection@mei-interface.html
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][541] ([Intel XE#1188]) -> ([SKIP][542], [SKIP][543]) ([Intel XE#2423])
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_content_protection@uevent.html
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_content_protection@uevent.html
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-bmg:          [SKIP][544] ([Intel XE#2320]) -> ([SKIP][545], [SKIP][546]) ([Intel XE#2423]) +2 other tests ( 2 skip )
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-bmg:          [SKIP][547] ([Intel XE#2320]) -> ([SKIP][548], [SKIP][549]) ([Intel XE#2320] / [Intel XE#2423]) +6 other tests ( 2 skip )
   [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          [SKIP][550] ([Intel XE#2321]) -> ([SKIP][551], [SKIP][552]) ([Intel XE#2321] / [Intel XE#2423]) +1 other test ( 2 skip )
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x170.html
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x170.html
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-bmg:          [SKIP][553] ([Intel XE#2321]) -> ([SKIP][554], [SKIP][555]) ([Intel XE#2423])
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x512.html
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x512.html
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-bmg:          [SKIP][556] ([Intel XE#2320]) -> [SKIP][557] ([Intel XE#2423]) +7 other tests skip
   [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-bmg:          [SKIP][558] ([Intel XE#2321]) -> [SKIP][559] ([Intel XE#2423])
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-bmg:          [SKIP][560] ([Intel XE#2291]) -> ([SKIP][561], [SKIP][562]) ([Intel XE#2423])
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-bmg:          [SKIP][563] ([Intel XE#2291]) -> [SKIP][564] ([Intel XE#2423]) +1 other test skip
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-bmg:          [DMESG-WARN][565] ([Intel XE#877]) -> ([DMESG-WARN][566], [SKIP][567]) ([Intel XE#2423] / [Intel XE#877])
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][568] ([Intel XE#2286]) -> [SKIP][569] ([Intel XE#2423])
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          [FAIL][570] ([Intel XE#2141]) -> ([FAIL][571], [SKIP][572]) ([Intel XE#2136] / [Intel XE#2141])
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][573] ([Intel XE#1508]) -> [SKIP][574] ([Intel XE#2136])
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][575] ([Intel XE#2425]) -> ([SKIP][576], [PASS][577]) ([Intel XE#2423])
   [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
   [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
   [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-bmg:          [SKIP][578] ([Intel XE#2323]) -> [SKIP][579] ([Intel XE#2423])
   [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_display_modes@mst-extended-mode-negative.html
   [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_display_modes@mst-extended-mode-negative.html
    - shard-dg2-set2:     [SKIP][580] ([Intel XE#307]) -> [SKIP][581] ([Intel XE#2423] / [i915#2575])
   [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt@kms_display_modes@mst-extended-mode-negative.html
   [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-bmg:          [SKIP][582] ([Intel XE#2244]) -> [SKIP][583] ([Intel XE#2136]) +1 other test skip
   [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
   [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          [SKIP][584] ([Intel XE#2244]) -> ([SKIP][585], [SKIP][586]) ([Intel XE#2136] / [Intel XE#2244]) +2 other tests ( 2 skip )
   [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html
   [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
   [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-bmg:          [SKIP][587] ([Intel XE#2244]) -> ([SKIP][588], [SKIP][589]) ([Intel XE#2136])
   [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          [SKIP][590] ([Intel XE#776]) -> ([SKIP][591], [SKIP][592]) ([Intel XE#2136] / [Intel XE#776]) +1 other test ( 2 skip )
   [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_fbcon_fbt@psr-suspend.html
   [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_fbcon_fbt@psr-suspend.html
   [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-bmg:          [SKIP][593] ([Intel XE#2375]) -> ([SKIP][594], [SKIP][595]) ([Intel XE#2375] / [Intel XE#2423])
   [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_feature_discovery@dp-mst.html
   [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html
   [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          [SKIP][596] ([Intel XE#2374]) -> ([SKIP][597], [SKIP][598]) ([Intel XE#2374] / [Intel XE#2423])
   [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_feature_discovery@psr2.html
   [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_feature_discovery@psr2.html
   [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [FAIL][599] ([Intel XE#2882]) -> ([SKIP][600], [FAIL][601]) ([Intel XE#2423] / [Intel XE#2882])
   [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-dg2-set2:     [FAIL][602] ([Intel XE#301]) -> ([FAIL][603], [PASS][604]) ([Intel XE#301])
   [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [FAIL][605] ([Intel XE#2882] / [Intel XE#3820]) -> [SKIP][606] ([Intel XE#2316])
   [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-bmg:          [SKIP][607] ([Intel XE#2316]) -> [SKIP][608] ([Intel XE#2423]) +2 other tests skip
   [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
   [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [SKIP][609] ([Intel XE#2316]) -> ([PASS][610], [SKIP][611]) ([Intel XE#2423]) +1 other test ( 1 pass, 1 skip )
   [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
   [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
   [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-bmg:          [SKIP][612] ([Intel XE#2316]) -> ([SKIP][613], [SKIP][614]) ([Intel XE#2423])
   [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
   [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
   [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-bmg:          [FAIL][615] ([Intel XE#2882]) -> [SKIP][616] ([Intel XE#2423])
   [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank.html
   [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-bmg:          [SKIP][617] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][618] ([Intel XE#2136]) +4 other tests skip
   [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
   [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
    - shard-bmg:          [SKIP][619] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][620] ([Intel XE#2136])
   [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
   [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][621] ([Intel XE#2293] / [Intel XE#2380]) -> ([SKIP][622], [SKIP][623]) ([Intel XE#2136] / [Intel XE#2293] / [Intel XE#2380]) +10 other tests ( 2 skip )
   [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-bmg:          [SKIP][624] ([Intel XE#2293] / [Intel XE#2380]) -> ([SKIP][625], [SKIP][626]) ([Intel XE#2136]) +2 other tests ( 2 skip )
   [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
   [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
   [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][627] ([Intel XE#2311]) -> ([SKIP][628], [SKIP][629]) ([Intel XE#2136] / [Intel XE#2311]) +45 other tests ( 2 skip )
   [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
   [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
   [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][630] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][631] ([Intel XE#2311])
   [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html
   [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][632] ([Intel XE#651]) -> [SKIP][633] ([Intel XE#2136]) +1 other test skip
   [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][634] ([Intel XE#2311]) -> [SKIP][635] ([Intel XE#2136]) +33 other tests skip
   [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][636] ([Intel XE#651]) -> [SKIP][637] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
   [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][638] ([Intel XE#2311]) -> [SKIP][639] ([Intel XE#2312]) +6 other tests skip
   [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
   [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][640] ([Intel XE#2312]) -> ([SKIP][641], [SKIP][642]) ([Intel XE#2136] / [Intel XE#2311]) +6 other tests ( 2 skip )
   [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][643] ([Intel XE#2312]) -> ([SKIP][644], [SKIP][645]) ([Intel XE#2136]) +5 other tests ( 2 skip )
   [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][646] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][647], [SKIP][648]) ([Intel XE#2136])
   [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
   [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
   [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [FAIL][649] ([Intel XE#2333]) -> [SKIP][650] ([Intel XE#2136]) +12 other tests skip
   [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
   [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [FAIL][651] ([Intel XE#2333]) -> [SKIP][652] ([Intel XE#2312]) +4 other tests skip
   [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [FAIL][653] ([Intel XE#2333]) -> ([SKIP][654], [SKIP][655]) ([Intel XE#2136] / [Intel XE#2312]) +2 other tests ( 2 skip )
   [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
    - shard-bmg:          [FAIL][656] ([Intel XE#2333]) -> ([FAIL][657], [SKIP][658]) ([Intel XE#2312] / [Intel XE#2333])
   [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
   [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
   [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][659] ([Intel XE#2312]) -> ([FAIL][660], [SKIP][661]) ([Intel XE#2136] / [Intel XE#2333]) +1 other test ( 1 fail, 1 skip )
   [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][662] ([Intel XE#2312]) -> ([FAIL][663], [FAIL][664]) ([Intel XE#2333]) +2 other tests ( 2 fail )
   [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][665] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][666], [FAIL][667]) ([Intel XE#2136] / [Intel XE#2333])
   [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [FAIL][668] ([Intel XE#2333]) -> ([SKIP][669], [SKIP][670]) ([Intel XE#2136]) +5 other tests ( 2 skip )
   [668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [FAIL][671] ([Intel XE#2333]) -> ([FAIL][672], [SKIP][673]) ([Intel XE#2136] / [Intel XE#2333]) +23 other tests ( 1 fail, 1 skip )
   [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
    - shard-bmg:          [DMESG-FAIL][674] ([Intel XE#877]) -> ([FAIL][675], [FAIL][676]) ([Intel XE#2333])
   [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
   [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
   [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][677] ([Intel XE#2312]) -> ([SKIP][678], [SKIP][679]) ([Intel XE#2311] / [Intel XE#2312])
   [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][680] ([Intel XE#2311]) -> ([SKIP][681], [SKIP][682]) ([Intel XE#2136] / [Intel XE#2312]) +2 other tests ( 2 skip )
   [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][683] ([Intel XE#2312]) -> ([SKIP][684], [SKIP][685]) ([Intel XE#2311]) +2 other tests ( 2 skip )
   [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html
   [684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html
   [685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][686] ([Intel XE#2312]) -> [SKIP][687] ([Intel XE#2311])
   [686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
   [687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][688] ([Intel XE#2311]) -> ([SKIP][689], [SKIP][690]) ([Intel XE#2311] / [Intel XE#2312]) +1 other test ( 2 skip )
   [688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
   [689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
   [690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
    - shard-bmg:          [SKIP][691] ([Intel XE#2311]) -> ([SKIP][692], [SKIP][693]) ([Intel XE#2136]) +10 other tests ( 2 skip )
   [691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
   [692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
   [693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-bmg:          [SKIP][694] ([Intel XE#2352]) -> [SKIP][695] ([Intel XE#2136])
   [694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][696] ([Intel XE#2313]) -> ([SKIP][697], [SKIP][698]) ([Intel XE#2136]) +12 other tests ( 2 skip )
   [696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
   [697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
   [698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][699] ([Intel XE#2313]) -> ([SKIP][700], [SKIP][701]) ([Intel XE#2136] / [Intel XE#2313]) +45 other tests ( 2 skip )
   [699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
   [700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
   [701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][702] ([Intel XE#2313]) -> [SKIP][703] ([Intel XE#2312]) +4 other tests skip
   [702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
   [703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][704] ([Intel XE#2313]) -> ([SKIP][705], [SKIP][706]) ([Intel XE#2136] / [Intel XE#2312]) +3 other tests ( 2 skip )
   [704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
   [705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
   [706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][707] ([Intel XE#2312]) -> ([SKIP][708], [SKIP][709]) ([Intel XE#2136] / [Intel XE#2313]) +3 other tests ( 2 skip )
   [707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [709]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][710] ([Intel XE#2312]) -> [SKIP][711] ([Intel XE#2136]) +10 other tests skip
   [710]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
   [711]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][712] ([Intel XE#2313]) -> ([SKIP][713], [SKIP][714]) ([Intel XE#2312] / [Intel XE#2313]) +2 other tests ( 2 skip )
   [712]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [713]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [714]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][715] ([Intel XE#2312]) -> [SKIP][716] ([Intel XE#2313]) +1 other test skip
   [715]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
   [716]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-bmg:          [SKIP][717] ([Intel XE#2352]) -> ([SKIP][718], [SKIP][719]) ([Intel XE#2136] / [Intel XE#2352])
   [717]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [718]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [719]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          [SKIP][720] ([Intel XE#2350]) -> ([SKIP][721], [SKIP][722]) ([Intel XE#2136])
   [720]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [721]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [722]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][723] ([Intel XE#2313]) -> [SKIP][724] ([Intel XE#2136]) +33 other tests skip
   [723]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [724]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
    - shard-dg2-set2:     [SKIP][725] ([Intel XE#653]) -> [SKIP][726] ([Intel XE#2136]) +2 other tests skip
   [725]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [726]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][727] ([Intel XE#2312]) -> ([SKIP][728], [SKIP][729]) ([Intel XE#2312] / [Intel XE#2313])
   [727]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
   [728]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
   [729]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-rte:
    - shard-bmg:          [SKIP][730] ([Intel XE#2312]) -> ([SKIP][731], [SKIP][732]) ([Intel XE#2313]) +2 other tests ( 2 skip )
   [730]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-rte.html
   [731]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-rte.html
   [732]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][733] ([Intel XE#2312]) -> ([SKIP][734], [SKIP][735]) ([Intel XE#2136] / [Intel XE#2312]) +1 other test ( 2 skip )
   [733]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
   [734]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
   [735]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_getfb@getfb2-accept-ccs:
    - shard-bmg:          [SKIP][736] ([Intel XE#2340]) -> ([SKIP][737], [SKIP][738]) ([Intel XE#2340] / [Intel XE#2423])
   [736]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_getfb@getfb2-accept-ccs.html
   [737]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html
   [738]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][739] ([Intel XE#1503]) -> ([PASS][740], [SKIP][741]) ([Intel XE#2423])
   [739]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
   [740]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
   [741]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          [SKIP][742] ([Intel XE#346]) -> ([SKIP][743], [SKIP][744]) ([Intel XE#2136] / [Intel XE#346])
   [742]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html
   [743]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
   [744]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          [SKIP][745] ([Intel XE#2927]) -> ([SKIP][746], [SKIP][747]) ([Intel XE#2136] / [Intel XE#2927])
   [745]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
   [746]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html
   [747]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          [SKIP][748] ([Intel XE#2501]) -> ([SKIP][749], [SKIP][750]) ([Intel XE#2423] / [Intel XE#2501])
   [748]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [749]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [750]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-bmg:          [SKIP][751] ([Intel XE#2486]) -> ([SKIP][752], [SKIP][753]) ([Intel XE#2423] / [Intel XE#2486])
   [751]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html
   [752]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html
   [753]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_plane_alpha_blend@constant-alpha-max:
    - shard-bmg:          [SKIP][754] ([Intel XE#3007]) -> [SKIP][755] ([Intel XE#2423]) +1 other test skip
   [754]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_plane_alpha_blend@constant-alpha-max.html
   [755]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_alpha_blend@constant-alpha-max.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          [SKIP][756] ([Intel XE#2393]) -> [SKIP][757] ([Intel XE#2423])
   [756]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html
   [757]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          [SKIP][758] ([Intel XE#2393]) -> ([SKIP][759], [SKIP][760]) ([Intel XE#2423])
   [758]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html
   [759]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html
   [760]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          [SKIP][761] ([Intel XE#2493]) -> ([SKIP][762], [SKIP][763]) ([Intel XE#2423] / [Intel XE#2493]) +1 other test ( 2 skip )
   [761]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html
   [762]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html
   [763]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
    - shard-bmg:          [SKIP][764] ([Intel XE#3007]) -> [DMESG-WARN][765] ([Intel XE#877])
   [764]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
   [765]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
    - shard-bmg:          [SKIP][766] ([Intel XE#2763]) -> ([SKIP][767], [SKIP][768]) ([Intel XE#2423])
   [766]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
   [767]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
   [768]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-bmg:          [SKIP][769] ([Intel XE#2763]) -> [SKIP][770] ([Intel XE#2423]) +2 other tests skip
   [769]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
   [770]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          [SKIP][771] ([Intel XE#2763]) -> ([SKIP][772], [SKIP][773]) ([Intel XE#2423] / [Intel XE#2763]) +7 other tests ( 2 skip )
   [771]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [772]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [773]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          [SKIP][774] ([Intel XE#2938]) -> ([SKIP][775], [SKIP][776]) ([Intel XE#2136])
   [774]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_pm_backlight@brightness-with-dpms.html
   [775]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html
   [776]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          [SKIP][777] ([Intel XE#2392]) -> [SKIP][778] ([Intel XE#2136])
   [777]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html
   [778]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-bmg:          [SKIP][779] ([Intel XE#3309]) -> ([SKIP][780], [SKIP][781]) ([Intel XE#2136] / [Intel XE#3309])
   [779]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_pm_dc@dc5-retention-flops.html
   [780]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html
   [781]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          [SKIP][782] ([Intel XE#2392]) -> ([SKIP][783], [SKIP][784]) ([Intel XE#2136] / [Intel XE#2392])
   [782]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html
   [783]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_dc@dc6-psr.html
   [784]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@basic-pci-d3-state:
    - shard-bmg:          [FAIL][785] -> ([SKIP][786], [SKIP][787]) ([Intel XE#2446])
   [785]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_pm_rpm@basic-pci-d3-state.html
   [786]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_rpm@basic-pci-d3-state.html
   [787]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_rpm@basic-pci-d3-state.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          [SKIP][788] ([Intel XE#1439] / [Intel XE#836]) -> ([SKIP][789], [SKIP][790]) ([Intel XE#1439] / [Intel XE#2446] / [Intel XE#836])
   [788]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [789]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [790]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-bmg:          [SKIP][791] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> ([SKIP][792], [SKIP][793]) ([Intel XE#1439] / [Intel XE#2446] / [Intel XE#3141] / [Intel XE#836]) +1 other test ( 2 skip )
   [791]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp.html
   [792]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp.html
   [793]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-bmg:          [SKIP][794] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][795] ([Intel XE#2446])
   [794]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [795]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          [SKIP][796] ([Intel XE#1489]) -> ([SKIP][797], [SKIP][798]) ([Intel XE#2136]) +4 other tests ( 2 skip )
   [796]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
   [797]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
   [798]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          [SKIP][799] ([Intel XE#1489]) -> [SKIP][800] ([Intel XE#2136]) +10 other tests skip
   [799]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
   [800]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-bmg:          [SKIP][801] ([Intel XE#1489]) -> ([SKIP][802], [SKIP][803]) ([Intel XE#1489] / [Intel XE#2136]) +15 other tests ( 2 skip )
   [801]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
   [802]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
   [803]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-dg2-set2:     [SKIP][804] ([Intel XE#1489]) -> [SKIP][805] ([Intel XE#2136])
   [804]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
   [805]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-bmg:          [SKIP][806] ([Intel XE#2387]) -> ([SKIP][807], [SKIP][808]) ([Intel XE#2136] / [Intel XE#2387])
   [806]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_psr2_su@page_flip-p010.html
   [807]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
   [808]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          [SKIP][809] ([Intel XE#2387]) -> ([SKIP][810], [SKIP][811]) ([Intel XE#2136])
   [809]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html
   [810]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr2_su@page_flip-xrgb8888.html
   [811]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-pr-cursor-blt:
    - shard-bmg:          [SKIP][812] ([Intel XE#2234] / [Intel XE#2850]) -> ([SKIP][813], [SKIP][814]) ([Intel XE#2136] / [Intel XE#2234] / [Intel XE#2850]) +26 other tests ( 2 skip )
   [812]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html
   [813]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_psr@fbc-pr-cursor-blt.html
   [814]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr@fbc-pr-cursor-blt.html

  * igt@kms_psr@fbc-psr-sprite-plane-onoff:
    - shard-dg2-set2:     [SKIP][815] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][816] ([Intel XE#2136] / [Intel XE#2351])
   [815]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
   [816]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-onoff.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          [SKIP][817] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][818] ([Intel XE#2136]) +15 other tests skip
   [817]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html
   [818]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_psr@psr2-suspend:
    - shard-bmg:          [SKIP][819] ([Intel XE#2234] / [Intel XE#2850]) -> ([SKIP][820], [SKIP][821]) ([Intel XE#2136]) +6 other tests ( 2 skip )
   [819]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_psr@psr2-suspend.html
   [820]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr@psr2-suspend.html
   [821]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr@psr2-suspend.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          [SKIP][822] ([Intel XE#2414]) -> ([SKIP][823], [SKIP][824]) ([Intel XE#2136])
   [822]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [823]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [824]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          [SKIP][825] ([Intel XE#2414]) -> ([SKIP][826], [SKIP][827]) ([Intel XE#2136] / [Intel XE#2414])
   [825]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [826]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [827]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          [SKIP][828] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][829] ([Intel XE#2423])
   [828]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html
   [829]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-bmg:          [SKIP][830] ([Intel XE#3414] / [Intel XE#3904]) -> ([SKIP][831], [SKIP][832]) ([Intel XE#2423] / [Intel XE#3414] / [Intel XE#3904]) +1 other test ( 2 skip )
   [830]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-90.html
   [831]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-90.html
   [832]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-bmg:          [SKIP][833] ([Intel XE#2330]) -> [SKIP][834] ([Intel XE#2423]) +1 other test skip
   [833]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [834]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          [SKIP][835] ([Intel XE#2330]) -> ([SKIP][836], [SKIP][837]) ([Intel XE#2330] / [Intel XE#2423]) +1 other test ( 2 skip )
   [835]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [836]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [837]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][838] ([Intel XE#1127]) -> [SKIP][839] ([Intel XE#2423] / [i915#2575])
   [838]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [839]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-bmg:          [SKIP][840] ([Intel XE#2413]) -> ([SKIP][841], [SKIP][842]) ([Intel XE#2413] / [Intel XE#2423]) +2 other tests ( 2 skip )
   [840]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html
   [841]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-center.html
   [842]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-bmg:          [SKIP][843] ([Intel XE#2413]) -> [SKIP][844] ([Intel XE#2423])
   [843]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
   [844]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          [SKIP][845] ([Intel XE#1435]) -> ([SKIP][846], [SKIP][847]) ([Intel XE#2423])
   [845]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
   [846]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
   [847]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][848] ([Intel XE#2426]) -> ([SKIP][849], [SKIP][850]) ([Intel XE#2423] / [Intel XE#2426]) +1 other test ( 2 skip )
   [848]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
   [849]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
   [850]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
    - shard-dg2-set2:     [SKIP][851] ([Intel XE#362]) -> ([FAIL][852], [SKIP][853]) ([Intel XE#1729] / [Intel XE#362])
   [851]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
   [852]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
   [853]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-bmg:          [SKIP][854] ([Intel XE#2450]) -> ([SKIP][855], [SKIP][856]) ([Intel XE#2423] / [Intel XE#2450])
   [854]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
   [855]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html
   [856]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@flip-dpms:
    - shard-bmg:          [SKIP][857] ([Intel XE#1499]) -> ([SKIP][858], [SKIP][859]) ([Intel XE#1499] / [Intel XE#2423]) +1 other test ( 2 skip )
   [857]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_vrr@flip-dpms.html
   [858]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_vrr@flip-dpms.html
   [859]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][860] ([Intel XE#1499]) -> [SKIP][861] ([Intel XE#2423]) +1 other test skip
   [860]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_vrr@flip-suspend.html
   [861]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          [SKIP][862] ([Intel XE#2168]) -> [SKIP][863] ([Intel XE#2423])
   [862]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_vrr@lobf.html
   [863]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_vrr@lobf.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          [SKIP][864] ([Intel XE#1499]) -> ([SKIP][865], [SKIP][866]) ([Intel XE#2423])
   [864]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_vrr@max-min.html
   [865]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_vrr@max-min.html
   [866]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_vrr@max-min.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-bmg:          [SKIP][867] ([Intel XE#3007]) -> ([SKIP][868], [SKIP][869]) ([Intel XE#1499] / [Intel XE#2423])
   [867]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-virtual.html
   [868]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-virtual.html
   [869]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-bmg:          [SKIP][870] ([Intel XE#756]) -> ([SKIP][871], [SKIP][872]) ([Intel XE#2423] / [Intel XE#756])
   [870]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
   [871]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
   [872]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-bmg:          [SKIP][873] ([Intel XE#756]) -> ([SKIP][874], [SKIP][875]) ([Intel XE#2423])
   [873]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_writeback@writeback-fb-id.html
   [874]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_writeback@writeback-fb-id.html
   [875]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-bmg:          [SKIP][876] ([Intel XE#756]) -> [SKIP][877] ([Intel XE#2423])
   [876]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html
   [877]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-bmg:          [SKIP][878] ([Intel XE#1091] / [Intel XE#2849]) -> ([SKIP][879], [SKIP][880]) ([Intel XE#2423])
   [878]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
   [879]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
   [880]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_eudebug@basic-vm-access-parameters-userptr:
    - shard-bmg:          [SKIP][881] ([Intel XE#3889]) -> [SKIP][882] ([Intel XE#1130])
   [881]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
   [882]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_eudebug@basic-vm-access-parameters-userptr.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          [SKIP][883] ([Intel XE#2905]) -> [SKIP][884] ([Intel XE#1130]) +15 other tests skip
   [883]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
   [884]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
    - shard-bmg:          [SKIP][885] ([Intel XE#3889]) -> ([SKIP][886], [SKIP][887]) ([Intel XE#1130] / [Intel XE#3889])
   [885]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
   [886]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
   [887]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html

  * igt@xe_eudebug_online@basic-breakpoint:
    - shard-dg2-set2:     [SKIP][888] ([Intel XE#2905]) -> [SKIP][889] ([Intel XE#1130])
   [888]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@xe_eudebug_online@basic-breakpoint.html
   [889]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_eudebug_online@basic-breakpoint.html

  * igt@xe_eudebug_online@set-breakpoint:
    - shard-bmg:          [SKIP][890] ([Intel XE#2905]) -> ([SKIP][891], [SKIP][892]) ([Intel XE#1130]) +3 other tests ( 2 skip )
   [890]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_eudebug_online@set-breakpoint.html
   [891]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_eudebug_online@set-breakpoint.html
   [892]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-bmg:          [SKIP][893] ([Intel XE#2905]) -> ([SKIP][894], [SKIP][895]) ([Intel XE#1130] / [Intel XE#2905]) +17 other tests ( 2 skip )
   [893]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_eudebug_online@stopped-thread.html
   [894]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_eudebug_online@stopped-thread.html
   [895]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_exec_balancer@once-parallel-userptr-invalidate:
    - shard-bmg:          [SKIP][896] ([Intel XE#1130]) -> ([SKIP][897], [PASS][898]) ([Intel XE#1130]) +4 other tests ( 1 pass, 1 skip )
   [896]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
   [897]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
   [898]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-bmg:          [SKIP][899] ([Intel XE#2322]) -> ([SKIP][900], [SKIP][901]) ([Intel XE#1130] / [Intel XE#2322]) +15 other tests ( 2 skip )
   [899]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
   [900]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
   [901]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-bmg:          [SKIP][902] ([Intel XE#2322]) -> [SKIP][903] ([Intel XE#1130]) +8 other tests skip
   [902]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
   [903]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-bmg:          [SKIP][904] ([Intel XE#2322]) -> ([SKIP][905], [SKIP][906]) ([Intel XE#1130]) +3 other tests ( 2 skip )
   [904]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_exec_basic@multigpu-once-null-rebind.html
   [905]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html
   [906]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_live_ktest@xe_bo:
    - shard-bmg:          [SKIP][907] ([Intel XE#1192]) -> [SKIP][908] ([Intel XE#2229])
   [907]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@xe_live_ktest@xe_bo.html
   [908]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_live_ktest@xe_bo.html

  * igt@xe_mmap@pci-membarrier:
    - shard-bmg:          [SKIP][909] ([Intel XE#4045]) -> ([SKIP][910], [SKIP][911]) ([Intel XE#1130] / [Intel XE#4045])
   [909]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_mmap@pci-membarrier.html
   [910]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_mmap@pci-membarrier.html
   [911]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_mmap@pci-membarrier.html

  * igt@xe_mmap@pci-membarrier-parallel:
    - shard-bmg:          [SKIP][912] ([Intel XE#4045]) -> [SKIP][913] ([Intel XE#1130])
   [912]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_mmap@pci-membarrier-parallel.html
   [913]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_mmap@pci-membarrier-parallel.html

  * igt@xe_mmap@small-bar:
    - shard-bmg:          [SKIP][914] ([Intel XE#586]) -> ([SKIP][915], [SKIP][916]) ([Intel XE#1130] / [Intel XE#586])
   [914]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@xe_mmap@small-bar.html
   [915]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt@xe_mmap@small-bar.html
   [916]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_mmap@small-bar.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-bmg:          [SKIP][917] ([Intel XE#2248]) -> ([SKIP][918], [SKIP][919]) ([Intel XE#1130] / [Intel XE#2248])
   [917]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html
   [918]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html
   [919]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_oa@syncs-syncobj-wait:
    - shard-dg2-set2:     [SKIP][920] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][921] ([Intel XE#1130])
   [920]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@xe_oa@syncs-syncobj-wait.html
   [921]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt@xe_oa@syncs-syncobj-wait.html

  * igt@xe_oa@unprivileged-single-ctx-counters:
    - shard-bmg:          [SKIP][922] ([Intel XE#2248]) -> [SKIP][923] ([Intel XE#1130])
   [922]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_oa@unprivileged-single-ctx-counters.html
   [923]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_oa@unprivileged-single-ctx-counters.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-bmg:          [SKIP][924] ([Intel XE#1420]) -> [SKIP][925] ([Intel XE#1130])
   [924]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html
   [925]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          [SKIP][926] ([Intel XE#2245]) -> ([SKIP][927], [SKIP][928]) ([Intel XE#1130] / [Intel XE#2245])
   [926]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@xe_pat@pat-index-xelp.html
   [927]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_pat@pat-index-xelp.html
   [928]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          [SKIP][929] ([Intel XE#2284]) -> ([SKIP][930], [SKIP][931]) ([Intel XE#1130])
   [929]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_pm@d3cold-mocs.html
   [930]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_pm@d3cold-mocs.html
   [931]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-bmg:          [SKIP][932] ([Intel XE#2284]) -> ([SKIP][933], [SKIP][934]) ([Intel XE#1130] / [Intel XE#2284]) +4 other tests ( 2 skip )
   [932]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@xe_pm@s3-d3cold-basic-exec.html
   [933]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_pm@s3-d3cold-basic-exec.html
   [934]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-bmg:          [SKIP][935] ([Intel XE#579]) -> ([SKIP][936], [SKIP][937]) ([Intel XE#1130] / [Intel XE#579])
   [935]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_pm@vram-d3cold-threshold.html
   [936]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html
   [937]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-bmg:          [SKIP][938] ([Intel XE#944]) -> ([SKIP][939], [SKIP][940]) ([Intel XE#1130]) +1 other test ( 2 skip )
   [938]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html
   [939]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html
   [940]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          [SKIP][941] ([Intel XE#944]) -> [SKIP][942] ([Intel XE#1130]) +3 other tests skip
   [941]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [942]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-bmg:          [SKIP][943] ([Intel XE#944]) -> ([SKIP][944], [SKIP][945]) ([Intel XE#1130] / [Intel XE#944]) +3 other tests ( 2 skip )
   [943]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html
   [944]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_query@multigpu-query-mem-usage.html
   [945]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          [SKIP][946] ([Intel XE#3342]) -> [SKIP][947] ([Intel XE#1130])
   [946]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_sriov_flr@flr-each-isolation.html
   [947]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          [SKIP][948] ([Intel XE#3342]) -> ([SKIP][949], [SKIP][950]) ([Intel XE#1130] / [Intel XE#3342])
   [948]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html
   [949]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html
   [950]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html

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

  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
  [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
  [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
  [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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [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#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323
  [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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
  [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
  [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#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
  [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
  [Intel XE#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
  [Intel XE#4072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4072
  [Intel XE#4075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4075
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274


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

  * IGT: IGT_8193 -> IGTPW_12447
  * Linux: xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c -> xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0

  IGTPW_12447: 4593317dedb4854dc0f4d7beed6cf9c68f3adeb8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c
  xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0: 4840e56bcc47f3af6bbc58bcc83b094540e5efa0

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for tests/xe: Add xe_cg_dmem test
  2025-01-15 11:55 [PATCH i-g-t] tests/xe: Add xe_cg_dmem test Maarten Lankhorst
                   ` (3 preceding siblings ...)
  2025-01-16 15:18 ` Patchwork
@ 2025-01-17 12:31 ` Patchwork
  2025-01-17 18:01 ` [PATCH i-g-t] " Kamil Konieczny
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-01-17 12:31 UTC (permalink / raw)
  To: Maarten Lankhorst; +Cc: igt-dev

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

== Series Details ==

Series: tests/xe: Add xe_cg_dmem test
URL   : https://patchwork.freedesktop.org/series/143593/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8193_full -> IGTPW_12447_full
====================================================

Summary
-------

  **FAILURE**

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

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_tiled_swapping@non-threaded:
    - shard-rkl:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@gem_tiled_swapping@non-threaded.html

  * igt@i915_module_load@load:
    - shard-dg2:          ([PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16]) -> ([PASS][17], [PASS][18], [FAIL][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-10/igt@i915_module_load@load.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-2/igt@i915_module_load@load.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-5/igt@i915_module_load@load.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-3/igt@i915_module_load@load.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-7/igt@i915_module_load@load.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-10/igt@i915_module_load@load.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-8/igt@i915_module_load@load.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-4/igt@i915_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-2/igt@i915_module_load@load.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-3/igt@i915_module_load@load.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-8/igt@i915_module_load@load.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-5/igt@i915_module_load@load.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-4/igt@i915_module_load@load.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-11/igt@i915_module_load@load.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-11/igt@i915_module_load@load.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt@i915_module_load@load.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt@i915_module_load@load.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-11/igt@i915_module_load@load.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-11/igt@i915_module_load@load.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-11/igt@i915_module_load@load.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-11/igt@i915_module_load@load.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-11/igt@i915_module_load@load.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@i915_module_load@load.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@i915_module_load@load.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt@i915_module_load@load.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt@i915_module_load@load.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@i915_module_load@load.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@i915_module_load@load.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-5/igt@i915_module_load@load.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@i915_module_load@load.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@i915_module_load@load.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@i915_module_load@load.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@i915_module_load@load.html

  
#### Warnings ####

  * igt@perf_pmu@rc6@runtime-pm-gt0:
    - shard-rkl:          [DMESG-WARN][35] ([i915#12964]) -> [SKIP][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-5/igt@perf_pmu@rc6@runtime-pm-gt0.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt@perf_pmu@rc6@runtime-pm-gt0.html

  
New tests
---------

  New tests have been introduced between IGT_8193_full and IGTPW_12447_full:

### New IGT tests (78) ###

  * igt@gem_ctx_engines@independent@bcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.05, 0.23] s

  * igt@gem_ctx_engines@independent@rcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.05, 0.23] s

  * igt@gem_ctx_engines@independent@vcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.05, 0.20] s

  * igt@gem_ctx_engines@independent@vcs1:
    - Statuses : 3 pass(s)
    - Exec time: [0.06, 0.21] s

  * igt@gem_ctx_engines@independent@vecs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.05, 0.22] s

  * igt@gem_exec_async@forked-writes:
    - Statuses : 5 pass(s)
    - Exec time: [0.16, 0.34] s

  * igt@gem_exec_async@forked-writes@bcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.03, 0.07] s

  * igt@gem_exec_async@forked-writes@rcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.03, 0.07] s

  * igt@gem_exec_async@forked-writes@vcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.03, 0.08] s

  * igt@gem_exec_async@forked-writes@vcs1:
    - Statuses : 4 pass(s)
    - Exec time: [0.03, 0.04] s

  * igt@gem_exec_async@forked-writes@vecs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.03, 0.07] s

  * igt@gem_exec_balancer@fairslice:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 5.25] s

  * igt@gem_exec_balancer@nohangcheck:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.86] s

  * igt@gem_exec_balancer@noheartbeat:
    - Statuses : 2 pass(s) 2 skip(s)
    - Exec time: [0.0, 3.69] s

  * igt@gem_exec_balancer@persistence:
    - Statuses : 4 pass(s)
    - Exec time: [0.75, 1.22] s

  * igt@gem_exec_balancer@sequential:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.72] s

  * igt@gem_exec_create@legacy:
    - Statuses : 5 pass(s)
    - Exec time: [2.05, 4.19] s

  * igt@gem_exec_schedule@fairslice:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 14.14] s

  * igt@gem_exec_schedule@fairslice-all:
    - Statuses : 3 pass(s) 1 skip(s)
    - Exec time: [0.0, 2.07] s

  * igt@gem_exec_schedule@fairslice@bcs0:
    - Statuses : 6 pass(s)
    - Exec time: [2.01, 2.03] s

  * igt@gem_exec_schedule@fairslice@rcs0:
    - Statuses : 6 pass(s)
    - Exec time: [2.01, 2.04] s

  * igt@gem_exec_schedule@fairslice@vcs0:
    - Statuses : 6 pass(s)
    - Exec time: [2.01, 2.02] s

  * igt@gem_exec_schedule@fairslice@vcs1:
    - Statuses : 4 pass(s)
    - Exec time: [2.01, 2.02] s

  * igt@gem_exec_schedule@fairslice@vecs0:
    - Statuses : 6 pass(s)
    - Exec time: [2.01, 2.02] s

  * igt@gem_exec_schedule@preempt-user:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.23] s

  * igt@gem_exec_schedule@preempt-user@bcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.01, 0.04] s

  * igt@gem_exec_schedule@preempt-user@rcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.02, 0.05] s

  * igt@gem_exec_schedule@preempt-user@vcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.01, 0.04] s

  * igt@gem_exec_schedule@preempt-user@vcs1:
    - Statuses : 4 pass(s)
    - Exec time: [0.02, 0.04] s

  * igt@gem_exec_schedule@preempt-user@vecs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.01, 0.04] s

  * igt@gem_exec_schedule@u-fairslice:
    - Statuses : 3 pass(s) 1 skip(s)
    - Exec time: [0.0, 12.13] s

  * igt@gem_exec_schedule@u-fairslice-all:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 2.12] s

  * igt@gem_exec_schedule@u-fairslice@bcs0:
    - Statuses : 3 pass(s)
    - Exec time: [2.01, 2.02] s

  * igt@gem_exec_schedule@u-fairslice@rcs0:
    - Statuses : 3 pass(s)
    - Exec time: [2.01, 2.02] s

  * igt@gem_exec_schedule@u-fairslice@vcs0:
    - Statuses : 3 pass(s)
    - Exec time: [2.01, 2.02] s

  * igt@gem_exec_schedule@u-fairslice@vcs1:
    - Statuses : 2 pass(s)
    - Exec time: [2.01, 2.02] s

  * igt@gem_exec_schedule@u-fairslice@vecs0:
    - Statuses : 3 pass(s)
    - Exec time: [2.01, 2.02] s

  * igt@gem_exec_schedule@u-independent:
    - Statuses : 6 pass(s)
    - Exec time: [0.11, 10.02] s

  * igt@gem_exec_schedule@u-independent@rcs0:
    - Statuses : 6 pass(s)
    - Exec time: [0.07, 2.02] s

  * igt@gem_exec_schedule@u-independent@vcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.12, 2.00] s

  * igt@gem_exec_schedule@u-independent@vcs1:
    - Statuses : 3 pass(s)
    - Exec time: [0.11, 1.98] s

  * igt@gem_exec_schedule@u-independent@vecs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.12, 2.01] s

  * igt@gem_exec_schedule@u-lateslice:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.16] s

  * igt@gem_exec_schedule@u-lateslice@bcs0:
    - Statuses : 4 pass(s)
    - Exec time: [0.01, 0.02] s

  * igt@gem_exec_schedule@u-lateslice@rcs0:
    - Statuses : 4 pass(s)
    - Exec time: [0.01, 0.04] s

  * igt@gem_exec_schedule@u-lateslice@vcs0:
    - Statuses : 4 pass(s)
    - Exec time: [0.01, 0.02] s

  * igt@gem_exec_schedule@u-lateslice@vcs1:
    - Statuses : 3 pass(s)
    - Exec time: [0.01, 0.02] s

  * igt@gem_exec_schedule@u-lateslice@vecs0:
    - Statuses : 4 pass(s)
    - Exec time: [0.01, 0.02] s

  * igt@gem_exec_schedule@u-semaphore-codependency:
    - Statuses : 5 pass(s)
    - Exec time: [0.01, 0.03] s

  * igt@gem_exec_schedule@u-semaphore-noskip:
    - Statuses : 4 pass(s)
    - Exec time: [0.19, 0.73] s

  * igt@gem_exec_schedule@u-semaphore-resolve:
    - Statuses : 5 pass(s)
    - Exec time: [0.01, 0.07] s

  * igt@gem_exec_schedule@u-semaphore-user:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.08] s

  * igt@gem_exec_schedule@u-submit-early-slice:
    - Statuses : 2 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.37] s

  * igt@gem_exec_schedule@u-submit-early-slice@bcs0:
    - Statuses : 2 pass(s)
    - Exec time: [0.03, 0.06] s

  * igt@gem_exec_schedule@u-submit-early-slice@rcs0:
    - Statuses : 2 pass(s)
    - Exec time: [0.03, 0.07] s

  * igt@gem_exec_schedule@u-submit-early-slice@vcs0:
    - Statuses : 2 pass(s)
    - Exec time: [0.03, 0.05] s

  * igt@gem_exec_schedule@u-submit-early-slice@vcs1:
    - Statuses : 2 pass(s)
    - Exec time: [0.03, 0.07] s

  * igt@gem_exec_schedule@u-submit-early-slice@vecs0:
    - Statuses : 2 pass(s)
    - Exec time: [0.03, 0.05] s

  * igt@gem_exec_schedule@u-submit-golden-slice:
    - Statuses : 3 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.32] s

  * igt@gem_exec_schedule@u-submit-golden-slice@bcs0:
    - Statuses : 3 pass(s)
    - Exec time: [0.02, 0.04] s

  * igt@gem_exec_schedule@u-submit-golden-slice@rcs0:
    - Statuses : 3 pass(s)
    - Exec time: [0.03, 0.06] s

  * igt@gem_exec_schedule@u-submit-golden-slice@vcs0:
    - Statuses : 3 pass(s)
    - Exec time: [0.02, 0.04] s

  * igt@gem_exec_schedule@u-submit-golden-slice@vcs1:
    - Statuses : 3 pass(s)
    - Exec time: [0.02, 0.04] s

  * igt@gem_exec_schedule@u-submit-golden-slice@vecs0:
    - Statuses : 3 pass(s)
    - Exec time: [0.02, 0.04] s

  * igt@gem_exec_schedule@u-submit-late-slice:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.20] s

  * igt@gem_exec_schedule@u-submit-late-slice@bcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.02, 0.04] s

  * igt@gem_exec_schedule@u-submit-late-slice@rcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.02, 0.05] s

  * igt@gem_exec_schedule@u-submit-late-slice@vcs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.02, 0.04] s

  * igt@gem_exec_schedule@u-submit-late-slice@vcs1:
    - Statuses : 3 pass(s)
    - Exec time: [0.03] s

  * igt@gem_exec_schedule@u-submit-late-slice@vecs0:
    - Statuses : 5 pass(s)
    - Exec time: [0.02, 0.05] s

  * igt@gem_softpin@32b-excludes-last-page:
    - Statuses : 5 pass(s)
    - Exec time: [0.00, 0.01] s

  * igt@gem_softpin@full:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.01] s

  * igt@gem_softpin@zero:
    - Statuses : 5 pass(s)
    - Exec time: [0.00, 0.01] s

  * igt@gen9_exec_parse@shadow-peek:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 0.01] s

  * igt@perf@non-zero-reason:
    - Statuses : 1 fail(s) 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 51.19] s

  * igt@perf_pmu@gt-awake:
    - Statuses : 4 pass(s)
    - Exec time: [2.01, 8.28] s

  * igt@perf_pmu@invalid-open:
    - Statuses : 4 pass(s)
    - Exec time: [0.0] s

  * igt@perf_pmu@rc6-suspend:
    - Statuses : 5 pass(s)
    - Exec time: [7.49, 16.04] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#8411]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html

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

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

  * igt@drm_fdinfo@busy-idle@bcs0:
    - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#8414]) +16 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt@drm_fdinfo@busy-idle@bcs0.html

  * igt@drm_fdinfo@busy-idle@vecs0:
    - shard-mtlp:         NOTRUN -> [SKIP][41] ([i915#8414]) +6 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt@drm_fdinfo@busy-idle@vecs0.html

  * igt@drm_fdinfo@isolation@vecs0:
    - shard-dg1:          NOTRUN -> [SKIP][42] ([i915#8414]) +18 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@drm_fdinfo@isolation@vecs0.html

  * igt@gem_bad_reloc@negative-reloc-lut:
    - shard-mtlp:         NOTRUN -> [SKIP][43] ([i915#3281]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-5/igt@gem_bad_reloc@negative-reloc-lut.html

  * igt@gem_busy@semaphore:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#3936])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt@gem_busy@semaphore.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-rkl:          NOTRUN -> [SKIP][45] ([i915#3555] / [i915#9323])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-tglu:         NOTRUN -> [SKIP][46] ([i915#3555] / [i915#9323])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-tglu:         NOTRUN -> [SKIP][47] ([i915#7697])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html
    - shard-dg2:          NOTRUN -> [SKIP][48] ([i915#7697])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html
    - shard-rkl:          NOTRUN -> [SKIP][49] ([i915#7697])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_create@busy-create:
    - shard-rkl:          [PASS][50] -> [DMESG-WARN][51] ([i915#12964]) +27 other tests dmesg-warn
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-7/igt@gem_create@busy-create.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/igt@gem_create@busy-create.html

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-rkl:          NOTRUN -> [SKIP][52] ([i915#6335])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html

  * igt@gem_create@create-ext-cpu-access-sanity-check:
    - shard-tglu-1:       NOTRUN -> [SKIP][53] ([i915#6335]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html

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

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

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

  * igt@gem_ctx_persistence@legacy-engines-queued:
    - shard-snb:          NOTRUN -> [SKIP][57] ([i915#1099]) +5 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb1/igt@gem_ctx_persistence@legacy-engines-queued.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-tglu:         NOTRUN -> [SKIP][58] ([i915#280])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-tglu-1:       NOTRUN -> [SKIP][59] ([i915#280])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#280])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@hibernate:
    - shard-dg1:          NOTRUN -> [ABORT][61] ([i915#7975] / [i915#8213])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt@gem_eio@hibernate.html

  * igt@gem_eio@kms:
    - shard-dg1:          [PASS][62] -> [FAIL][63] ([i915#5784])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-12/igt@gem_eio@kms.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@gem_eio@kms.html

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

  * igt@gem_exec_balancer@bonded-sync:
    - shard-dg2:          NOTRUN -> [SKIP][65] ([i915#4771])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@gem_exec_balancer@bonded-sync.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-dg1:          NOTRUN -> [SKIP][66] ([i915#4036])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@gem_exec_balancer@invalid-bonds.html

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

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

  * igt@gem_exec_balancer@sliced:
    - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#4812])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt@gem_exec_balancer@sliced.html

  * igt@gem_exec_capture@capture:
    - shard-mtlp:         NOTRUN -> [FAIL][70] ([i915#11965]) +1 other test fail
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt@gem_exec_capture@capture.html

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

  * igt@gem_exec_capture@capture@vecs0-lmem0:
    - shard-dg2:          NOTRUN -> [FAIL][72] ([i915#11965]) +4 other tests fail
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt@gem_exec_capture@capture@vecs0-lmem0.html
    - shard-dg1:          NOTRUN -> [FAIL][73] ([i915#11965]) +2 other tests fail
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt@gem_exec_capture@capture@vecs0-lmem0.html

  * igt@gem_exec_endless@dispatch@vcs1:
    - shard-dg1:          [PASS][74] -> [TIMEOUT][75] ([i915#3778]) +1 other test timeout
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-17/igt@gem_exec_endless@dispatch@vcs1.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@gem_exec_endless@dispatch@vcs1.html

  * igt@gem_exec_fence@concurrent:
    - shard-dg2:          NOTRUN -> [SKIP][76] ([i915#4812])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_flush@basic-uc-prw-default:
    - shard-dg1:          NOTRUN -> [SKIP][77] ([i915#3539]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@gem_exec_flush@basic-uc-prw-default.html
    - shard-dg2:          NOTRUN -> [SKIP][78] ([i915#3539])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@gem_exec_flush@basic-uc-prw-default.html

  * igt@gem_exec_flush@basic-uc-ro-default:
    - shard-dg1:          NOTRUN -> [SKIP][79] ([i915#3539] / [i915#4852]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@gem_exec_flush@basic-uc-ro-default.html

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

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

  * igt@gem_exec_reloc@basic-wc-read-active:
    - shard-dg1:          NOTRUN -> [SKIP][82] ([i915#3281]) +11 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read-active.html

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

  * igt@gem_exec_schedule@semaphore-power:
    - shard-dg2:          NOTRUN -> [SKIP][84] ([i915#4537] / [i915#4812]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_exec_schedule@thriceslice:
    - shard-snb:          NOTRUN -> [SKIP][85] +461 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb7/igt@gem_exec_schedule@thriceslice.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - shard-dg2:          NOTRUN -> [ABORT][86] ([i915#7975] / [i915#8213]) +1 other test abort
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_fence_thrash@bo-write-verify-x:
    - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#4860]) +3 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-x.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
    - shard-dg1:          NOTRUN -> [SKIP][88] ([i915#4860])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html

  * igt@gem_huc_copy@huc-copy:
    - shard-rkl:          NOTRUN -> [SKIP][89] ([i915#2190])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt@gem_huc_copy@huc-copy.html
    - shard-glk:          NOTRUN -> [SKIP][90] ([i915#2190])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk5/igt@gem_huc_copy@huc-copy.html

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

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-rkl:          NOTRUN -> [SKIP][92] ([i915#4613]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html
    - shard-mtlp:         NOTRUN -> [SKIP][93] ([i915#4613]) +1 other test skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-glk:          NOTRUN -> [SKIP][94] ([i915#4613]) +3 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk1/igt@gem_lmem_swapping@random-engines.html
    - shard-tglu-1:       NOTRUN -> [SKIP][95] ([i915#4613]) +1 other test skip
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          NOTRUN -> [TIMEOUT][96] ([i915#5493]) +1 other test timeout
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html

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

  * igt@gem_media_fill@media-fill:
    - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#8289])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt@gem_media_fill@media-fill.html
    - shard-dg2:          NOTRUN -> [SKIP][99] ([i915#8289])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@gem_media_fill@media-fill.html

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

  * igt@gem_mmap@bad-object:
    - shard-dg1:          NOTRUN -> [SKIP][101] ([i915#4083]) +5 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt@gem_mmap@bad-object.html

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

  * igt@gem_mmap_gtt@basic-small-bo:
    - shard-dg2:          NOTRUN -> [SKIP][103] ([i915#4077]) +14 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@gem_mmap_gtt@basic-small-bo.html

  * igt@gem_mmap_wc@fault-concurrent:
    - shard-dg2:          NOTRUN -> [SKIP][104] ([i915#4083]) +5 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@gem_mmap_wc@fault-concurrent.html

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

  * igt@gem_partial_pwrite_pread@reads-snoop:
    - shard-dg1:          NOTRUN -> [SKIP][106] ([i915#3282]) +6 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-snoop.html
    - shard-mtlp:         NOTRUN -> [SKIP][107] ([i915#3282]) +1 other test skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads-snoop.html

  * igt@gem_partial_pwrite_pread@reads-uncached:
    - shard-dg2:          NOTRUN -> [SKIP][108] ([i915#3282]) +6 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@gem_partial_pwrite_pread@reads-uncached.html

  * igt@gem_pread@exhaustion:
    - shard-tglu:         NOTRUN -> [WARN][109] ([i915#2658])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt@gem_pread@exhaustion.html
    - shard-glk:          NOTRUN -> [WARN][110] ([i915#2658]) +1 other test warn
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk9/igt@gem_pread@exhaustion.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-rkl:          NOTRUN -> [SKIP][111] ([i915#3282]) +6 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html
    - shard-snb:          NOTRUN -> [WARN][112] ([i915#2658])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb2/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-rkl:          NOTRUN -> [TIMEOUT][113] ([i915#12964]) +1 other test timeout
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@create-regular-context-1:
    - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#4270]) +2 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt@gem_pxp@create-regular-context-1.html

  * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
    - shard-rkl:          NOTRUN -> [TIMEOUT][115] ([i915#12917] / [i915#12964]) +1 other test timeout
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html

  * igt@gem_pxp@reject-modify-context-protection-on:
    - shard-dg1:          NOTRUN -> [SKIP][116] ([i915#4270]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html

  * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][117] ([i915#5190] / [i915#8428]) +6 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html

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

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-rkl:          NOTRUN -> [SKIP][119] ([i915#8411]) +1 other test skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

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

  * igt@gem_set_tiling_vs_gtt:
    - shard-dg1:          NOTRUN -> [SKIP][121] ([i915#4079]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html

  * igt@gem_tiled_fence_blits@basic:
    - shard-dg1:          NOTRUN -> [SKIP][122] ([i915#4077]) +9 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@gem_tiled_fence_blits@basic.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-snb:          NOTRUN -> [ABORT][123] ([i915#13263] / [i915#13449])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb7/igt@gem_tiled_swapping@non-threaded.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][124] ([i915#3323])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk9/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-dg1:          NOTRUN -> [SKIP][125] ([i915#3297])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#3297]) +5 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@gem_userptr_blits@dmabuf-unsync.html
    - shard-tglu-1:       NOTRUN -> [SKIP][127] ([i915#3297]) +1 other test skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html

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

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-dg2:          NOTRUN -> [SKIP][129] ([i915#3297] / [i915#4880])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-dg1:          NOTRUN -> [SKIP][130] ([i915#3297] / [i915#4880])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_userptr_blits@unsync-unmap-after-close:
    - shard-rkl:          NOTRUN -> [SKIP][131] ([i915#3297]) +2 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html

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

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

  * igt@gen9_exec_parse@basic-rejected:
    - shard-mtlp:         NOTRUN -> [SKIP][134] ([i915#2856]) +1 other test skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-4/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-rkl:          NOTRUN -> [SKIP][135] ([i915#2527]) +3 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-dg1:          NOTRUN -> [SKIP][136] ([i915#2527]) +3 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt@gen9_exec_parse@bb-oversize.html

  * igt@gen9_exec_parse@shadow-peek (NEW):
    - shard-tglu-1:       NOTRUN -> [SKIP][137] ([i915#2527] / [i915#2856]) +2 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html

  * igt@gen9_exec_parse@unaligned-access:
    - shard-dg2:          NOTRUN -> [SKIP][138] ([i915#2856]) +5 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@gen9_exec_parse@unaligned-access.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-tglu:         NOTRUN -> [SKIP][139] ([i915#2527] / [i915#2856])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-9/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_fb_tiling:
    - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#4881])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@i915_fb_tiling.html

  * igt@i915_hangman@detector@vcs0:
    - shard-mtlp:         [PASS][141] -> [ABORT][142] ([i915#13193]) +1 other test abort
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-6/igt@i915_hangman@detector@vcs0.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-4/igt@i915_hangman@detector@vcs0.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg1:          NOTRUN -> [ABORT][143] ([i915#13493] / [i915#9820])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
    - shard-tglu:         [PASS][144] -> [DMESG-WARN][145] ([i915#10887] / [i915#13475])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html

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

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-rkl:          [PASS][148] -> [FAIL][149] ([i915#12942]) +1 other test fail
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-dg1:          NOTRUN -> [FAIL][150] ([i915#3591])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
    - shard-dg1:          NOTRUN -> [FAIL][151] ([i915#12739] / [i915#3591])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html

  * igt@i915_pm_rps@basic-api:
    - shard-dg1:          NOTRUN -> [SKIP][152] ([i915#11681] / [i915#6621]) +1 other test skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt@i915_pm_rps@basic-api.html
    - shard-mtlp:         NOTRUN -> [SKIP][153] ([i915#11681] / [i915#6621]) +1 other test skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-7/igt@i915_pm_rps@basic-api.html
    - shard-dg2:          NOTRUN -> [SKIP][154] ([i915#11681] / [i915#6621])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@i915_pm_rps@basic-api.html

  * igt@i915_query@hwconfig_table:
    - shard-dg1:          NOTRUN -> [SKIP][155] ([i915#6245])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@i915_query@hwconfig_table.html
    - shard-tglu:         NOTRUN -> [SKIP][156] ([i915#6245])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt@i915_query@hwconfig_table.html

  * igt@i915_query@query-topology-coherent-slice-mask:
    - shard-mtlp:         NOTRUN -> [SKIP][157] ([i915#6188])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-4/igt@i915_query@query-topology-coherent-slice-mask.html

  * igt@i915_selftest@mock@memory_region:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][158] ([i915#9311]) +1 other test dmesg-warn
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@i915_selftest@mock@memory_region.html
    - shard-tglu-1:       NOTRUN -> [DMESG-WARN][159] ([i915#9311]) +1 other test dmesg-warn
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@i915_selftest@mock@memory_region.html

  * igt@i915_suspend@debugfs-reader:
    - shard-mtlp:         [PASS][160] -> [INCOMPLETE][161] ([i915#13491])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-4/igt@i915_suspend@debugfs-reader.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-5/igt@i915_suspend@debugfs-reader.html

  * igt@i915_suspend@forcewake:
    - shard-glk:          NOTRUN -> [INCOMPLETE][162] ([i915#4817]) +2 other tests incomplete
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk3/igt@i915_suspend@forcewake.html

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

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

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

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][167] ([i915#8709]) +3 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][168] ([i915#8709]) +11 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][169] ([i915#8709]) +7 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs.html

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

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-tglu:         [PASS][171] -> [FAIL][172] ([i915#11808]) +1 other test fail
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-dg1:          NOTRUN -> [SKIP][173] ([i915#1769] / [i915#3555])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

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

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

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-mtlp:         [PASS][176] -> [FAIL][177] ([i915#12469] / [i915#5138])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-mtlp:         [PASS][178] -> [FAIL][179] ([i915#5138]) +1 other test fail
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-dg1:          NOTRUN -> [SKIP][180] ([i915#5286])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

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

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][183] ([i915#5286]) +6 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/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][184] ([i915#3638]) +4 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][185] ([i915#3638]) +5 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#4538] / [i915#5190]) +9 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
    - shard-dg1:          NOTRUN -> [SKIP][187] ([i915#4538]) +4 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-mtlp:         NOTRUN -> [SKIP][188] +7 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
    - shard-glk:          NOTRUN -> [SKIP][189] +485 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html

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

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

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][192] ([i915#10307] / [i915#6095]) +128 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-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][193] ([i915#6095]) +29 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][195] ([i915#12805]) +1 other test skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

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

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][197] ([i915#6095]) +22 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html

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

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

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][201] ([i915#12313])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][202] ([i915#12313]) +1 other test skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

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

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

  * igt@kms_cdclk@mode-transition@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][205] ([i915#11616] / [i915#7213]) +4 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html

  * igt@kms_cdclk@plane-scaling:
    - shard-dg1:          NOTRUN -> [SKIP][206] ([i915#3742])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#4087]) +4 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html

  * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
    - shard-tglu:         NOTRUN -> [SKIP][208] ([i915#11151] / [i915#7828]) +6 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html

  * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
    - shard-dg2:          NOTRUN -> [SKIP][209] ([i915#11151] / [i915#7828]) +12 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-tglu-1:       NOTRUN -> [SKIP][210] ([i915#11151] / [i915#7828]) +6 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
    - shard-dg1:          NOTRUN -> [SKIP][211] ([i915#11151] / [i915#7828]) +6 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

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

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-mtlp:         NOTRUN -> [SKIP][213] ([i915#11151] / [i915#7828]) +2 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_color@deep-color:
    - shard-rkl:          NOTRUN -> [SKIP][214] ([i915#3555]) +4 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@kms_color@deep-color.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][215] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@content-type-change:
    - shard-rkl:          NOTRUN -> [SKIP][216] ([i915#9424])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt@kms_content_protection@content-type-change.html

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

  * igt@kms_content_protection@srm:
    - shard-dg2:          NOTRUN -> [SKIP][218] ([i915#7118])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@kms_content_protection@srm.html
    - shard-tglu-1:       NOTRUN -> [SKIP][219] ([i915#6944] / [i915#7116] / [i915#7118])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          NOTRUN -> [SKIP][220] ([i915#7118] / [i915#9424]) +1 other test skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@kms_content_protection@type1.html

  * igt@kms_content_protection@uevent:
    - shard-mtlp:         NOTRUN -> [SKIP][221] ([i915#6944] / [i915#9424])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-4/igt@kms_content_protection@uevent.html
    - shard-rkl:          NOTRUN -> [SKIP][222] ([i915#7118] / [i915#9424])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@kms_content_protection@uevent.html
    - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#7116] / [i915#9424]) +1 other test skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [DMESG-WARN][224] ([i915#12964]) +22 other tests dmesg-warn
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-256x85@pipe-b-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-tglu:         NOTRUN -> [SKIP][225] ([i915#3555]) +2 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg1:          NOTRUN -> [SKIP][226] ([i915#13049]) +1 other test skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-256x85:
    - shard-mtlp:         NOTRUN -> [SKIP][227] ([i915#8814]) +1 other test skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-dg1:          NOTRUN -> [SKIP][228] ([i915#3555]) +6 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-rkl:          NOTRUN -> [SKIP][229] ([i915#13049])
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#13049])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-dg2:          NOTRUN -> [SKIP][231] ([i915#3555]) +8 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][232] ([i915#13049]) +1 other test skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][233] +27 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

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

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-rkl:          NOTRUN -> [SKIP][235] ([i915#4103]) +1 other test skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-dg1:          NOTRUN -> [SKIP][236] ([i915#4103] / [i915#4213])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-tglu-1:       NOTRUN -> [SKIP][237] ([i915#4103])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-glk:          [PASS][238] -> [DMESG-WARN][239] ([i915#118])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-mtlp:         NOTRUN -> [SKIP][240] ([i915#9809]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [PASS][241] -> [FAIL][242] ([i915#2346])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

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

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

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

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg1:          NOTRUN -> [SKIP][246] ([i915#8588])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2:          NOTRUN -> [SKIP][247] ([i915#3840] / [i915#9688])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-tglu-1:       NOTRUN -> [SKIP][248] ([i915#3840])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
    - shard-dg1:          NOTRUN -> [SKIP][249] ([i915#3840])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

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

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][251] ([i915#3469])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-tglu:         NOTRUN -> [SKIP][252] ([i915#2065] / [i915#4854])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt@kms_feature_discovery@chamelium.html
    - shard-rkl:          NOTRUN -> [SKIP][253] ([i915#4854])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-3x:
    - shard-rkl:          NOTRUN -> [SKIP][254] ([i915#1839])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt@kms_feature_discovery@display-3x.html
    - shard-mtlp:         NOTRUN -> [SKIP][255] ([i915#1839])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg1:          NOTRUN -> [SKIP][256] ([i915#1839]) +1 other test skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg1:          NOTRUN -> [SKIP][257] ([i915#9337])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-tglu-1:       NOTRUN -> [SKIP][258] ([i915#658])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2:          NOTRUN -> [SKIP][259] ([i915#658])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@kms_feature_discovery@psr2.html

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

  * igt@kms_flip@2x-blocking-wf_vblank@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          NOTRUN -> [FAIL][261] ([i915#11989]) +2 other tests fail
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk3/igt@kms_flip@2x-blocking-wf_vblank@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
    - shard-glk:          [PASS][262] -> [FAIL][263] ([i915#11989]) +1 other test fail
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
    - shard-dg1:          NOTRUN -> [SKIP][264] ([i915#9934]) +5 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-tglu-1:       NOTRUN -> [SKIP][265] ([i915#3637]) +3 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

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

  * igt@kms_flip@2x-flip-vs-modeset:
    - shard-mtlp:         NOTRUN -> [SKIP][267] ([i915#3637]) +3 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt@kms_flip@2x-flip-vs-modeset.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][268] ([i915#12745] / [i915#4839]) +1 other test incomplete
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk7/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][269] ([i915#4839]) +1 other test incomplete
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html

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

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

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-glk:          NOTRUN -> [INCOMPLETE][272] ([i915#12745] / [i915#1982] / [i915#4839])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][273] ([i915#12745] / [i915#1982])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][274] ([i915#2672] / [i915#3555]) +9 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

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

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

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][277] ([i915#2587] / [i915#2672]) +1 other test skip
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][278] ([i915#2672]) +9 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][279] ([i915#2672] / [i915#3555]) +4 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][280] ([i915#2672] / [i915#3555])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-dg1:          NOTRUN -> [SKIP][281] ([i915#2587] / [i915#2672]) +2 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-dg1:          NOTRUN -> [SKIP][282] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][283] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][284] ([i915#2587] / [i915#2672] / [i915#3555])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][285] ([i915#2672] / [i915#3555])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
    - shard-tglu-1:       NOTRUN -> [SKIP][286] ([i915#2587] / [i915#2672]) +1 other test skip
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][288] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][289] ([i915#2672]) +5 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html

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

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][292] ([i915#8708]) +20 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-tglu-1:       NOTRUN -> [SKIP][293] +48 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][294] ([i915#8708]) +22 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][295] ([i915#3458]) +23 other tests skip
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-dg1:          NOTRUN -> [SKIP][296] +49 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][297] ([i915#1825]) +11 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][298] +54 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
    - shard-rkl:          NOTRUN -> [SKIP][299] ([i915#1825]) +46 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html

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

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][301] ([i915#3023]) +31 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][302] ([i915#3458]) +22 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][303] ([i915#6118])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8228]) +1 other test skip
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@static-swap:
    - shard-dg1:          NOTRUN -> [SKIP][305] ([i915#3555] / [i915#8228]) +2 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@kms_hdr@static-swap.html
    - shard-mtlp:         NOTRUN -> [SKIP][306] ([i915#3555] / [i915#8228])
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-2/igt@kms_hdr@static-swap.html
    - shard-rkl:          NOTRUN -> [SKIP][307] ([i915#3555] / [i915#8228])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt@kms_hdr@static-swap.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][308] ([i915#3555] / [i915#8228])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html

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

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

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-dg1:          NOTRUN -> [SKIP][311] ([i915#12394] / [i915#13522]) +1 other test skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][312] ([i915#12339])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-5/igt@kms_joiner@basic-ultra-joiner.html

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

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][314] ([i915#10656] / [i915#13522])
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-dg1:          NOTRUN -> [SKIP][315] ([i915#12339])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-rkl:          NOTRUN -> [SKIP][316] ([i915#6301]) +1 other test skip
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
    - shard-dg2:          NOTRUN -> [SKIP][317] +17 other tests skip
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html

  * igt@kms_plane_alpha_blend@alpha-basic:
    - shard-dg1:          [PASS][318] -> [DMESG-WARN][319] ([i915#4423])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-18/igt@kms_plane_alpha_blend@alpha-basic.html
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt@kms_plane_alpha_blend@alpha-basic.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-tglu-1:       NOTRUN -> [SKIP][320] ([i915#3555]) +4 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
    - shard-dg2:          NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8806])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-rkl:          NOTRUN -> [SKIP][322] ([i915#6953])
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-tglu-1:       NOTRUN -> [SKIP][323] ([i915#6953])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-dg2:          NOTRUN -> [SKIP][324] ([i915#12247] / [i915#9423])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
    - shard-mtlp:         NOTRUN -> [SKIP][325] ([i915#12247]) +8 other tests skip
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
    - shard-tglu:         NOTRUN -> [SKIP][326] ([i915#12247]) +12 other tests skip
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html

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

  * igt@kms_plane_scaling@planes-downscale-factor-0-25:
    - shard-rkl:          NOTRUN -> [SKIP][328] ([i915#12247] / [i915#6953]) +1 other test skip
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
    - shard-dg1:          NOTRUN -> [SKIP][329] ([i915#12247] / [i915#6953])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
    - shard-dg2:          NOTRUN -> [SKIP][330] ([i915#12247] / [i915#6953] / [i915#9423])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
    - shard-dg2:          NOTRUN -> [SKIP][331] ([i915#12247]) +7 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
    - shard-dg1:          NOTRUN -> [SKIP][332] ([i915#12247]) +8 other tests skip
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5:
    - shard-mtlp:         NOTRUN -> [SKIP][333] ([i915#12247] / [i915#6953])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
    - shard-tglu-1:       NOTRUN -> [SKIP][334] ([i915#12247] / [i915#6953])
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
    - shard-tglu-1:       NOTRUN -> [SKIP][335] ([i915#12247]) +3 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
    - shard-tglu:         NOTRUN -> [SKIP][336] ([i915#12247] / [i915#3555])
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-rkl:          NOTRUN -> [SKIP][337] ([i915#5354])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@kms_pm_backlight@basic-brightness.html

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

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][339] ([i915#9812])
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][340] ([i915#9812])
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
    - shard-dg1:          NOTRUN -> [SKIP][341] ([i915#5354])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-tglu:         NOTRUN -> [SKIP][342] ([i915#9685])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt@kms_pm_dc@dc5-psr.html
    - shard-dg2:          NOTRUN -> [SKIP][343] ([i915#9685])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][344] ([i915#5978])
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-rkl:          NOTRUN -> [SKIP][345] ([i915#9685])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][346] ([i915#3361])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg1:          NOTRUN -> [SKIP][347] ([i915#9340])
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-rkl:          NOTRUN -> [SKIP][348] ([i915#9519])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][349] ([i915#9519])
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-mtlp:         NOTRUN -> [SKIP][350] ([i915#9519])
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglu-1:       NOTRUN -> [SKIP][351] ([i915#9519])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-rkl:          [PASS][352] -> [SKIP][353] ([i915#9519])
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

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

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-tglu-1:       NOTRUN -> [SKIP][355] ([i915#11520]) +3 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-mtlp:         NOTRUN -> [SKIP][356] ([i915#12316]) +2 other tests skip
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-rkl:          NOTRUN -> [SKIP][357] ([i915#11520]) +10 other tests skip
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-dg1:          NOTRUN -> [SKIP][358] ([i915#11520]) +7 other tests skip
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-snb:          NOTRUN -> [SKIP][359] ([i915#11520]) +10 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-tglu:         NOTRUN -> [SKIP][360] ([i915#11520]) +3 other tests skip
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

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

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

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

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][364] ([i915#9683]) +1 other test skip
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-pr-cursor-plane-onoff:
    - shard-dg1:          NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +22 other tests skip
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_psr@fbc-pr-cursor-plane-onoff.html

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

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-rkl:          NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +28 other tests skip
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_psr@pr-cursor-mmap-gtt:
    - shard-tglu-1:       NOTRUN -> [SKIP][368] ([i915#9732]) +13 other tests skip
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_psr@pr-cursor-mmap-gtt.html

  * igt@kms_psr@psr-primary-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +29 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt@kms_psr@psr-primary-mmap-cpu.html

  * igt@kms_psr@psr2-cursor-render:
    - shard-tglu:         NOTRUN -> [SKIP][370] ([i915#9732]) +11 other tests skip
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt@kms_psr@psr2-cursor-render.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-tglu-1:       NOTRUN -> [SKIP][371] ([i915#5289])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
    - shard-dg1:          NOTRUN -> [SKIP][372] ([i915#5289])
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          NOTRUN -> [SKIP][373] ([i915#12755]) +2 other tests skip
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2:          NOTRUN -> [SKIP][374] ([i915#5190]) +2 other tests skip
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-tglu:         NOTRUN -> [SKIP][375] ([i915#5289]) +1 other test skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-rkl:          NOTRUN -> [SKIP][376] ([i915#5289])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
    - shard-mtlp:         NOTRUN -> [SKIP][377] ([i915#12755])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

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

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-tglu-1:       NOTRUN -> [SKIP][379] ([i915#8623])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
    - shard-dg1:          NOTRUN -> [SKIP][380] ([i915#8623])
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][381] ([i915#12276])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html

  * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          [PASS][382] -> [INCOMPLETE][383] ([i915#12276])
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk1/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk9/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_vrr@flip-basic:
    - shard-mtlp:         NOTRUN -> [SKIP][384] ([i915#3555] / [i915#8808])
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt@kms_vrr@flip-basic.html

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

  * igt@kms_vrr@lobf:
    - shard-rkl:          NOTRUN -> [SKIP][386] ([i915#11920])
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt@kms_vrr@lobf.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-rkl:          NOTRUN -> [SKIP][387] ([i915#9906]) +2 other tests skip
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html
    - shard-tglu:         NOTRUN -> [SKIP][388] ([i915#9906])
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-drrs.html

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

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2:          NOTRUN -> [SKIP][390] ([i915#2437])
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt@kms_writeback@writeback-fb-id.html
    - shard-tglu-1:       NOTRUN -> [SKIP][391] ([i915#2437])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html
    - shard-dg1:          NOTRUN -> [SKIP][392] ([i915#2437])
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-dg1:          NOTRUN -> [SKIP][393] ([i915#2437] / [i915#9412])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-glk:          NOTRUN -> [SKIP]

== Logs ==

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

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

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

* Re: [PATCH i-g-t] tests/xe: Add xe_cg_dmem test
  2025-01-15 11:55 [PATCH i-g-t] tests/xe: Add xe_cg_dmem test Maarten Lankhorst
                   ` (4 preceding siblings ...)
  2025-01-17 12:31 ` ✗ i915.CI.Full: " Patchwork
@ 2025-01-17 18:01 ` Kamil Konieczny
  5 siblings, 0 replies; 7+ messages in thread
From: Kamil Konieczny @ 2025-01-17 18:01 UTC (permalink / raw)
  To: Maarten Lankhorst; +Cc: igt-dev

Hi Maarten,
On 2025-01-15 at 12:55:11 +0100, Maarten Lankhorst wrote:

I have not read it, I have only few comments on test names for now.

> This adds test to ensure the basic functionality of dmem works as

s/dmem/cgroup limits for device memory/

> expected on discrete platforms.

Could you give a link to lore.kernel.org for kernel patchset?

> 
> Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
> ---
>  tests/intel/xe_cg_dmem.c | 379 +++++++++++++++++++++++++++++++++++++++

Test name is imho a little too much a shortcut, what about
xe_cgroups or xe_cgroup2?

>  tests/meson.build        |   1 +
>  2 files changed, 380 insertions(+)
>  create mode 100644 tests/intel/xe_cg_dmem.c
> 
> diff --git a/tests/intel/xe_cg_dmem.c b/tests/intel/xe_cg_dmem.c
> new file mode 100644
> index 000000000..2924fd973
> --- /dev/null
> +++ b/tests/intel/xe_cg_dmem.c
> @@ -0,0 +1,379 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2023 Intel Corporation
------------------^^^^
Is it first public release? If yes, it should be 2025.

> + */
> +
> +/**
> + * TEST: Check cgroup VRAM allocation limits
> + * Category: Software building block
> + * Sub-category: cgroup
> + * Test category: functionality test
> + * Run type: BAT
> + * Description: Test that the dmem cgroup works as intended.
> + * Mega feature: General Core features
> + * Functionality: cgroup

Sort alphabetically.

> +*/
> +
> +#include <string.h>

Same here, sort system header string.h after fcntl.h
You could have unistd.h as first (this is an exception)

> +#include <unistd.h>
> +#include <fcntl.h>
> +#include <sys/stat.h>
> +
> +#include "igt.h"
> +#include "igt_device.h"
> +#include "igt_sysfs.h"
> +
> +#include "xe_drm.h"
> +#include "xe/xe_ioctl.h"
> +#include "xe/xe_query.h"
> +
> +static int cgfd = -1, igtcg = -1, cg1 = -1, cg1_1 = -1, cg1_2 = -1, cg2 = -1;
> +static char cgid[64];
> +
> +/*
> + * cgroups:
> + *                                      / cg1_1
> + * /sys/fs/cgroup (cgfd) / igtcg / cg1 /- cg1_2
> + *                               / cg2
> + */
> +
> +static void set_cgrp(int cg)
> +{
> +	igt_sysfs_set_u32(cg, "cgroup.procs", getpid());
> +}
> +
> +static inline void set_cg_val(int cg, const char *resource, int64_t val)
> +{
> +	if (val >= 0)
> +		igt_assert(igt_sysfs_printf(cg, resource, "%s %"PRIu64, cgid, val));
> +	else
> +		igt_assert(igt_sysfs_printf(cg, resource, "%s max", cgid));
> +}
> +
> +static void set_cgrp_min(int cg, int64_t min)
> +{
> +	set_cg_val(cg, "dmem.min", min);
> +}
> +
> +static void set_cgrp_low(int cg, int64_t low)
> +{
> +	set_cg_val(cg, "dmem.low", low);
> +}
> +
> +static void set_cgrp_max(int cg, int64_t max)
> +{
> +	set_cg_val(cg, "dmem.max", max);
> +}
> +
> +static int64_t get_cg_val(int cg, const char *resource)
> +{
> +	char *devstr, *valstr, *str;
> +	int64_t val;
> +
> +	str = igt_sysfs_get(cg, resource);
> +	igt_assert(str);
> +	devstr = strstr(str, cgid);
> +	igt_assert(devstr);
> +
> +	/* Only care about the line describing this region, terminate if needed */
> +	devstr = strtok(devstr, "\n");
> +
> +	valstr = strstr(devstr, " ") + 1;
> +	if (!strcmp(valstr, "max"))
> +		val = INT64_MAX;
> +	else
> +		val = strtoll(valstr, NULL, 10);
> +
> +	free(str);
> +	return val;
> +}
> +
> +static int64_t get_cgrp_min(int cg)
> +{
> +	return get_cg_val(cg, "dmem.min");
> +}
> +
> +static int64_t get_cgrp_low(int cg)
> +{
> +	return get_cg_val(cg, "dmem.low");
> +}
> +
> +static int64_t get_cgrp_max(int cg)
> +{
> +	return get_cg_val(cg, "dmem.max");
> +}
> +
> +static int64_t get_cgrp_current(int cg)
> +{
> +	return get_cg_val(cg, "dmem.current");
> +}
> +
> +static void assert_all_cgs_empty(void)
> +{
> +	igt_assert(!get_cgrp_current(igtcg));
> +}
> +
> +static void reset_cgs(void)
> +{
> +	int i, fds[] = { igtcg, cg1, cg1_1, cg1_2, cg2 };
> +	set_cgrp(cgfd);
> +
> +	for (i = 0; i < ARRAY_SIZE(fds); i++) {
> +		int cg = fds[i];
> +
> +		set_cgrp_min(cg, 0);
> +		set_cgrp_low(cg, 0);
> +		set_cgrp_max(cg, -1);
> +	}
> +}
> +
> +static void cleanup_cg(int sig)
> +{
> +	/* Move self to root so we can rmdir */
> +	set_cgrp(cgfd);
> +
> +	unlinkat(cg1, "cg1_1", AT_REMOVEDIR);
> +	unlinkat(cg1, "cg1_2", AT_REMOVEDIR);
> +	unlinkat(igtcg, "cg1", AT_REMOVEDIR);
> +	unlinkat(igtcg, "cg2", AT_REMOVEDIR);
> +	unlinkat(cgfd, "igtcg", AT_REMOVEDIR);
> +
> +	/* leak fd's at exit, nobody cares */
> +}
> +
> +static int mkcgrp(int fd, const char *name)
> +{
> +	int err;
> +
> +	/* Check and enable controller */
> +	igt_require(igt_sysfs_set(fd, "cgroup.subtree_control", "+dmem"));
> +
> +	err = mkdirat(fd, name, 0755);
> +	if (!err || (err == -1 && errno == EEXIST))
> +		err = openat(fd, name, O_RDONLY);
> +	igt_assert(err >= 0);
> +	return err;
> +}
> +
> +static void create_cgroups(void)
> +{
> +	char *controllers;
> +	cgfd = open("/sys/fs/cgroup", O_RDONLY);
> +	igt_require(cgfd >= 0);
> +
> +	controllers = igt_sysfs_get(cgfd, "cgroup.controllers");
> +	igt_require(controllers && strstr(controllers, "dmem"));
> +	free(controllers);
> +
> +	igt_install_exit_handler(cleanup_cg);
> +
> +	/* Populate cg's */
> +	igtcg = mkcgrp(cgfd, "igtcg");
> +	cg1 = mkcgrp(igtcg, "cg1");
> +	cg1_1 = mkcgrp(cg1, "cg1_1");
> +	cg1_2 = mkcgrp(cg1, "cg1_2");
> +	cg2 = mkcgrp(igtcg, "cg2");
> +}
> +
> +static int bo_create_at(struct xe_device *xe, int cg, uint64_t bo_size)
> +{
> +	struct drm_xe_gem_create create = {
> +		.placement = vram_if_possible(xe->fd, 0),
> +		.cpu_caching = __xe_default_cpu_caching(xe->fd, create.placement, 0),
> +		.size = bo_size,
> +	};
> +
> +	set_cgrp(cg);
> +
> +	if (igt_ioctl(xe->fd, DRM_IOCTL_XE_GEM_CREATE, &create) < 0) {
> +		igt_debug("Creating bo with size %"PRIu64" returned -1/%m\n", bo_size);
> +		return -errno;
> +	}
> +
> +	igt_debug("Creating bo with size %"PRIu64" and handle %u\n", bo_size, create.handle);
> +	return create.handle;
> +}
> +
> +/**
> + * SUBTEST: functional
> + * Description: Test if written values can be read back,
> + * 	to rule out copy/paste errors.
> + */
> +static void test_functional(void)
> +{
> +	set_cgrp_min(igtcg, 12345);
> +	set_cgrp_low(igtcg, 54321);
> +	set_cgrp_max(igtcg, 67890);
> +
> +	igt_assert_eq_u64(get_cgrp_min(igtcg), 12345);
> +	igt_assert_eq_u64(get_cgrp_low(igtcg), 54321);
> +	igt_assert_eq_u64(get_cgrp_max(igtcg), 67890);
> +
> +	set_cgrp_min(igtcg, -1);
> +	set_cgrp_low(igtcg, -1);
> +	set_cgrp_max(igtcg, -1);
> +
> +	igt_assert_eq_u64(get_cgrp_min(igtcg), INT64_MAX);
> +	igt_assert_eq_u64(get_cgrp_low(igtcg), INT64_MAX);
> +	igt_assert_eq_u64(get_cgrp_max(igtcg), INT64_MAX);
> +
> +	set_cgrp_min(igtcg, 0);
> +	set_cgrp_low(igtcg, 0);
> +	set_cgrp_max(igtcg, 0);
> +	igt_assert_eq_u64(get_cgrp_low(igtcg), 0);
> +	igt_assert_eq_u64(get_cgrp_max(igtcg), 0);
> +	igt_assert_eq_u64(get_cgrp_min(igtcg), 0);
> +}
> +
> +/**
> + * SUBTEST: test-simple-max
> + * Description: Test that cgroup max limits are respected between
> + * 	various nestings of cgroups, and correct cgroups are evicted.
> + */
> +static void test_simple_max(struct xe_device *xe)
> +{
> +	uint64_t bo_size = xe->default_alignment;
> +	int bo1, bo1_1, bo1_2;
> +
> +	/* Test if we set cgroup limits, that they are respected */
> +	assert_all_cgs_empty();
> +
> +	reset_cgs();
> +
> +	set_cgrp_max(igtcg, 0);
> +	igt_assert(get_cgrp_max(igtcg) == 0);
> +	set_cgrp_max(cg1, 2 * bo_size);
> +	set_cgrp_max(cg1_1, 2 * bo_size);
> +	set_cgrp_max(cg1_2, bo_size);
> +	set_cgrp_max(cg2, -1);
> +	igt_assert(get_cgrp_max(cg2) == INT64_MAX);
> +
> +	/* First check if top cg limit (of igtcg) is not ignored */
> +	igt_assert_eq(-ENOMEM, bo_create_at(xe, cg1_1, bo_size));
> +
> +	assert_all_cgs_empty();
> +	set_cgrp_max(igtcg, 4 * bo_size);
> +
> +	/* Same cg limit? */
> +	bo1_1 = bo_create_at(xe, cg1_1, 2 * bo_size);
> +	igt_assert(bo1_1 > 0);
> +
> +	set_cgrp_max(cg1, 3 * bo_size);
> +	bo1_2 = bo_create_at(xe, cg1_2, bo_size);
> +	igt_assert(bo1_2 > 0);
> +
> +	/* Create a too big bo and check if 1_2 is evicted */
> +	igt_assert_eq(-ENOMEM, bo_create_at(xe, cg1_2, 4 * bo_size));
> +	igt_assert_eq_u64(0, get_cgrp_current(cg1_2));
> +
> +	gem_close(xe->fd, bo1_2);
> +	bo1_2 = bo_create_at(xe, cg1_2, bo_size);
> +	igt_assert(bo1_2 > 0);
> +
> +	set_cgrp_max(cg1, 4 * bo_size);
> +	bo1 = bo_create_at(xe, cg1_1, bo_size);
> +	igt_assert(bo1 > 0);
> +
> +	gem_close(xe->fd, bo1_2);
> +	gem_close(xe->fd, bo1_1);
> +	gem_close(xe->fd, bo1);
> +}
> +
> +static void create_cg1_min(struct xe_device *xe, int *bo1_1, int *bo1_2)
> +{
> +	uint64_t bo_size = xe->default_alignment;
> +
> +	if (*bo1_1 > 0)
> +		gem_close(xe->fd, *bo1_1);
> +
> +	if (*bo1_2 > 0)
> +		gem_close(xe->fd, *bo1_2);
> +
> +	*bo1_1 = bo_create_at(xe, cg1_1, bo_size);
> +	igt_assert(*bo1_1 > 0);
> +
> +	*bo1_2 = bo_create_at(xe, cg1_2, bo_size);
> +	igt_assert(*bo1_2 > 0);
> +}
> +
> +/**
> + * SUBTEST: test-simple-min
> + * Description: Test that cgroup min limits are respected between
> + * 	various nestings of cgroups, and correct cgroups are evicted.
> + */
> +static void test_simple_min(struct xe_device *xe)
> +{
> +	uint64_t bo_size = xe->default_alignment;
> +	int bo1_1 = -1, bo1_2 = -1, bo2;
> +
> +	assert_all_cgs_empty();
> +	reset_cgs();
> +
> +	/* set static max of 2 bo's for testing, allow protection as well on cg1 */
> +	set_cgrp_max(igtcg, 2 * bo_size);
> +	set_cgrp_min(igtcg, 2 * bo_size);
> +	set_cgrp_min(cg1, 2 * bo_size);
> +	set_cgrp_min(cg1_1, bo_size);
> +	set_cgrp_min(cg1_2, bo_size);
> +
> +	create_cg1_min(xe, &bo1_1, &bo1_2);
> +
> +	igt_assert_eq_u64(get_cgrp_current(cg1), 2 * bo_size);
> +
> +	bo2 = bo_create_at(xe, cg2, bo_size);
> +	igt_assert_eq_u64(get_cgrp_current(cg1), 2 * bo_size);
> +	igt_assert_eq(bo2, -ENOMEM);
> +
> +	/* Unprotect one */
> +	set_cgrp_min(cg1, bo_size);
> +	set_cgrp_min(cg1_2, 0);
> +
> +	bo2 = bo_create_at(xe, cg2, bo_size);
> +	/* Verify cg1_2 is evicted, cg1_1 not */
> +	igt_assert_eq_u64(get_cgrp_current(cg1_2), 0);
> +	igt_assert_eq_u64(get_cgrp_current(cg1), bo_size);
> +	igt_assert_eq_u64(get_cgrp_current(igtcg), 2 * bo_size);
> +	igt_assert(bo2 > 0);
> +
> +	gem_close(xe->fd, bo2);
> +	gem_close(xe->fd, bo1_1);
> +	gem_close(xe->fd, bo1_2);
> +}
> +
> +igt_main
> +{
> +	struct xe_device *xe;
> +	int fd;
> +
> +	igt_fixture {
> +		char *data;
> +		char busid[32];
> +
> +		fd = drm_open_driver(DRIVER_XE);
> +		xe = xe_device_get(fd);
> +
> +		/* XXX: Easier way to determine busid? */
> +		igt_device_get_pci_slot_name(fd, busid);
> +
> +		/* For now, require VRAM as shared memory lacks support */
> +		igt_require(xe->has_vram);
> +		sprintf(cgid, "drm/%s/vram0", busid);
> +
> +		create_cgroups();
> +
> +		data = igt_sysfs_get(cgfd, "dmem.capacity");
> +		igt_debug("Contents: %s\n", data);
> +		/* Ensure our driver is found" */
> +		igt_require_f(strstr(data, busid), "Is driver xe/%s supported by dmem controller?\n", busid);
> +		free(data);
> +	}
> +
> +	igt_subtest("functional")

imho better: dmem-basic

> +		test_functional();
> +
> +	igt_subtest("test-simple-max")

Here also: dmem-simple-max

> +		test_simple_max(xe);
> +
> +	igt_subtest("test-simple-min")

Here also: dmem-simple-min

Btw didn't we use lmem in i915 counterparts?

Regards,
Kamil

> +		test_simple_min(xe);
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index a6750d523..f2a0dea88 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -273,6 +273,7 @@ intel_kms_progs = [
>  intel_xe_progs = [
>  	'xe_wedged',
>  	'xe_ccs',
> +	'xe_cg_dmem',
>  	'xe_create',
>  	'xe_compute',
>  	'xe_compute_preempt',
> -- 
> 2.43.0
> 

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

end of thread, other threads:[~2025-01-17 18:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-15 11:55 [PATCH i-g-t] tests/xe: Add xe_cg_dmem test Maarten Lankhorst
2025-01-16 11:06 ` ✓ i915.CI.BAT: success for " Patchwork
2025-01-16 11:32 ` ✓ Xe.CI.BAT: " Patchwork
2025-01-16 15:11 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-16 15:18 ` Patchwork
2025-01-17 12:31 ` ✗ i915.CI.Full: " Patchwork
2025-01-17 18:01 ` [PATCH i-g-t] " Kamil Konieczny

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