Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v8] tests/intel/xe_exec_capture: Add xe_exec_capture test
@ 2024-12-06 17:53 Zhanjun Dong
  2024-12-06 18:42 ` ✓ i915.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7) Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Zhanjun Dong @ 2024-12-06 17:53 UTC (permalink / raw)
  To: igt-dev; +Cc: Zhanjun Dong, Alan Previn

Submit cmds to the GPU that result in a GuC engine reset and check that
devcoredump register dump is generated, by the GuC, and includes the
full register range.

Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>

---
Changes from prior revs:
 v8:-  Move change list below ---
 v7:-  Fix typo and removed unused macros
 v6:-  Adjust start_line to start from 0
       Use 7 bit engine_cid, start with random number
       Add ioerror detect on fgets
       Reorgnize the regular expression
       Remove unnecessary radom seed init
 v5:-  Detect devcoredump matches the testing engine
       Engine will run with random cid
 v4:-  Support runs on multiple GPU
       Load all devcoredump content to buffer
       Alloc line buffer dynamic vs static global memory
       Changed to igt_assert_f to provide more info if failed
 v3:-  Remove call to bash and awk
       Add regular express parse
       Detect devcoredump through card index
       Add devcoredump removal check
 v2:-  Fix CI.build error
       Add multiple GPU card support

 tests/intel/xe_exec_capture.c | 474 ++++++++++++++++++++++++++++++++++
 tests/meson.build             |   1 +
 2 files changed, 475 insertions(+)
 create mode 100644 tests/intel/xe_exec_capture.c

diff --git a/tests/intel/xe_exec_capture.c b/tests/intel/xe_exec_capture.c
new file mode 100644
index 000000000..de44137de
--- /dev/null
+++ b/tests/intel/xe_exec_capture.c
@@ -0,0 +1,474 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: Basic tests for GuC based register capture
+ * Category: Core
+ * Mega feature: General Core features
+ * Sub-category: CMD submission
+ * Functionality: Debug
+ * Test category: functionality test
+ */
+
+#include <ctype.h>
+#include <fcntl.h>
+#include <regex.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "igt.h"
+#include "igt_device.h"
+#include "lib/igt_syncobj.h"
+#include "lib/intel_reg.h"
+#include "linux_scaffold.h"
+#include "xe_drm.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+#include "xe/xe_spin.h"
+
+#define MAX_N_EXECQUEUES		16
+
+#define BASE_ADDRESS			0x1a0000
+#define ADDRESS_SHIFT			39
+#define CID_ADDRESS_MASK		0x7F
+/* Batch buffer element count, in number of dwords(u32) */
+#define BATCH_DW_COUNT			16
+
+#define MAX_TEMP_LEN			80
+#define MAX_SYSFS_PATH_LEN		128
+#define MAX_LINES			4096
+/* Max line buffer size (includes last '\0') */
+#define MAX_LINE_LEN			1024
+#define MAIN_BUF_SIZE			(MAX_LINES * MAX_LINE_LEN * sizeof(char))
+/*
+ * Devcoredump might have long line this test don't care.
+ * This buffer size used when load dump content
+ */
+#define LINE_BUF_SIZE			(64 * 1024)
+
+#define DUMP_PATH			"/sys/class/drm/card%d/device/devcoredump/data"
+#define START_TAG			"**** Job ****"
+#define END_TAG				"**** VM state ****"
+
+/* Optional Space */
+#define SPC_O				"[ \t]*"
+/* Required Space */
+#define SPC				"[ \t]+"
+/* Optional Non-Space */
+#define NSPC_O				"([^ \t]*)"
+/* Required Non-Space */
+#define NSPC				"([^ \t]+)"
+#define BEG				"^" SPC_O
+#define REQ_FIELD			NSPC SPC
+#define REQ_FIELD_LAST			NSPC SPC_O
+#define OPT_FIELD			NSPC_O SPC_O
+#define END				SPC_O "$"
+
+#define REGEX_NON_SPACE_GROUPS	BEG REQ_FIELD REQ_FIELD_LAST OPT_FIELD OPT_FIELD OPT_FIELD END
+#define REGEX_NON_SPACE_GROUPS_COUNT	6
+
+#define INDEX_KEY			1
+#define INDEX_VALUE			2
+#define INDEX_ENGINE_PHYSICAL		2
+#define INDEX_ENGINE_NAME		1
+#define INDEX_ENGINE_INSTANCE		4
+
+static char *safe_strncpy(char *dst, const char *src, int n)
+{
+	char *s;
+
+	igt_assert(n > 0);
+	igt_assert(dst && src);
+
+	s = strncpy(dst, src, n - 1);
+	s[n - 1] = '\0';
+
+	return s;
+}
+
+static const char *xe_engine_class_name(u32 engine_class)
+{
+	switch (engine_class) {
+	case DRM_XE_ENGINE_CLASS_RENDER:
+		return "rcs";
+	case DRM_XE_ENGINE_CLASS_COPY:
+		return "bcs";
+	case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
+		return "vcs";
+	case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
+		return "vecs";
+	case DRM_XE_ENGINE_CLASS_COMPUTE:
+		return "ccs";
+	default:
+		igt_warn("Engine class 0x%x unknown\n", engine_class);
+		return "unknown";
+	}
+}
+
+static void
+test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci, int n_exec_queues, int n_execs,
+		 unsigned int flags, u64 addr)
+{
+	u32 vm;
+	struct drm_xe_sync sync[2] = {
+		{ .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
+		{ .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
+	};
+	struct drm_xe_exec exec = {
+		.num_batch_buffer = 1,
+		.num_syncs = 2,
+		.syncs = to_user_pointer(sync),
+	};
+	u32 exec_queues[MAX_N_EXECQUEUES];
+	u32 syncobjs[MAX_N_EXECQUEUES];
+	size_t bo_size;
+	u32 bo = 0;
+	struct {
+		struct xe_spin spin;
+		u32 batch[BATCH_DW_COUNT];
+		u64 pad;
+		u32 data;
+	} *data;
+	struct xe_spin_opts spin_opts = { .preempt = false };
+	int i, b;
+
+	igt_assert_lte(n_exec_queues, MAX_N_EXECQUEUES);
+
+	vm = xe_vm_create(fd, 0, 0);
+	bo_size = sizeof(*data) * n_execs;
+	bo_size = xe_bb_size(fd, bo_size);
+
+	bo = xe_bo_create(fd, vm, bo_size,
+			  vram_if_possible(fd, eci->gt_id),
+			  DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+	data = xe_bo_map(fd, bo, bo_size);
+
+	for (i = 0; i < n_exec_queues; i++) {
+		exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
+		syncobjs[i] = syncobj_create(fd, 0);
+	};
+
+	sync[0].handle = syncobj_create(fd, 0);
+	xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+
+	for (i = 0; i < n_execs; i++) {
+		u64 base_addr = addr;
+		u64 batch_offset = (char *)&data[i].batch - (char *)data;
+		u64 batch_addr = base_addr + batch_offset;
+		u64 spin_offset = (char *)&data[i].spin - (char *)data;
+		u64 sdi_offset = (char *)&data[i].data - (char *)data;
+		u64 sdi_addr = base_addr + sdi_offset;
+		u64 exec_addr;
+		int e = i % n_exec_queues;
+
+		if (!i) {
+			spin_opts.addr = base_addr + spin_offset;
+			xe_spin_init(&data[i].spin, &spin_opts);
+			exec_addr = spin_opts.addr;
+		} else {
+			b = 0;
+			data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+			data[i].batch[b++] = sdi_addr;
+			data[i].batch[b++] = sdi_addr >> 32;
+			data[i].batch[b++] = 0xc0ffee;
+			data[i].batch[b++] = MI_BATCH_BUFFER_END;
+			igt_assert(b <= ARRAY_SIZE(data[i].batch));
+
+			exec_addr = batch_addr;
+		}
+
+		sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
+		sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
+		sync[1].handle = syncobjs[e];
+
+		exec.exec_queue_id = exec_queues[e];
+		exec.address = exec_addr;
+		if (e != i)
+			syncobj_reset(fd, &syncobjs[e], 1);
+		xe_exec(fd, &exec);
+	}
+
+	for (i = 0; i < n_exec_queues && n_execs; i++)
+		igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0,
+					NULL));
+	igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+
+	sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
+	xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
+	igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+
+	syncobj_destroy(fd, sync[0].handle);
+	for (i = 0; i < n_exec_queues; i++) {
+		syncobj_destroy(fd, syncobjs[i]);
+		xe_exec_queue_destroy(fd, exec_queues[i]);
+	}
+
+	munmap(data, bo_size);
+	gem_close(fd, bo);
+	xe_vm_destroy(fd, vm);
+}
+
+static char **alloc_lines_buffer(void)
+{
+	int i;
+	char **lines = (char **)malloc(MAX_LINES * sizeof(char *));
+	char *main_buf =  (char *)malloc(MAIN_BUF_SIZE);
+
+	igt_assert_f(lines, "Out of memory.\n");
+	igt_assert_f(main_buf, "Out of memory.\n");
+
+	/* set string array pointers */
+	for (i = 0; i < MAX_LINES; i++)
+		lines[i] = main_buf + i * MAX_LINE_LEN;
+
+	return lines;
+}
+
+static char *get_devcoredump_path(int card_id, char *buf)
+{
+	sprintf(buf, DUMP_PATH, card_id);
+	return buf;
+}
+
+static int load_all(FILE *fd, char **lines, char *buf)
+{
+	int start_line = 0, i = 0;
+	bool skip = true;
+
+	memset(lines[0], 0, MAIN_BUF_SIZE);
+	while (!feof(fd) && i < MAX_LINES) {
+		/*
+		 * Devcoredump might have long lines, load up to
+		 * LINE_BUF_SIZE for a single line
+		 */
+		if (!fgets(buf, LINE_BUF_SIZE, fd))
+			if (ferror(fd) != 0) {
+				igt_warn("Failed to read devcoredump file, error: %d\n",
+					 ferror(fd));
+				break;
+			}
+
+		if (skip) {
+			start_line++;
+			/* Skip all lines before START_TAG */
+			if (strncmp(START_TAG, buf, strlen(START_TAG)))
+				continue;
+			else
+				skip = false;
+		}
+
+		/* Only save up to MAX_LINE_LEN to buffer */
+		safe_strncpy(lines[i++], buf, MAX_LINE_LEN);
+
+		/* Stop on END_TAG */
+		if (!strncmp(END_TAG, buf, strlen(END_TAG)))
+			break;
+	}
+	return start_line;
+}
+
+static int access_devcoredump(char *path, char **lines, char *line_buf)
+{
+	int start_line = -1;
+	FILE *fd = fopen(path, "r");
+
+	if (!fd)
+		return false;
+
+	igt_debug("Devcoredump found: %s\n", path);
+
+	/* Clear memory before load file */
+	if (lines)
+		start_line = load_all(fd, lines, line_buf);
+
+	fclose(fd);
+	return start_line;
+}
+
+static bool rm_devcoredump(char *path)
+{
+	int fd = open(path, O_WRONLY);
+
+	if (fd != -1) {
+		igt_debug("Clearing devcoredump.\n");
+		write(fd, "0", 1);
+		close(fd);
+		return true;
+	}
+
+	return false;
+}
+
+static char
+*get_coredump_item(regex_t *regex, char **lines, const char *tag, int tag_index, int target_index)
+{
+	int i;
+	regmatch_t match[REGEX_NON_SPACE_GROUPS_COUNT];
+
+	for (i = 0; i < MAX_LINES; i++) {
+		char *line = lines[i];
+
+		/* Skip lines without tag */
+		if (!strstr(line, tag))
+			continue;
+
+		if ((regexec(regex, line, REGEX_NON_SPACE_GROUPS_COUNT, match, 0)) == 0) {
+			char *key = NULL, *value = NULL;
+
+			if (match[tag_index].rm_so >= 0) {
+				key = &line[match[tag_index].rm_so];
+				line[match[tag_index].rm_eo] = '\0';
+			}
+			if (match[target_index].rm_so >= 0) {
+				value = &line[match[target_index].rm_so];
+				line[match[target_index].rm_eo] = '\0';
+			}
+
+			if (key && value && strcmp(tag, key) == 0)
+				return value;
+			/* if key != tag,  keep searching and loop to next line */
+		}
+	}
+
+	return NULL;
+}
+
+static void
+check_item_u64(regex_t *regex, char **lines, const char *tag, u64 addr_lo, u64 addr_hi)
+{
+	u64 result;
+	char *output;
+
+	igt_assert_f((output = get_coredump_item(regex, lines, tag, INDEX_KEY, INDEX_VALUE)),
+		     "Target not found:%s\n", tag);
+	result = strtoul(output, NULL, 16);
+	igt_debug("Compare %s %s vs [0x%lX-0x%lX]\n", tag, output, addr_lo, addr_hi);
+	igt_assert_f((addr_lo <= result) && (result <= addr_hi),
+		     "value %lX out of range[0x%lX-0x%lX]\n", result, addr_lo, addr_hi);
+}
+
+static void
+check_item_str(regex_t *regex, char **lines, const char *tag, int tag_index, int target_index,
+	       const char *target, bool up_to_target_len)
+{
+	char buf[MAX_TEMP_LEN] = {0};
+	char *output;
+	int code;
+
+	igt_assert_f(output = get_coredump_item(regex, lines, tag, tag_index, target_index),
+		     "Target not found:%s\n", tag);
+
+	if (up_to_target_len) {
+		igt_assert_f(strlen(target) < MAX_TEMP_LEN, "Target too long.\n");
+		safe_strncpy(buf, output, MAX_TEMP_LEN);
+		buf[strlen(target)] = 0;
+		output = buf;
+	}
+	code = strncmp(output, target, strlen(target));
+	igt_debug("From tag '%s' found %s vs %s\n", tag, output, target);
+	igt_assert_f(code == 0, "Expected value:%s, received:%s\n", target, output);
+}
+
+/**
+ * SUBTEST: reset
+ * Description: Reset GuC, check devcoredump output values
+ */
+static void test_card(int fd)
+{
+	struct drm_xe_engine_class_instance *hwe;
+	regex_t regex;
+	int start_line;
+	int engine_cid = rand();
+	char **lines;
+	char *single_line_buf =  (char *)malloc(LINE_BUF_SIZE);
+	char temp[MAX_TEMP_LEN];
+	char path[MAX_SYSFS_PATH_LEN];
+
+	igt_assert_f(single_line_buf, "Out of memory.\n");
+
+	regcomp(&regex, REGEX_NON_SPACE_GROUPS, REG_EXTENDED | REG_NEWLINE);
+	get_devcoredump_path(igt_device_get_card_index(fd), path);
+	lines = alloc_lines_buffer();
+
+	/* clear old devcoredump, if any */
+	rm_devcoredump(path);
+
+	xe_for_each_engine(fd, hwe) {
+		/*
+		 * To test devcoredump register data, the test batch address is
+		 * used to compare with the dump, address bit 40 to 46 act as
+		 * context id, which start with an random number, increased 1
+		 * per engine. By this way, the address is unique for each
+		 * engine, and start with an random number on each run.
+		 */
+		const u64 addr = BASE_ADDRESS | ((u64)(engine_cid++ % CID_ADDRESS_MASK) <<
+						 ADDRESS_SHIFT);
+
+		igt_debug("Running on engine class: %x instance: %x\n", hwe->engine_class,
+			  hwe->engine_instance);
+
+		test_legacy_mode(fd, hwe, 1, 1, 0, addr);
+
+		/* assert devcoredump created */
+		igt_assert_f((start_line = access_devcoredump(path, lines, single_line_buf)) > 0,
+			     "Devcoredump not exist, errno=%d.\n", errno);
+
+		sprintf(temp, "instance=%d", hwe->engine_instance);
+		check_item_str(&regex, lines, "(physical),", INDEX_ENGINE_PHYSICAL,
+			       INDEX_ENGINE_INSTANCE, temp, false);
+		check_item_str(&regex, lines, "(physical),", INDEX_ENGINE_PHYSICAL,
+			       INDEX_ENGINE_NAME, xe_engine_class_name(hwe->engine_class), true);
+
+		check_item_str(&regex, lines, "Capture_source:", INDEX_KEY, INDEX_VALUE,
+			       "GuC", false);
+		check_item_u64(&regex, lines, "ACTHD:", addr,
+			       addr + BATCH_DW_COUNT * sizeof(u32));
+		check_item_u64(&regex, lines, "RING_BBADDR:", addr,
+			       addr + BATCH_DW_COUNT * sizeof(u32));
+
+		/* clear devcoredump */
+		rm_devcoredump(path);
+		sleep(1);
+		/* Assert devcoredump removed */
+		igt_assert_f(!access_devcoredump(path, NULL, NULL), "Devcoredump not removed\n");
+	}
+	/* Free lines buffer */
+	free(lines);
+	free(single_line_buf);
+	regfree(&regex);
+}
+
+igt_main
+{
+	int xe;
+
+	igt_fixture
+		xe = drm_open_driver(DRIVER_XE);
+
+	igt_subtest("reset") {
+		int gpu_count = drm_prepare_filtered_multigpu(DRIVER_XE);
+
+		igt_require(xe > 0);
+		if (gpu_count >= 2) {
+			igt_multi_fork(child, gpu_count) {
+				int gpu_fd;
+
+				gpu_fd = drm_open_filtered_card(child);
+				igt_assert_f(gpu_fd > 0, "cannot open gpu-%d, errno=%d\n", child,
+					     errno);
+				igt_assert(is_xe_device(gpu_fd));
+
+				test_card(gpu_fd);
+				drm_close_driver(gpu_fd);
+			}
+			igt_waitchildren();
+		} else {
+			test_card(xe);
+		}
+	}
+
+	igt_fixture
+		drm_close_driver(xe);
+}
diff --git a/tests/meson.build b/tests/meson.build
index 2724c7a9a..a6750d523 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -285,6 +285,7 @@ intel_xe_progs = [
 	'xe_exec_atomic',
 	'xe_exec_balancer',
 	'xe_exec_basic',
+	'xe_exec_capture',
 	'xe_exec_compute_mode',
 	'xe_exec_fault_mode',
 	'xe_exec_mix_modes',
-- 
2.34.1


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

* ✓ i915.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
  2024-12-06 17:53 [PATCH v8] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
@ 2024-12-06 18:42 ` Patchwork
  2024-12-06 18:47 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-12-06 18:42 UTC (permalink / raw)
  To: Zhanjun Dong; +Cc: igt-dev

== Series Details ==

Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
URL   : https://patchwork.freedesktop.org/series/140007/
State : success

== Summary ==

CI Bug Log - changes from IGT_8141 -> IGTPW_12271
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (44 -> 41)
------------------------------

  Missing    (3): fi-ivb-3770 fi-snb-2520m fi-pnv-d510 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [PASS][1] -> [ABORT][2] ([i915#12061]) +1 other test abort
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-mtlp-8/igt@i915_selftest@live.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/bat-mtlp-8/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-2:         [PASS][3] -> [ABORT][4] ([i915#12061]) +1 other test abort
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-arlh-2/igt@i915_selftest@live@workarounds.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/bat-arlh-2/igt@i915_selftest@live@workarounds.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence:
    - bat-dg2-11:         [PASS][5] -> [SKIP][6] ([i915#9197])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - bat-dg1-7:          [FAIL][7] ([i915#12903]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/bat-dg1-7/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live:
    - bat-twl-1:          [ABORT][9] ([i915#12435] / [i915#12919]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-twl-1/igt@i915_selftest@live.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/bat-twl-1/igt@i915_selftest@live.html

  * igt@i915_selftest@live@gt_pm:
    - bat-twl-2:          [ABORT][11] ([i915#12919]) -> [PASS][12] +1 other test pass
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-twl-2/igt@i915_selftest@live@gt_pm.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/bat-twl-2/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@requests:
    - bat-twl-1:          [ABORT][13] ([i915#12919]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-twl-1/igt@i915_selftest@live@requests.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/bat-twl-1/igt@i915_selftest@live@requests.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-5:         [ABORT][15] ([i915#12061]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/bat-arls-5/igt@i915_selftest@live@workarounds.html
    - {bat-mtlp-9}:       [ABORT][17] ([i915#12061]) -> [PASS][18] +1 other test pass
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/bat-mtlp-9/igt@i915_selftest@live@workarounds.html

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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8141 -> IGTPW_12271
  * Linux: CI_DRM_15799 -> CI_DRM_15803

  CI-20190529: 20190529
  CI_DRM_15799: e57b4b7cd137e0ae00d2601b4b55ab7f504da422 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_15803: 261a0301bda5af29477bd710465a8886e8609a4d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12271: cedc5aa23c601995e871c7fc19f77c987bf3638b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

* ✓ Xe.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
  2024-12-06 17:53 [PATCH v8] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
  2024-12-06 18:42 ` ✓ i915.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7) Patchwork
@ 2024-12-06 18:47 ` Patchwork
  2024-12-06 20:28 ` ✗ i915.CI.Full: failure " Patchwork
  2024-12-06 21:49 ` ✗ Xe.CI.Full: " Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-12-06 18:47 UTC (permalink / raw)
  To: Zhanjun Dong; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
URL   : https://patchwork.freedesktop.org/series/140007/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8141_BAT -> XEIGTPW_12271_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-flip-vs-dpms@a-edp1:
    - bat-lnl-1:          [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3729]) +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
    - bat-lnl-1:          [DMESG-WARN][3] ([Intel XE#3729]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html

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


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

  * IGT: IGT_8141 -> IGTPW_12271
  * Linux: xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422 -> xe-2335-261a0301bda5af29477bd710465a8886e8609a4d

  IGTPW_12271: cedc5aa23c601995e871c7fc19f77c987bf3638b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
  xe-2335-261a0301bda5af29477bd710465a8886e8609a4d: 261a0301bda5af29477bd710465a8886e8609a4d

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
  2024-12-06 17:53 [PATCH v8] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
  2024-12-06 18:42 ` ✓ i915.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7) Patchwork
  2024-12-06 18:47 ` ✓ Xe.CI.BAT: " Patchwork
@ 2024-12-06 20:28 ` Patchwork
  2024-12-06 22:20   ` Dong, Zhanjun
  2024-12-06 21:49 ` ✗ Xe.CI.Full: " Patchwork
  3 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2024-12-06 20:28 UTC (permalink / raw)
  To: Zhanjun Dong; +Cc: igt-dev

== Series Details ==

Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
URL   : https://patchwork.freedesktop.org/series/140007/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15803_full -> IGTPW_12271_full
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (9 -> 9)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_suspend@debugfs-reader:
    - shard-snb:          NOTRUN -> [ABORT][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb4/igt@i915_suspend@debugfs-reader.html

  
New tests
---------

  New tests have been introduced between CI_DRM_15803_full and IGTPW_12271_full:

### New IGT tests (6) ###

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [2.24] s

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [2.77] s

  * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@kms_psr@fbc-psr2-primary-mmap-cpu@edp-1:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@kms_psr@psr2-cursor-mmap-cpu@edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [1.68] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@drm_fdinfo@virtual-busy:
    - shard-mtlp:         NOTRUN -> [SKIP][5] ([i915#8414])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@drm_fdinfo@virtual-busy.html

  * igt@drm_fdinfo@virtual-busy-all:
    - shard-dg2:          NOTRUN -> [SKIP][6] ([i915#8414]) +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@drm_fdinfo@virtual-busy-all.html
    - shard-dg1:          NOTRUN -> [SKIP][7] ([i915#8414])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@drm_fdinfo@virtual-busy-all.html

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

  * igt@gem_caching@reads:
    - shard-mtlp:         NOTRUN -> [SKIP][10] ([i915#4873])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@gem_caching@reads.html

  * igt@gem_ccs@block-multicopy-inplace:
    - shard-rkl:          NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
    - shard-tglu-1:       NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
    - shard-dg1:          NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@gem_ccs@block-multicopy-inplace.html
    - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_ccs@block-multicopy-inplace.html

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][15] ([i915#13008])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html
    - shard-dg1:          NOTRUN -> [SKIP][16] ([i915#13008])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@gem_ccs@large-ctrl-surf-copy.html
    - shard-tglu:         NOTRUN -> [SKIP][17] ([i915#13008])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-3/igt@gem_ccs@large-ctrl-surf-copy.html
    - shard-mtlp:         NOTRUN -> [SKIP][18] ([i915#13008])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@gem_ccs@large-ctrl-surf-copy.html

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-dg2:          NOTRUN -> [SKIP][19] ([i915#7697])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
    - shard-rkl:          NOTRUN -> [SKIP][20] ([i915#7697])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html
    - shard-dg1:          NOTRUN -> [SKIP][21] ([i915#7697])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@gem_close_race@multigpu-basic-threads.html
    - shard-tglu:         NOTRUN -> [SKIP][22] ([i915#7697])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@gem_close_race@multigpu-basic-threads.html
    - shard-mtlp:         NOTRUN -> [SKIP][23] ([i915#7697])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_create@create-ext-cpu-access-sanity-check:
    - shard-tglu:         NOTRUN -> [SKIP][24] ([i915#6335])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-9/igt@gem_create@create-ext-cpu-access-sanity-check.html
    - shard-mtlp:         NOTRUN -> [SKIP][25] ([i915#6335])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
    - shard-rkl:          NOTRUN -> [SKIP][26] ([i915#6335])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html

  * igt@gem_ctx_freq@sysfs@gt0:
    - shard-tglu:         NOTRUN -> [ABORT][27] ([i915#13218]) +21 other tests abort
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/igt@gem_ctx_freq@sysfs@gt0.html

  * igt@gem_ctx_persistence@engines-mixed-process:
    - shard-snb:          NOTRUN -> [SKIP][28] ([i915#1099]) +7 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb5/igt@gem_ctx_persistence@engines-mixed-process.html

  * igt@gem_ctx_persistence@hang:
    - shard-dg2:          NOTRUN -> [SKIP][29] ([i915#8555])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_ctx_persistence@hang.html
    - shard-dg1:          NOTRUN -> [SKIP][30] ([i915#8555])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gem_ctx_persistence@hang.html

  * igt@gem_ctx_persistence@hostile:
    - shard-dg2:          NOTRUN -> [FAIL][31] ([i915#11980] / [i915#12580])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@gem_ctx_persistence@hostile.html
    - shard-dg1:          NOTRUN -> [FAIL][32] ([i915#11980] / [i915#12580])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@gem_ctx_persistence@hostile.html
    - shard-tglu:         NOTRUN -> [FAIL][33] ([i915#11980] / [i915#12580])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@gem_ctx_persistence@hostile.html
    - shard-mtlp:         NOTRUN -> [FAIL][34] ([i915#11980] / [i915#12580])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_ctx_persistence@hostile.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-dg2:          NOTRUN -> [SKIP][35] ([i915#280])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
    - shard-rkl:          NOTRUN -> [SKIP][36] ([i915#280])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@gem_ctx_sseu@invalid-sseu.html
    - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#280])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_exec_balancer@bonded-false-hang:
    - shard-dg2:          NOTRUN -> [ABORT][38] ([i915#13218]) +30 other tests abort
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_exec_balancer@bonded-false-hang.html

  * igt@gem_exec_balancer@invalid-balancer:
    - shard-mtlp:         NOTRUN -> [ABORT][39] ([i915#13218]) +24 other tests abort
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_exec_balancer@invalid-balancer.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-tglu:         NOTRUN -> [SKIP][40] ([i915#4525])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html

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

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

  * igt@gem_exec_flush@basic-wb-rw-before-default:
    - shard-dg1:          NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +2 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-before-default.html

  * igt@gem_exec_params@rsvd2-dirt:
    - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#5107])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_exec_params@rsvd2-dirt.html
    - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#5107])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html

  * igt@gem_exec_params@secure-non-master:
    - shard-dg2:          NOTRUN -> [SKIP][47] +3 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@gem_exec_params@secure-non-master.html

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

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

  * igt@gem_exec_suspend@basic-s4-devices:
    - shard-dg2:          NOTRUN -> [ABORT][50] ([i915#7975] / [i915#8213]) +1 other test abort
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices.html
    - shard-rkl:          NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) +1 other test abort
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_exec_suspend@basic-s4-devices@smem:
    - shard-snb:          NOTRUN -> [ABORT][52] ([i915#13242]) +9 other tests abort
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb2/igt@gem_exec_suspend@basic-s4-devices@smem.html

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

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-rkl:          NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@gem_lmem_swapping@parallel-multi.html
    - shard-tglu:         NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-5/igt@gem_lmem_swapping@parallel-multi.html
    - shard-glk:          NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk9/igt@gem_lmem_swapping@parallel-multi.html
    - shard-mtlp:         NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_mmap_gtt@basic-small-bo-tiledy:
    - shard-dg1:          NOTRUN -> [SKIP][58] ([i915#4077]) +5 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#4077]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_mmap_gtt@basic-small-bo-tiledy.html

  * igt@gem_mmap_gtt@fault-concurrent-x:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#4077]) +5 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_mmap_gtt@fault-concurrent-x.html

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

  * igt@gem_mmap_wc@write-prefaulted:
    - shard-dg2:          NOTRUN -> [SKIP][62] ([i915#4083]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html
    - shard-dg1:          NOTRUN -> [SKIP][63] ([i915#4083]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@gem_mmap_wc@write-prefaulted.html

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

  * igt@gem_pwrite@basic-random:
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#3282]) +4 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@gem_pwrite@basic-random.html

  * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
    - shard-rkl:          NOTRUN -> [TIMEOUT][67] ([i915#12917] / [i915#12964]) +1 other test timeout
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
    - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#4270])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
    - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#4270])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html

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

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

  * igt@gem_render_copy@yf-tiled-ccs-to-linear:
    - shard-mtlp:         NOTRUN -> [SKIP][72] ([i915#8428]) +4 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-linear.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-rkl:          NOTRUN -> [SKIP][73] ([i915#8411]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
    - shard-dg1:          NOTRUN -> [SKIP][74] ([i915#4079])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
    - shard-mtlp:         NOTRUN -> [SKIP][75] ([i915#4079])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-tglu:         NOTRUN -> [SKIP][76] ([i915#3297] / [i915#3323])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-glk:          NOTRUN -> [SKIP][77] ([i915#3323])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-mtlp:         NOTRUN -> [SKIP][78] ([i915#3297])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#3297])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-rkl:          NOTRUN -> [SKIP][80] ([i915#3297] / [i915#3323])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-dg1:          NOTRUN -> [SKIP][81] ([i915#3297])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_vm_create@invalid-create:
    - shard-snb:          NOTRUN -> [SKIP][82] +389 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb2/igt@gem_vm_create@invalid-create.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-dg2:          NOTRUN -> [SKIP][83] ([i915#2856])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gen9_exec_parse@bb-start-param.html
    - shard-rkl:          NOTRUN -> [SKIP][84] ([i915#2527]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html
    - shard-dg1:          NOTRUN -> [SKIP][85] ([i915#2527])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gen9_exec_parse@bb-start-param.html

  * igt@i915_fb_tiling:
    - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4881])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@i915_fb_tiling.html
    - shard-dg1:          NOTRUN -> [SKIP][87] ([i915#4881])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_fb_tiling.html

  * igt@i915_module_load@load:
    - shard-dg1:          ([PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110]) -> ([PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [DMESG-WARN][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133]) ([i915#4423])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-12/igt@i915_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-14/igt@i915_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-14/igt@i915_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-18/igt@i915_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-13/igt@i915_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-18/igt@i915_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-14/igt@i915_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-13/igt@i915_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-12/igt@i915_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-12/igt@i915_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-14/igt@i915_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-13/igt@i915_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-12/igt@i915_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-18/igt@i915_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-13/igt@i915_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-14/igt@i915_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-18/igt@i915_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@i915_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@i915_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@i915_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@i915_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@i915_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@i915_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@i915_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@i915_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@i915_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@i915_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@i915_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@i915_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@i915_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@load.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          NOTRUN -> [SKIP][134] ([i915#6412])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@i915_module_load@resize-bar.html
    - shard-dg1:          NOTRUN -> [SKIP][135] ([i915#7178])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@resize-bar.html
    - shard-tglu:         NOTRUN -> [SKIP][136] ([i915#6412])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-5/igt@i915_module_load@resize-bar.html
    - shard-mtlp:         NOTRUN -> [SKIP][137] ([i915#6412])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-5/igt@i915_module_load@resize-bar.html

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

  * igt@i915_pm_rps@engine-order:
    - shard-snb:          NOTRUN -> [ABORT][140] ([i915#13218]) +14 other tests abort
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb7/igt@i915_pm_rps@engine-order.html

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

  * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
    - shard-dg1:          NOTRUN -> [SKIP][142] ([i915#4212])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
    - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#4212])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-glk:          NOTRUN -> [FAIL][144] ([i915#12238])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs:
    - shard-glk:          NOTRUN -> [FAIL][145] ([i915#11859])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
    - shard-rkl:          NOTRUN -> [SKIP][146] ([i915#5286]) +1 other test skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-dg1:          NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5286]) +1 other test skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html

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

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][149] ([i915#3638])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][150] ([i915#3638]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-mtlp:         NOTRUN -> [SKIP][151] +9 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#4538] / [i915#5190]) +6 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-tglu-1:       NOTRUN -> [SKIP][153] +10 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
    - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#4538]) +4 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

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

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
    - shard-glk:          NOTRUN -> [SKIP][156] +191 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html

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

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#10307] / [i915#6095]) +44 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][159] ([i915#12805])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#12805])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-dg2:          NOTRUN -> [SKIP][161] ([i915#12805])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][162] ([i915#12805])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][163] ([i915#6095]) +13 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][164] ([i915#12313]) +2 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][165] ([i915#12313])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#12313]) +1 other test skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][167] ([i915#6095]) +30 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#12313]) +2 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][169] ([i915#12313]) +2 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
    - shard-tglu-1:       NOTRUN -> [SKIP][170] ([i915#12313])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

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

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

  * igt@kms_chamelium_audio@hdmi-audio:
    - shard-dg2:          NOTRUN -> [SKIP][173] ([i915#7828]) +5 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_chamelium_audio@hdmi-audio.html
    - shard-rkl:          NOTRUN -> [SKIP][174] ([i915#7828]) +6 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_chamelium_audio@hdmi-audio.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-tglu:         NOTRUN -> [SKIP][175] ([i915#7828]) +3 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-dg1:          NOTRUN -> [SKIP][176] ([i915#7828]) +4 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm:
    - shard-mtlp:         NOTRUN -> [SKIP][177] ([i915#7828]) +3 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
    - shard-tglu-1:       NOTRUN -> [SKIP][178] ([i915#7828])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][179] ([i915#3299])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-rkl:          NOTRUN -> [SKIP][180] ([i915#3116])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-dg1:          NOTRUN -> [SKIP][181] ([i915#3299])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-tglu:         NOTRUN -> [SKIP][182] ([i915#3116] / [i915#3299])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-mtlp:         NOTRUN -> [SKIP][183] ([i915#3299])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][184] ([i915#6944] / [i915#9424])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          NOTRUN -> [SKIP][185] ([i915#7118] / [i915#9424]) +1 other test skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-5/igt@kms_content_protection@type1.html
    - shard-rkl:          NOTRUN -> [SKIP][186] ([i915#7118] / [i915#9424])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-1/igt@kms_content_protection@type1.html
    - shard-dg1:          NOTRUN -> [SKIP][187] ([i915#7116] / [i915#9424]) +1 other test skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@kms_content_protection@type1.html
    - shard-tglu:         NOTRUN -> [SKIP][188] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-3/igt@kms_content_protection@type1.html
    - shard-mtlp:         NOTRUN -> [SKIP][189] ([i915#3555] / [i915#6944] / [i915#9424])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-6/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-mtlp:         NOTRUN -> [SKIP][190] ([i915#8814]) +2 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          NOTRUN -> [SKIP][191] ([i915#13049])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-rkl:          NOTRUN -> [SKIP][192] ([i915#13049])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-dg1:          NOTRUN -> [SKIP][193] ([i915#13049]) +1 other test skip
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-tglu:         NOTRUN -> [SKIP][194] ([i915#13049])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-mtlp:         NOTRUN -> [SKIP][195] ([i915#13049])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-tglu:         NOTRUN -> [SKIP][196] ([i915#3555]) +2 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x32.html
    - shard-mtlp:         NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8814])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][198] +10 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-rkl:          NOTRUN -> [SKIP][199] ([i915#4103])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-rkl:          NOTRUN -> [SKIP][200] ([i915#9723])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
    - shard-dg1:          NOTRUN -> [SKIP][201] ([i915#9723])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
    - shard-dg2:          NOTRUN -> [SKIP][202] ([i915#9833])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-rkl:          NOTRUN -> [SKIP][203] ([i915#3555]) +2 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html
    - shard-dg1:          NOTRUN -> [SKIP][204] ([i915#3555]) +1 other test skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@kms_display_modes@extended-mode-basic.html
    - shard-mtlp:         NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8827])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_fbcon_fbt@psr:
    - shard-rkl:          NOTRUN -> [SKIP][206] ([i915#3955])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
    - shard-tglu:         NOTRUN -> [SKIP][207] ([i915#3469])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2:          NOTRUN -> [SKIP][208] ([i915#1839])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@kms_feature_discovery@display-3x.html
    - shard-rkl:          NOTRUN -> [SKIP][209] ([i915#1839])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
    - shard-tglu:         NOTRUN -> [SKIP][210] ([i915#1839])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_feature_discovery@display-3x.html
    - shard-mtlp:         NOTRUN -> [SKIP][211] ([i915#1839])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_feature_discovery@display-3x.html

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

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

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][215] ([i915#3637]) +1 other test skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-fences:
    - shard-mtlp:         NOTRUN -> [SKIP][216] ([i915#8381])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_flip@2x-flip-vs-fences.html
    - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#8381])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-dg2:          NOTRUN -> [SKIP][218] ([i915#9934]) +2 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

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

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][220] ([i915#12745])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
    - shard-dg2:          NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555]) +1 other test skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][223] ([i915#2672]) +1 other test skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][224] ([i915#2587] / [i915#2672] / [i915#3555])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][225] ([i915#2672] / [i915#8813]) +2 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
    - shard-dg1:          NOTRUN -> [SKIP][227] ([i915#2587] / [i915#2672]) +2 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
    - shard-tglu:         NOTRUN -> [SKIP][228] ([i915#2587] / [i915#2672]) +3 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html

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

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

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8810] / [i915#8813])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-6/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-mtlp:         NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8810])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +3 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
    - shard-tglu:         NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +2 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][235] ([i915#2672]) +3 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-dg2:          NOTRUN -> [SKIP][236] ([i915#5274])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][237] ([i915#8708]) +9 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
    - shard-rkl:          NOTRUN -> [SKIP][238] ([i915#1825]) +25 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][239] ([i915#1825]) +19 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
    - shard-tglu:         NOTRUN -> [SKIP][240] +40 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-rkl:          NOTRUN -> [DMESG-FAIL][241] ([i915#12964])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-tglu:         NOTRUN -> [ABORT][242] ([i915#10159] / [i915#13218])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][243] ([i915#10056])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-mtlp:         NOTRUN -> [ABORT][244] ([i915#10159] / [i915#13218])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][245] ([i915#8708]) +8 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
    - shard-dg1:          NOTRUN -> [SKIP][246] +19 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-rkl:          NOTRUN -> [SKIP][247] ([i915#9766])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
    - shard-dg1:          NOTRUN -> [SKIP][248] ([i915#9766])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
    - shard-dg2:          NOTRUN -> [SKIP][249] ([i915#9766])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][250] ([i915#3023]) +16 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
    - shard-dg2:          NOTRUN -> [SKIP][251] ([i915#3458]) +11 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#5354]) +24 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][253] ([i915#8708]) +3 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][254] ([i915#3458]) +11 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-suspend.html

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

  * igt@kms_hdr@static-toggle-dpms:
    - shard-mtlp:         NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_hdr@static-toggle-dpms.html
    - shard-dg2:          NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_hdr@static-toggle-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][260] ([i915#12339])
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_joiner@basic-ultra-joiner.html
    - shard-dg1:          NOTRUN -> [SKIP][261] ([i915#12339])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@kms_joiner@basic-ultra-joiner.html
    - shard-tglu:         NOTRUN -> [SKIP][262] ([i915#12339])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-9/igt@kms_joiner@basic-ultra-joiner.html
    - shard-mtlp:         NOTRUN -> [SKIP][263] ([i915#12339])
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_joiner@basic-ultra-joiner.html
    - shard-dg2:          NOTRUN -> [SKIP][264] ([i915#12339])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-mtlp:         NOTRUN -> [SKIP][265] ([i915#4816])
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-dg2:          NOTRUN -> [SKIP][266] ([i915#4816])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-rkl:          NOTRUN -> [SKIP][267] ([i915#4816])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-tglu-1:       NOTRUN -> [SKIP][268] ([i915#1839])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-dg1:          NOTRUN -> [SKIP][269] ([i915#1839]) +1 other test skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_alpha_blend@alpha-basic:
    - shard-glk:          NOTRUN -> [FAIL][270] ([i915#12178])
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][271] ([i915#7862]) +1 other test fail
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html

  * igt@kms_plane_alpha_blend@alpha-opaque-fb:
    - shard-glk:          NOTRUN -> [FAIL][272] ([i915#12169])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk4/igt@kms_plane_alpha_blend@alpha-opaque-fb.html

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

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-mtlp:         NOTRUN -> [SKIP][274] ([i915#9809]) +3 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
    - shard-dg2:          NOTRUN -> [SKIP][275] ([i915#5354] / [i915#9423])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
    - shard-tglu:         NOTRUN -> [SKIP][276] ([i915#12247]) +4 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-rkl:          NOTRUN -> [SKIP][277] ([i915#5354])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html
    - shard-dg1:          NOTRUN -> [SKIP][278] ([i915#5354])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@kms_pm_backlight@basic-brightness.html
    - shard-tglu:         NOTRUN -> [SKIP][279] ([i915#9812])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][280] ([i915#12343])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][281] ([i915#12343])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-dg2:          NOTRUN -> [SKIP][282] ([i915#12343])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-mtlp:         NOTRUN -> [FAIL][283] ([i915#12912])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_pm_dc@dc6-psr.html
    - shard-dg1:          NOTRUN -> [SKIP][284] ([i915#9685])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg2:          [PASS][285] -> [SKIP][286] ([i915#9519])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
    - shard-tglu:         NOTRUN -> [SKIP][287] ([i915#9519])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
    - shard-mtlp:         NOTRUN -> [SKIP][288] ([i915#9519])
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-rkl:          [PASS][289] -> [SKIP][290] ([i915#9519])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_prime@d3hot:
    - shard-rkl:          NOTRUN -> [SKIP][291] ([i915#6524])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-5/igt@kms_prime@d3hot.html
    - shard-dg1:          NOTRUN -> [SKIP][292] ([i915#6524])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_prime@d3hot.html
    - shard-tglu:         NOTRUN -> [SKIP][293] ([i915#6524])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/igt@kms_prime@d3hot.html
    - shard-mtlp:         NOTRUN -> [SKIP][294] ([i915#6524])
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_prime@d3hot.html
    - shard-dg2:          NOTRUN -> [SKIP][295] ([i915#6524] / [i915#6805])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
    - shard-dg2:          NOTRUN -> [SKIP][296] ([i915#11520]) +4 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
    - shard-rkl:          NOTRUN -> [SKIP][297] ([i915#11520]) +2 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][298] ([i915#9808]) +1 other test skip
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html

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

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][300] ([i915#12316]) +3 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-dg1:          NOTRUN -> [SKIP][301] ([i915#11520]) +2 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
    - shard-tglu:         NOTRUN -> [SKIP][302] ([i915#11520]) +2 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/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-snb:          NOTRUN -> [SKIP][303] ([i915#11520]) +10 other tests skip
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@fbc-pr-cursor-render:
    - shard-mtlp:         NOTRUN -> [SKIP][304] ([i915#9688]) +17 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_psr@fbc-pr-cursor-render.html

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

  * igt@kms_psr@fbc-psr-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][306] ([i915#1072] / [i915#9732]) +13 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_psr@fbc-psr-suspend.html

  * igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][307] ([i915#1072] / [i915#9732]) +11 other tests skip
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html

  * igt@kms_psr@pr-basic:
    - shard-tglu-1:       NOTRUN -> [SKIP][308] ([i915#9732])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_psr@pr-basic.html

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

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

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-dg2:          NOTRUN -> [SKIP][312] ([i915#9906])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-rkl:          NOTRUN -> [SKIP][313] ([i915#9906])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-tglu:         NOTRUN -> [SKIP][314] ([i915#9906])
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-mtlp:         NOTRUN -> [SKIP][315] ([i915#8808] / [i915#9906])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf_pmu@busy-idle-no-semaphores@rcs0:
    - shard-glk:          NOTRUN -> [ABORT][316] ([i915#13218]) +21 other tests abort
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk2/igt@perf_pmu@busy-idle-no-semaphores@rcs0.html

  * igt@perf_pmu@cpu-hotplug:
    - shard-mtlp:         NOTRUN -> [SKIP][317] ([i915#8850])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html

  * igt@perf_pmu@idle:
    - shard-rkl:          NOTRUN -> [ABORT][318] ([i915#13218]) +27 other tests abort
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@perf_pmu@idle.html

  * igt@perf_pmu@idle@rcs0:
    - shard-tglu-1:       NOTRUN -> [ABORT][319] ([i915#13218]) +4 other tests abort
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@perf_pmu@idle@rcs0.html
    - shard-dg1:          NOTRUN -> [ABORT][320] ([i915#13218]) +27 other tests abort
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@perf_pmu@idle@rcs0.html

  * igt@prime_vgem@basic-fence-mmap:
    - shard-mtlp:         NOTRUN -> [SKIP][321] ([i915#3708] / [i915#4077])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
    - shard-dg2:          NOTRUN -> [SKIP][322] ([i915#3708] / [i915#4077])
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-fence-read:
    - shard-dg2:          NOTRUN -> [SKIP][323] ([i915#3291] / [i915#3708])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@prime_vgem@basic-fence-read.html
    - shard-mtlp:         NOTRUN -> [SKIP][324] ([i915#3708])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@basic-write:
    - shard-rkl:          NOTRUN -> [SKIP][325] ([i915#3291] / [i915#3708]) +1 other test skip
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-5/igt@prime_vgem@basic-write.html
    - shard-dg1:          NOTRUN -> [SKIP][326] ([i915#3708]) +1 other test skip
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@prime_vgem@basic-write.html
    - shard-mtlp:         NOTRUN -> [SKIP][327] ([i915#10216] / [i915#3708])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@prime_vgem@basic-write.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-rkl:          NOTRUN -> [SKIP][328] ([i915#9917])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
    - shard-dg1:          NOTRUN -> [SKIP][329] ([i915#9917])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-on.html

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

  * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2:
    - shard-mtlp:         NOTRUN -> [FAIL][331] ([i915#12910]) +9 other tests fail
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2.html

  
#### Possible fixes ####

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-dg2:          [SKIP][332] ([i915#9519]) -> [PASS][333]
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@kms_pm_rpm@dpms-non-lpsp.html

  
#### Warnings ####

  * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
    - shard-dg2:          [SKIP][334] ([i915#10433] / [i915#3458]) -> [SKIP][335] ([i915#3458]) +1 other test skip
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html

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

  [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
  [i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
  [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
  [i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
  [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
  [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
  [i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238
  [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12580
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#12912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12912
  [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
  [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218
  [i915#13242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13242
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
  [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
  [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
  [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
  [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
  [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8827]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8827
  [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8141 -> IGTPW_12271
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_15803: 261a0301bda5af29477bd710465a8886e8609a4d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12271: cedc5aa23c601995e871c7fc19f77c987bf3638b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

* ✗ Xe.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
  2024-12-06 17:53 [PATCH v8] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
                   ` (2 preceding siblings ...)
  2024-12-06 20:28 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-12-06 21:49 ` Patchwork
  2024-12-06 22:21   ` Dong, Zhanjun
  3 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2024-12-06 21:49 UTC (permalink / raw)
  To: Zhanjun Dong; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
URL   : https://patchwork.freedesktop.org/series/140007/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8141_full -> XEIGTPW_12271_full
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-3.html

  * igt@kms_lease@lease-revoke@pipe-c-dp-2:
    - shard-bmg:          [PASS][2] -> [DMESG-WARN][3] +3 other tests dmesg-warn
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_lease@lease-revoke@pipe-c-dp-2.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_lease@lease-revoke@pipe-c-dp-2.html

  * igt@kms_pm_rpm@universal-planes-dpms@plane-41:
    - shard-lnl:          NOTRUN -> [DMESG-WARN][4]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-lnl:          [PASS][5] -> [FAIL][6] +1 other test fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-move.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-lnl:          NOTRUN -> [ABORT][7] +2 other tests abort
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@xe_oa@buffer-fill:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][8] +3 other tests dmesg-warn
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_oa@buffer-fill.html

  
#### Warnings ####

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-bmg:          [SKIP][9] ([Intel XE#1130]) -> [ABORT][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@xe_wedged@wedged-at-any-timeout.html

  
New tests
---------

  New tests have been introduced between XEIGT_8141_full and XEIGTPW_12271_full:

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

  * igt@xe_exec_capture@reset:
    - Statuses : 2 pass(s)
    - Exec time: [39.87, 50.11] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#1125])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#1466])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2233])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
    - shard-lnl:          NOTRUN -> [FAIL][14] ([Intel XE#3719]) +3 other tests fail
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
    - shard-lnl:          NOTRUN -> [FAIL][15] ([Intel XE#911]) +3 other tests fail
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html

  * igt@kms_async_flips@crc-atomic@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][16] ([Intel XE#3468]) +38 other tests dmesg-warn
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_async_flips@crc-atomic@pipe-c-dp-2.html

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#664])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_async_flips@test-cursor.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#3658])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#1407]) +6 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-64bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [DMESG-WARN][21] ([Intel XE#1725])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_big_fb@linear-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#1477])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#1124]) +13 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#1124]) +13 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [PASS][25] -> [SKIP][26] ([Intel XE#2314] / [Intel XE#2894])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#2191])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#1512]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2314] / [Intel XE#2894])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#367])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#367]) +2 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#2669]) +3 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#3433]) +3 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2652] / [Intel XE#787]) +30 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#3432])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#3432]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#2887]) +22 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2887]) +22 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2724])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#314]) +3 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html

  * igt@kms_chamelium_color@degamma:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#306]) +2 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_color@gamma:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2325])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2252]) +14 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#373]) +16 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#307]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_content_protection@dp-mst-type-1.html
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2390]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2341]) +1 other test skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_content_protection@legacy.html
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#3278])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][49] ([Intel XE#1178]) +1 other test fail
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2320]) +4 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2321])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#2321])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#1424]) +6 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-bmg:          [PASS][54] -> [INCOMPLETE][55] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests incomplete
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#309]) +7 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-bmg:          [PASS][57] -> [SKIP][58] ([Intel XE#2291]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#2286]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2291]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#323])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][62] ([Intel XE#2141])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#1508])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#2323])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [PASS][65] -> [SKIP][66] ([Intel XE#3070])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#2244]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#2244]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          NOTRUN -> [FAIL][69] ([Intel XE#1695])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#2372])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_feature_discovery@chamelium.html
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#701])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [PASS][72] -> [SKIP][73] ([Intel XE#2373])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_feature_discovery@display-2x.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#2373])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@psr1:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2374])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2316])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
    - shard-bmg:          NOTRUN -> [FAIL][77] ([Intel XE#3321]) +2 other tests fail
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#1421]) +6 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
    - shard-bmg:          [PASS][79] -> [SKIP][80] ([Intel XE#2316]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@blocking-wf_vblank@a-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][81] ([Intel XE#2882])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_flip@blocking-wf_vblank@a-dp2.html

  * igt@kms_flip@bo-too-big-interruptible:
    - shard-lnl:          NOTRUN -> [TIMEOUT][82] ([Intel XE#1504]) +1 other test timeout
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_flip@bo-too-big-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [PASS][83] -> [FAIL][84] ([Intel XE#2882]) +1 other test fail
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
    - shard-bmg:          [PASS][85] -> [FAIL][86] ([Intel XE#3321])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-lnl:          NOTRUN -> [ABORT][87] ([Intel XE#3673]) +5 other tests abort
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
    - shard-bmg:          [PASS][88] -> [DMESG-WARN][89] ([Intel XE#3468]) +64 other tests dmesg-warn
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-1/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html

  * igt@kms_flip@plain-flip-ts-check@a-edp1:
    - shard-lnl:          [PASS][90] -> [FAIL][91] ([Intel XE#886]) +1 other test fail
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_flip@plain-flip-ts-check@a-edp1.html

  * igt@kms_flip@wf_vblank-ts-check:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][92] ([Intel XE#2705] / [Intel XE#3468])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/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-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#1397]) +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/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-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#2293]) +6 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][96] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#2380]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/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][98] ([Intel XE#1401]) +8 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/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-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#1401] / [Intel XE#1745]) +8 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [FAIL][102] ([Intel XE#2333]) +12 other tests fail
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#651]) +20 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#1469])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#2352])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][107] ([Intel XE#2050])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

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

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#2313]) +27 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

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

  * igt@kms_hdr@static-swap:
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#1503])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_hdr@static-swap.html

  * igt@kms_hdr@static-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][112] ([Intel XE#1503]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_hdr@static-toggle.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#2934])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#356])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-source-clamping:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][115] ([Intel XE#1035] / [Intel XE#2566] / [Intel XE#3468])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_plane@pixel-format-source-clamping.html

  * igt@kms_plane_lowres@tiling-none:
    - shard-bmg:          [PASS][116] -> [DMESG-WARN][117] ([Intel XE#2705] / [Intel XE#3468])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_plane_lowres@tiling-none.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_plane_lowres@tiling-none.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#599])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_plane_lowres@tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#2393])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#2763]) +15 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2763]) +14 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

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

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#736])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_rpm@drm-resources-equal:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][124] ([Intel XE#1727] / [Intel XE#3468])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_pm_rpm@drm-resources-equal.html

  * igt@kms_pm_rpm@legacy-planes-dpms:
    - shard-lnl:          [PASS][125] -> [DMESG-WARN][126] ([Intel XE#3184]) +1 other test dmesg-warn
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@kms_pm_rpm@legacy-planes-dpms.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms.html

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

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-lnl:          NOTRUN -> [SKIP][128] ([Intel XE#1439] / [Intel XE#3141])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-stress-extra-wait:
    - shard-bmg:          [PASS][129] -> [INCOMPLETE][130] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-1/igt@kms_pm_rpm@modeset-stress-extra-wait.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-lnl:          NOTRUN -> [DMESG-WARN][131] ([Intel XE#2042])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#2893]) +6 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

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

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-lnl:          NOTRUN -> [SKIP][134] ([Intel XE#1128]) +2 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#2387])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@pr-cursor-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][136] ([Intel XE#1406]) +4 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_psr@pr-cursor-plane-onoff.html

  * igt@kms_psr@psr2-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][137] ([Intel XE#2234] / [Intel XE#2850]) +21 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_psr@psr2-primary-page-flip.html

  * igt@kms_psr@psr2-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#2234])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_psr@psr2-primary-render.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][139] ([Intel XE#2330])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
    - shard-lnl:          NOTRUN -> [SKIP][140] ([Intel XE#1127])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-lnl:          NOTRUN -> [SKIP][141] ([Intel XE#3414]) +4 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          NOTRUN -> [SKIP][142] ([Intel XE#3414]) +2 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-bmg:          NOTRUN -> [SKIP][143] ([Intel XE#2413]) +1 other test skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][144] ([Intel XE#1435])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
    - shard-lnl:          NOTRUN -> [SKIP][145] ([Intel XE#1435])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-lnl:          NOTRUN -> [SKIP][146] ([Intel XE#330])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html
    - shard-bmg:          NOTRUN -> [SKIP][147] ([Intel XE#2450])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@ts-continuation-dpms-rpm:
    - shard-bmg:          [PASS][148] -> [DMESG-FAIL][149] ([Intel XE#1727] / [Intel XE#3468])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_vblank@ts-continuation-dpms-rpm.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm.html

  * igt@kms_vblank@wait-busy-hang:
    - shard-bmg:          [PASS][150] -> [DMESG-FAIL][151] ([Intel XE#3468]) +18 other tests dmesg-fail
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_vblank@wait-busy-hang.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html

  * igt@kms_vblank@wait-idle-hang@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][152] ([Intel XE#3468]) +11 other tests dmesg-fail
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          NOTRUN -> [SKIP][153] ([Intel XE#2168])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_vrr@lobf.html
    - shard-lnl:          NOTRUN -> [SKIP][154] ([Intel XE#1499])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_vrr@lobf.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [PASS][155] -> [SKIP][156] ([Intel XE#1499])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_vrr@negative-basic.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-bmg:          NOTRUN -> [SKIP][157] ([Intel XE#1499]) +2 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-lnl:          NOTRUN -> [SKIP][158] ([Intel XE#756]) +1 other test skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-bmg:          NOTRUN -> [SKIP][159] ([Intel XE#756])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_writeback@writeback-pixel-formats.html

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

  * igt@xe_eudebug@basic-connect:
    - shard-lnl:          NOTRUN -> [SKIP][161] ([Intel XE#2905]) +12 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@xe_eudebug@basic-connect.html

  * igt@xe_eudebug@discovery-empty:
    - shard-bmg:          NOTRUN -> [SKIP][162] ([Intel XE#2905]) +11 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@xe_eudebug@discovery-empty.html

  * igt@xe_evict@evict-beng-cm-threads-small:
    - shard-lnl:          NOTRUN -> [SKIP][163] ([Intel XE#688]) +15 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@xe_evict@evict-beng-cm-threads-small.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          NOTRUN -> [TIMEOUT][164] ([Intel XE#1473])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-bmg:          NOTRUN -> [TIMEOUT][165] ([Intel XE#1473] / [Intel XE#2472])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][166] ([Intel XE#1392]) +10 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html

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

  * igt@xe_exec_threads@threads-cm-userptr:
    - shard-bmg:          [PASS][168] -> [DMESG-WARN][169] ([Intel XE#2705])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_exec_threads@threads-cm-userptr.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_exec_threads@threads-cm-userptr.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-bmg:          [PASS][170] -> [DMESG-WARN][171] ([Intel XE#3467]) +1 other test dmesg-warn
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][172] ([Intel XE#3467] / [Intel XE#3468])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][173] ([Intel XE#3343])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html

  * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][174] ([Intel XE#3467])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html

  * igt@xe_media_fill@media-fill:
    - shard-lnl:          NOTRUN -> [SKIP][175] ([Intel XE#560])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@xe_media_fill@media-fill.html
    - shard-bmg:          NOTRUN -> [SKIP][176] ([Intel XE#2459] / [Intel XE#2596])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@xe_media_fill@media-fill.html

  * igt@xe_mmap@small-bar:
    - shard-lnl:          NOTRUN -> [SKIP][177] ([Intel XE#512])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@xe_mmap@small-bar.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][178] ([Intel XE#2248])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-lnl:          NOTRUN -> [SKIP][179] ([Intel XE#1420] / [Intel XE#2838])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@xe_pat@pat-index-xehpc.html
    - shard-bmg:          NOTRUN -> [SKIP][180] ([Intel XE#1420])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pm@d3hot-mmap-system:
    - shard-bmg:          [PASS][181] -> [DMESG-WARN][182] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-warn
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_pm@d3hot-mmap-system.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@xe_pm@d3hot-mmap-system.html

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

  * igt@xe_pm@s2idle-basic:
    - shard-lnl:          NOTRUN -> [ABORT][184] ([Intel XE#1358] / [Intel XE#3673])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][185] ([Intel XE#2284]) +2 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@s2idle-d3hot-basic-exec:
    - shard-lnl:          NOTRUN -> [ABORT][186] ([Intel XE#1358] / [Intel XE#1616])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-4/igt@xe_pm@s2idle-d3hot-basic-exec.html

  * igt@xe_pm@s3-basic:
    - shard-bmg:          [PASS][187] -> [DMESG-WARN][188] ([Intel XE#3468] / [Intel XE#569])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_pm@s3-basic.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@xe_pm@s3-basic.html

  * igt@xe_pm@s3-basic-exec:
    - shard-bmg:          [PASS][189] -> [DMESG-WARN][190] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_pm@s3-basic-exec.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s3-vm-bind-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][191] ([Intel XE#584])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-5/igt@xe_pm@s3-vm-bind-prefetch.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][192] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_query@multigpu-query-invalid-size:
    - shard-lnl:          NOTRUN -> [SKIP][193] ([Intel XE#944]) +6 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@xe_query@multigpu-query-invalid-size.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-bmg:          NOTRUN -> [SKIP][194] ([Intel XE#944]) +6 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@xe_query@multigpu-query-mem-usage.html

  
#### Possible fixes ####

  * igt@core_getclient:
    - shard-bmg:          [DMESG-WARN][195] -> [PASS][196] +46 other tests pass
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@core_getclient.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@core_getclient.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-bmg:          [INCOMPLETE][197] ([Intel XE#1727]) -> [PASS][198]
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][199] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][200]
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-bmg:          [SKIP][201] ([Intel XE#2291]) -> [PASS][202] +4 other tests pass
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
    - shard-bmg:          [DMESG-FAIL][203] ([Intel XE#3468]) -> [PASS][204] +11 other tests pass
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html

  * igt@kms_flip@2x-flip-vs-wf_vblank:
    - shard-bmg:          [SKIP][205] ([Intel XE#2316]) -> [PASS][206] +3 other tests pass
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-lnl:          [FAIL][207] ([Intel XE#886]) -> [PASS][208] +1 other test pass
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-bmg:          [FAIL][209] ([Intel XE#2882]) -> [PASS][210]
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [DMESG-FAIL][211] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][212] +2 other tests pass
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_lease@lease-unleased-connector@pipe-c-dp-2:
    - shard-bmg:          [DMESG-WARN][213] ([Intel XE#3468]) -> [PASS][214] +84 other tests pass
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_lease@lease-unleased-connector@pipe-c-dp-2.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_lease@lease-unleased-connector@pipe-c-dp-2.html

  * igt@kms_plane_lowres@tiling-x:
    - shard-bmg:          [DMESG-FAIL][215] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][216]
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_plane_lowres@tiling-x.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_plane_lowres@tiling-x.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
    - shard-bmg:          [DMESG-WARN][217] ([Intel XE#2566] / [Intel XE#3468]) -> [PASS][218]
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [FAIL][219] ([Intel XE#718]) -> [PASS][220]
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@cursor:
    - shard-bmg:          [DMESG-WARN][221] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][222]
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_pm_rpm@cursor.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_pm_rpm@cursor.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-bmg:          [SKIP][223] ([Intel XE#1435]) -> [PASS][224]
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-lnl:          [FAIL][225] ([Intel XE#899]) -> [PASS][226]
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
    - shard-bmg:          [DMESG-WARN][227] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][228]
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
    - shard-bmg:          [DMESG-WARN][229] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][230]
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html

  * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
    - shard-bmg:          [DMESG-WARN][231] ([Intel XE#3467]) -> [PASS][232] +1 other test pass
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-bmg:          [DMESG-WARN][233] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][234]
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_pm@s3-vm-bind-unbind-all.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-bmg:          [DMESG-WARN][235] ([Intel XE#2280] / [Intel XE#3468]) -> [PASS][236]
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_pm@s4-vm-bind-unbind-all.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_prime_self_import@reimport-vs-gem_close-race:
    - shard-bmg:          [DMESG-WARN][237] ([Intel XE#1727]) -> [PASS][238] +2 other tests pass
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_prime_self_import@reimport-vs-gem_close-race.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@xe_prime_self_import@reimport-vs-gem_close-race.html

  
#### Warnings ####

  * igt@kms_big_fb@linear-8bpp-rotate-180:
    - shard-bmg:          [DMESG-WARN][239] ([Intel XE#3468]) -> [DMESG-FAIL][240] ([Intel XE#3468])
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_big_fb@linear-8bpp-rotate-180.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-180.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-bmg:          [SKIP][241] ([Intel XE#2291]) -> [DMESG-WARN][242] ([Intel XE#3468])
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
    - shard-bmg:          [DMESG-FAIL][243] ([Intel XE#3468]) -> [FAIL][244] ([Intel XE#2141]) +1 other test fail
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [SKIP][245] ([Intel XE#2316]) -> [DMESG-WARN][246] ([Intel XE#3468])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [SKIP][247] ([Intel XE#2316]) -> [FAIL][248] ([Intel XE#2882])
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [DMESG-WARN][249] ([Intel XE#3468]) -> [SKIP][250] ([Intel XE#2316])
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
    - shard-bmg:          [SKIP][251] ([Intel XE#2311]) -> [SKIP][252] ([Intel XE#2312]) +8 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [DMESG-FAIL][253] ([Intel XE#3468]) -> [FAIL][254] ([Intel XE#2333]) +8 other tests fail
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          [FAIL][255] ([Intel XE#2333]) -> [DMESG-FAIL][256] ([Intel XE#3468]) +3 other tests dmesg-fail
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][257] ([Intel XE#2312]) -> [FAIL][258] ([Intel XE#2333]) +4 other tests fail
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [FAIL][259] ([Intel XE#2333]) -> [SKIP][260] ([Intel XE#2312]) +3 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][261] ([Intel XE#2312]) -> [DMESG-FAIL][262] ([Intel XE#3468]) +1 other test dmesg-fail
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][263] ([Intel XE#2312]) -> [SKIP][264] ([Intel XE#2311]) +11 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][265] ([Intel XE#2312]) -> [SKIP][266] ([Intel XE#2313]) +12 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][267] ([Intel XE#2313]) -> [SKIP][268] ([Intel XE#2312]) +10 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@xe_evict@evict-beng-threads-large:
    - shard-bmg:          [TIMEOUT][269] ([Intel XE#1473]) -> [INCOMPLETE][270] ([Intel XE#1473] / [Intel XE#3468])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-1/igt@xe_evict@evict-beng-threads-large.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html

  * igt@xe_evict@evict-threads-large:
    - shard-bmg:          [FAIL][271] ([Intel XE#1000]) -> [TIMEOUT][272] ([Intel XE#1473] / [Intel XE#2472])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_evict@evict-threads-large.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/igt@xe_evict@evict-threads-large.html

  * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate:
    - shard-bmg:          [DMESG-WARN][273] -> [DMESG-WARN][274] ([Intel XE#3468]) +1 other test dmesg-warn
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html

  * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
    - shard-bmg:          [DMESG-WARN][275] ([Intel XE#3468]) -> [DMESG-WARN][276] ([Intel XE#3467])
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html

  * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
    - shard-bmg:          [DMESG-WARN][277] ([Intel XE#3467]) -> [DMESG-WARN][278] ([Intel XE#3467] / [Intel XE#3468])
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html

  * igt@xe_pm@s2idle-exec-after:
    - shard-bmg:          [ABORT][279] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][280] ([Intel XE#3673]) +1 other test abort
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_pm@s2idle-exec-after.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@xe_pm@s2idle-exec-after.html

  * igt@xe_pm@s2idle-mocs:
    - shard-bmg:          [ABORT][281] ([Intel XE#3673]) -> [ABORT][282] ([Intel XE#3468] / [Intel XE#3673])
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-3/igt@xe_pm@s2idle-mocs.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@xe_pm@s2idle-mocs.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-bmg:          [ABORT][283] ([Intel XE#1616]) -> [ABORT][284] ([Intel XE#1616] / [Intel XE#3468])
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  
  [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [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#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
  [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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
  [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
  [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
  [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
  [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
  [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
  [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
  [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
  [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
  [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [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#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
  [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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
  [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#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
  [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
  [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [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#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
  [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [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#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [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#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8141 -> IGTPW_12271
  * Linux: xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422 -> xe-2335-261a0301bda5af29477bd710465a8886e8609a4d

  IGTPW_12271: cedc5aa23c601995e871c7fc19f77c987bf3638b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
  xe-2335-261a0301bda5af29477bd710465a8886e8609a4d: 261a0301bda5af29477bd710465a8886e8609a4d

== Logs ==

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

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

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

* Re: ✗ i915.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
  2024-12-06 20:28 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-12-06 22:20   ` Dong, Zhanjun
  0 siblings, 0 replies; 7+ messages in thread
From: Dong, Zhanjun @ 2024-12-06 22:20 UTC (permalink / raw)
  To: igt-dev

This patch add xe_exec_capture for Xe and not make changes on i915 igt 
code, all i915 failures is not related to this patch.

Regards,
Zhanjun Dong

On 2024-12-06 3:28 p.m., Patchwork wrote:
> == Series Details ==
> 
> Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
> URL   : https://patchwork.freedesktop.org/series/140007/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_15803_full -> IGTPW_12271_full
> ====================================================
> 
> Summary
> -------
> 
>    **FAILURE**
> 
>    Serious unknown changes coming with IGTPW_12271_full absolutely need to be
>    verified manually.
>    
>    If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_12271_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_12271/index.html
> 
> Participating hosts (9 -> 9)
> ------------------------------
> 
>    No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>    Here are the unknown changes that may have been introduced in IGTPW_12271_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>    * igt@i915_suspend@debugfs-reader:
>      - shard-snb:          NOTRUN -> [ABORT][1]
>     [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb4/igt@i915_suspend@debugfs-reader.html
> 
>    
> New tests
> ---------
> 
>    New tests have been introduced between CI_DRM_15803_full and IGTPW_12271_full:
> 
> ### New IGT tests (6) ###
> 
>    * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-2:
>      - Statuses : 1 pass(s)
>      - Exec time: [2.24] s
> 
>    * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-edp-1:
>      - Statuses : 1 pass(s)
>      - Exec time: [2.77] s
> 
>    * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1:
>      - Statuses : 1 skip(s)
>      - Exec time: [0.0] s
> 
>    * igt@kms_psr@fbc-psr2-primary-mmap-cpu@edp-1:
>      - Statuses : 1 skip(s)
>      - Exec time: [0.0] s
> 
>    * igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1:
>      - Statuses : 1 skip(s)
>      - Exec time: [0.0] s
> 
>    * igt@kms_psr@psr2-cursor-mmap-cpu@edp-1:
>      - Statuses : 1 pass(s)
>      - Exec time: [1.68] s
> 
>    
> 
> Known issues
> ------------
> 
>    Here are the changes found in IGTPW_12271_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>    * igt@api_intel_bb@blit-reloc-keep-cache:
>      - shard-dg1:          NOTRUN -> [SKIP][2] ([i915#8411])
>     [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@api_intel_bb@blit-reloc-keep-cache.html
>      - shard-mtlp:         NOTRUN -> [SKIP][3] ([i915#8411])
>     [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@api_intel_bb@blit-reloc-keep-cache.html
>      - shard-dg2:          NOTRUN -> [SKIP][4] ([i915#8411])
>     [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@api_intel_bb@blit-reloc-keep-cache.html
> 
>    * igt@drm_fdinfo@virtual-busy:
>      - shard-mtlp:         NOTRUN -> [SKIP][5] ([i915#8414])
>     [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@drm_fdinfo@virtual-busy.html
> 
>    * igt@drm_fdinfo@virtual-busy-all:
>      - shard-dg2:          NOTRUN -> [SKIP][6] ([i915#8414]) +1 other test skip
>     [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@drm_fdinfo@virtual-busy-all.html
>      - shard-dg1:          NOTRUN -> [SKIP][7] ([i915#8414])
>     [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@drm_fdinfo@virtual-busy-all.html
> 
>    * igt@gem_bad_reloc@negative-reloc-lut:
>      - shard-rkl:          NOTRUN -> [SKIP][8] ([i915#3281]) +2 other tests skip
>     [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html
>      - shard-dg1:          NOTRUN -> [SKIP][9] ([i915#3281]) +2 other tests skip
>     [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gem_bad_reloc@negative-reloc-lut.html
> 
>    * igt@gem_caching@reads:
>      - shard-mtlp:         NOTRUN -> [SKIP][10] ([i915#4873])
>     [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@gem_caching@reads.html
> 
>    * igt@gem_ccs@block-multicopy-inplace:
>      - shard-rkl:          NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
>     [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
>      - shard-tglu-1:       NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
>     [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
>      - shard-dg1:          NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
>     [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@gem_ccs@block-multicopy-inplace.html
>      - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323])
>     [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_ccs@block-multicopy-inplace.html
> 
>    * igt@gem_ccs@large-ctrl-surf-copy:
>      - shard-rkl:          NOTRUN -> [SKIP][15] ([i915#13008])
>     [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html
>      - shard-dg1:          NOTRUN -> [SKIP][16] ([i915#13008])
>     [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@gem_ccs@large-ctrl-surf-copy.html
>      - shard-tglu:         NOTRUN -> [SKIP][17] ([i915#13008])
>     [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-3/igt@gem_ccs@large-ctrl-surf-copy.html
>      - shard-mtlp:         NOTRUN -> [SKIP][18] ([i915#13008])
>     [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@gem_ccs@large-ctrl-surf-copy.html
> 
>    * igt@gem_close_race@multigpu-basic-threads:
>      - shard-dg2:          NOTRUN -> [SKIP][19] ([i915#7697])
>     [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
>      - shard-rkl:          NOTRUN -> [SKIP][20] ([i915#7697])
>     [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html
>      - shard-dg1:          NOTRUN -> [SKIP][21] ([i915#7697])
>     [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@gem_close_race@multigpu-basic-threads.html
>      - shard-tglu:         NOTRUN -> [SKIP][22] ([i915#7697])
>     [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@gem_close_race@multigpu-basic-threads.html
>      - shard-mtlp:         NOTRUN -> [SKIP][23] ([i915#7697])
>     [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_close_race@multigpu-basic-threads.html
> 
>    * igt@gem_create@create-ext-cpu-access-sanity-check:
>      - shard-tglu:         NOTRUN -> [SKIP][24] ([i915#6335])
>     [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-9/igt@gem_create@create-ext-cpu-access-sanity-check.html
>      - shard-mtlp:         NOTRUN -> [SKIP][25] ([i915#6335])
>     [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
>      - shard-rkl:          NOTRUN -> [SKIP][26] ([i915#6335])
>     [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
> 
>    * igt@gem_ctx_freq@sysfs@gt0:
>      - shard-tglu:         NOTRUN -> [ABORT][27] ([i915#13218]) +21 other tests abort
>     [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/igt@gem_ctx_freq@sysfs@gt0.html
> 
>    * igt@gem_ctx_persistence@engines-mixed-process:
>      - shard-snb:          NOTRUN -> [SKIP][28] ([i915#1099]) +7 other tests skip
>     [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb5/igt@gem_ctx_persistence@engines-mixed-process.html
> 
>    * igt@gem_ctx_persistence@hang:
>      - shard-dg2:          NOTRUN -> [SKIP][29] ([i915#8555])
>     [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_ctx_persistence@hang.html
>      - shard-dg1:          NOTRUN -> [SKIP][30] ([i915#8555])
>     [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gem_ctx_persistence@hang.html
> 
>    * igt@gem_ctx_persistence@hostile:
>      - shard-dg2:          NOTRUN -> [FAIL][31] ([i915#11980] / [i915#12580])
>     [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@gem_ctx_persistence@hostile.html
>      - shard-dg1:          NOTRUN -> [FAIL][32] ([i915#11980] / [i915#12580])
>     [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@gem_ctx_persistence@hostile.html
>      - shard-tglu:         NOTRUN -> [FAIL][33] ([i915#11980] / [i915#12580])
>     [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@gem_ctx_persistence@hostile.html
>      - shard-mtlp:         NOTRUN -> [FAIL][34] ([i915#11980] / [i915#12580])
>     [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_ctx_persistence@hostile.html
> 
>    * igt@gem_ctx_sseu@invalid-sseu:
>      - shard-dg2:          NOTRUN -> [SKIP][35] ([i915#280])
>     [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
>      - shard-rkl:          NOTRUN -> [SKIP][36] ([i915#280])
>     [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@gem_ctx_sseu@invalid-sseu.html
>      - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#280])
>     [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gem_ctx_sseu@invalid-sseu.html
> 
>    * igt@gem_exec_balancer@bonded-false-hang:
>      - shard-dg2:          NOTRUN -> [ABORT][38] ([i915#13218]) +30 other tests abort
>     [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_exec_balancer@bonded-false-hang.html
> 
>    * igt@gem_exec_balancer@invalid-balancer:
>      - shard-mtlp:         NOTRUN -> [ABORT][39] ([i915#13218]) +24 other tests abort
>     [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_exec_balancer@invalid-balancer.html
> 
>    * igt@gem_exec_balancer@parallel-ordering:
>      - shard-tglu:         NOTRUN -> [SKIP][40] ([i915#4525])
>     [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html
> 
>    * igt@gem_exec_fence@concurrent:
>      - shard-mtlp:         NOTRUN -> [SKIP][41] ([i915#4812])
>     [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_exec_fence@concurrent.html
>      - shard-dg1:          NOTRUN -> [SKIP][42] ([i915#4812])
>     [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gem_exec_fence@concurrent.html
> 
>    * igt@gem_exec_flush@basic-wb-ro-before-default:
>      - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +1 other test skip
>     [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_exec_flush@basic-wb-ro-before-default.html
> 
>    * igt@gem_exec_flush@basic-wb-rw-before-default:
>      - shard-dg1:          NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +2 other tests skip
>     [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-before-default.html
> 
>    * igt@gem_exec_params@rsvd2-dirt:
>      - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#5107])
>     [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_exec_params@rsvd2-dirt.html
>      - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#5107])
>     [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html
> 
>    * igt@gem_exec_params@secure-non-master:
>      - shard-dg2:          NOTRUN -> [SKIP][47] +3 other tests skip
>     [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@gem_exec_params@secure-non-master.html
> 
>    * igt@gem_exec_reloc@basic-cpu-gtt-active:
>      - shard-mtlp:         NOTRUN -> [SKIP][48] ([i915#3281]) +3 other tests skip
>     [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-gtt-active.html
> 
>    * igt@gem_exec_reloc@basic-gtt-cpu-active:
>      - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#3281]) +3 other tests skip
>     [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
> 
>    * igt@gem_exec_suspend@basic-s4-devices:
>      - shard-dg2:          NOTRUN -> [ABORT][50] ([i915#7975] / [i915#8213]) +1 other test abort
>     [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices.html
>      - shard-rkl:          NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) +1 other test abort
>     [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html
> 
>    * igt@gem_exec_suspend@basic-s4-devices@smem:
>      - shard-snb:          NOTRUN -> [ABORT][52] ([i915#13242]) +9 other tests abort
>     [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb2/igt@gem_exec_suspend@basic-s4-devices@smem.html
> 
>    * igt@gem_fence_thrash@bo-write-verify-threaded-none:
>      - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4860])
>     [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
> 
>    * igt@gem_lmem_swapping@parallel-multi:
>      - shard-rkl:          NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip
>     [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@gem_lmem_swapping@parallel-multi.html
>      - shard-tglu:         NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip
>     [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-5/igt@gem_lmem_swapping@parallel-multi.html
>      - shard-glk:          NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
>     [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk9/igt@gem_lmem_swapping@parallel-multi.html
>      - shard-mtlp:         NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip
>     [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_lmem_swapping@parallel-multi.html
> 
>    * igt@gem_mmap_gtt@basic-small-bo-tiledy:
>      - shard-dg1:          NOTRUN -> [SKIP][58] ([i915#4077]) +5 other tests skip
>     [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
>      - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#4077]) +2 other tests skip
>     [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
> 
>    * igt@gem_mmap_gtt@fault-concurrent-x:
>      - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#4077]) +5 other tests skip
>     [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_mmap_gtt@fault-concurrent-x.html
> 
>    * igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
>      - shard-mtlp:         NOTRUN -> [SKIP][61] ([i915#4083]) +3 other tests skip
>     [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
> 
>    * igt@gem_mmap_wc@write-prefaulted:
>      - shard-dg2:          NOTRUN -> [SKIP][62] ([i915#4083]) +3 other tests skip
>     [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html
>      - shard-dg1:          NOTRUN -> [SKIP][63] ([i915#4083]) +1 other test skip
>     [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@gem_mmap_wc@write-prefaulted.html
> 
>    * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
>      - shard-rkl:          NOTRUN -> [SKIP][64] ([i915#3282]) +5 other tests skip
>     [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
>      - shard-dg1:          NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip
>     [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
> 
>    * igt@gem_pwrite@basic-random:
>      - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#3282]) +4 other tests skip
>     [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@gem_pwrite@basic-random.html
> 
>    * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
>      - shard-rkl:          NOTRUN -> [TIMEOUT][67] ([i915#12917] / [i915#12964]) +1 other test timeout
>     [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
>      - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#4270])
>     [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
>      - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#4270])
>     [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
> 
>    * igt@gem_readwrite@read-write:
>      - shard-mtlp:         NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip
>     [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_readwrite@read-write.html
> 
>    * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
>      - shard-dg2:          NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +4 other tests skip
>     [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
> 
>    * igt@gem_render_copy@yf-tiled-ccs-to-linear:
>      - shard-mtlp:         NOTRUN -> [SKIP][72] ([i915#8428]) +4 other tests skip
>     [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
> 
>    * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>      - shard-rkl:          NOTRUN -> [SKIP][73] ([i915#8411]) +1 other test skip
>     [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
>      - shard-dg1:          NOTRUN -> [SKIP][74] ([i915#4079])
>     [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
>      - shard-mtlp:         NOTRUN -> [SKIP][75] ([i915#4079])
>     [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
> 
>    * igt@gem_userptr_blits@dmabuf-sync:
>      - shard-tglu:         NOTRUN -> [SKIP][76] ([i915#3297] / [i915#3323])
>     [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html
>      - shard-glk:          NOTRUN -> [SKIP][77] ([i915#3323])
>     [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html
>      - shard-mtlp:         NOTRUN -> [SKIP][78] ([i915#3297])
>     [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@gem_userptr_blits@dmabuf-sync.html
>      - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#3297])
>     [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@gem_userptr_blits@dmabuf-sync.html
>      - shard-rkl:          NOTRUN -> [SKIP][80] ([i915#3297] / [i915#3323])
>     [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
> 
>    * igt@gem_userptr_blits@readonly-pwrite-unsync:
>      - shard-dg1:          NOTRUN -> [SKIP][81] ([i915#3297])
>     [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@gem_userptr_blits@readonly-pwrite-unsync.html
> 
>    * igt@gem_vm_create@invalid-create:
>      - shard-snb:          NOTRUN -> [SKIP][82] +389 other tests skip
>     [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb2/igt@gem_vm_create@invalid-create.html
> 
>    * igt@gen9_exec_parse@bb-start-param:
>      - shard-dg2:          NOTRUN -> [SKIP][83] ([i915#2856])
>     [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@gen9_exec_parse@bb-start-param.html
>      - shard-rkl:          NOTRUN -> [SKIP][84] ([i915#2527]) +1 other test skip
>     [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html
>      - shard-dg1:          NOTRUN -> [SKIP][85] ([i915#2527])
>     [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@gen9_exec_parse@bb-start-param.html
> 
>    * igt@i915_fb_tiling:
>      - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4881])
>     [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@i915_fb_tiling.html
>      - shard-dg1:          NOTRUN -> [SKIP][87] ([i915#4881])
>     [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_fb_tiling.html
> 
>    * igt@i915_module_load@load:
>      - shard-dg1:          ([PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110]) -> ([PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [DMESG-WARN][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133]) ([i915#4423])
>     [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
>     [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-12/igt@i915_module_load@load.html
>     [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-14/igt@i915_module_load@load.html
>     [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-14/igt@i915_module_load@load.html
>     [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-18/igt@i915_module_load@load.html
>     [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-13/igt@i915_module_load@load.html
>     [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-18/igt@i915_module_load@load.html
>     [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-14/igt@i915_module_load@load.html
>     [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-13/igt@i915_module_load@load.html
>     [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-12/igt@i915_module_load@load.html
>     [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
>     [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-12/igt@i915_module_load@load.html
>     [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-14/igt@i915_module_load@load.html
>     [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
>     [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-13/igt@i915_module_load@load.html
>     [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-12/igt@i915_module_load@load.html
>     [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
>     [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-18/igt@i915_module_load@load.html
>     [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
>     [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-13/igt@i915_module_load@load.html
>     [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-14/igt@i915_module_load@load.html
>     [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-17/igt@i915_module_load@load.html
>     [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg1-18/igt@i915_module_load@load.html
>     [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@i915_module_load@load.html
>     [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@i915_module_load@load.html
>     [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@i915_module_load@load.html
>     [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_module_load@load.html
>     [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@i915_module_load@load.html
>     [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@i915_module_load@load.html
>     [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@i915_module_load@load.html
>     [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@load.html
>     [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@load.html
>     [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@i915_module_load@load.html
>     [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@load.html
>     [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_module_load@load.html
>     [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_module_load@load.html
>     [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@load.html
>     [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_module_load@load.html
>     [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@i915_module_load@load.html
>     [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@i915_module_load@load.html
>     [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@i915_module_load@load.html
>     [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@i915_module_load@load.html
>     [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@i915_module_load@load.html
>     [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@i915_module_load@load.html
>     [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@i915_module_load@load.html
>     [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@load.html
> 
>    * igt@i915_module_load@resize-bar:
>      - shard-rkl:          NOTRUN -> [SKIP][134] ([i915#6412])
>     [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@i915_module_load@resize-bar.html
>      - shard-dg1:          NOTRUN -> [SKIP][135] ([i915#7178])
>     [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@i915_module_load@resize-bar.html
>      - shard-tglu:         NOTRUN -> [SKIP][136] ([i915#6412])
>     [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-5/igt@i915_module_load@resize-bar.html
>      - shard-mtlp:         NOTRUN -> [SKIP][137] ([i915#6412])
>     [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-5/igt@i915_module_load@resize-bar.html
> 
>    * igt@i915_pm_freq_api@freq-reset-multiple:
>      - shard-rkl:          NOTRUN -> [SKIP][138] ([i915#8399])
>     [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html
>      - shard-tglu:         NOTRUN -> [SKIP][139] ([i915#8399])
>     [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-3/igt@i915_pm_freq_api@freq-reset-multiple.html
> 
>    * igt@i915_pm_rps@engine-order:
>      - shard-snb:          NOTRUN -> [ABORT][140] ([i915#13218]) +14 other tests abort
>     [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb7/igt@i915_pm_rps@engine-order.html
> 
>    * igt@i915_suspend@forcewake:
>      - shard-glk:          NOTRUN -> [INCOMPLETE][141] ([i915#4817])
>     [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk4/igt@i915_suspend@forcewake.html
> 
>    * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
>      - shard-dg1:          NOTRUN -> [SKIP][142] ([i915#4212])
>     [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
>      - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#4212])
>     [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
> 
>    * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
>      - shard-glk:          NOTRUN -> [FAIL][144] ([i915#12238])
>     [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
> 
>    * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs:
>      - shard-glk:          NOTRUN -> [FAIL][145] ([i915#11859])
>     [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html
> 
>    * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
>      - shard-rkl:          NOTRUN -> [SKIP][146] ([i915#5286]) +1 other test skip
>     [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
> 
>    * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
>      - shard-dg1:          NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5286]) +1 other test skip
>     [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
> 
>    * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
>      - shard-tglu:         NOTRUN -> [SKIP][148] ([i915#5286]) +1 other test skip
>     [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
> 
>    * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
>      - shard-rkl:          NOTRUN -> [SKIP][149] ([i915#3638])
>     [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
>      - shard-dg1:          NOTRUN -> [SKIP][150] ([i915#3638]) +1 other test skip
>     [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
> 
>    * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
>      - shard-mtlp:         NOTRUN -> [SKIP][151] +9 other tests skip
>     [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
> 
>    * igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
>      - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#4538] / [i915#5190]) +6 other tests skip
>     [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
> 
>    * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>      - shard-tglu-1:       NOTRUN -> [SKIP][153] +10 other tests skip
>     [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>      - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#4538]) +4 other tests skip
>     [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
> 
>    * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
>      - shard-tglu-1:       NOTRUN -> [SKIP][155] ([i915#6095]) +14 other tests skip
>     [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
> 
>    * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
>      - shard-glk:          NOTRUN -> [SKIP][156] +191 other tests skip
>     [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
> 
>    * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
>      - shard-tglu:         NOTRUN -> [SKIP][157] ([i915#6095]) +24 other tests skip
>     [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
> 
>    * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
>      - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#10307] / [i915#6095]) +44 other tests skip
>     [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
> 
>    * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>      - shard-tglu:         NOTRUN -> [SKIP][159] ([i915#12805])
>     [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
>      - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#12805])
>     [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
>      - shard-dg2:          NOTRUN -> [SKIP][161] ([i915#12805])
>     [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
>      - shard-rkl:          NOTRUN -> [SKIP][162] ([i915#12805])
>     [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
> 
>    * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
>      - shard-dg2:          NOTRUN -> [SKIP][163] ([i915#6095]) +13 other tests skip
>     [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html
> 
>    * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
>      - shard-dg1:          NOTRUN -> [SKIP][164] ([i915#12313]) +2 other tests skip
>     [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
>      - shard-tglu:         NOTRUN -> [SKIP][165] ([i915#12313])
>     [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
>      - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#12313]) +1 other test skip
>     [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
> 
>    * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
>      - shard-rkl:          NOTRUN -> [SKIP][167] ([i915#6095]) +30 other tests skip
>     [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html
> 
>    * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
>      - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#12313]) +2 other tests skip
>     [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
>      - shard-rkl:          NOTRUN -> [SKIP][169] ([i915#12313]) +2 other tests skip
>     [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
>      - shard-tglu-1:       NOTRUN -> [SKIP][170] ([i915#12313])
>     [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
> 
>    * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
>      - shard-dg1:          NOTRUN -> [SKIP][171] ([i915#6095]) +58 other tests skip
>     [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
> 
>    * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
>      - shard-mtlp:         NOTRUN -> [SKIP][172] ([i915#6095]) +44 other tests skip
>     [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
> 
>    * igt@kms_chamelium_audio@hdmi-audio:
>      - shard-dg2:          NOTRUN -> [SKIP][173] ([i915#7828]) +5 other tests skip
>     [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_chamelium_audio@hdmi-audio.html
>      - shard-rkl:          NOTRUN -> [SKIP][174] ([i915#7828]) +6 other tests skip
>     [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_chamelium_audio@hdmi-audio.html
> 
>    * igt@kms_chamelium_edid@dp-edid-resolution-list:
>      - shard-tglu:         NOTRUN -> [SKIP][175] ([i915#7828]) +3 other tests skip
>     [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/igt@kms_chamelium_edid@dp-edid-resolution-list.html
> 
>    * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
>      - shard-dg1:          NOTRUN -> [SKIP][176] ([i915#7828]) +4 other tests skip
>     [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
> 
>    * igt@kms_chamelium_hpd@hdmi-hpd-storm:
>      - shard-mtlp:         NOTRUN -> [SKIP][177] ([i915#7828]) +3 other tests skip
>     [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
>      - shard-tglu-1:       NOTRUN -> [SKIP][178] ([i915#7828])
>     [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
> 
>    * igt@kms_content_protection@dp-mst-lic-type-1:
>      - shard-dg2:          NOTRUN -> [SKIP][179] ([i915#3299])
>     [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
>      - shard-rkl:          NOTRUN -> [SKIP][180] ([i915#3116])
>     [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html
>      - shard-dg1:          NOTRUN -> [SKIP][181] ([i915#3299])
>     [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html
>      - shard-tglu:         NOTRUN -> [SKIP][182] ([i915#3116] / [i915#3299])
>     [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-1.html
>      - shard-mtlp:         NOTRUN -> [SKIP][183] ([i915#3299])
>     [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html
> 
>    * igt@kms_content_protection@legacy:
>      - shard-mtlp:         NOTRUN -> [SKIP][184] ([i915#6944] / [i915#9424])
>     [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_content_protection@legacy.html
> 
>    * igt@kms_content_protection@type1:
>      - shard-dg2:          NOTRUN -> [SKIP][185] ([i915#7118] / [i915#9424]) +1 other test skip
>     [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-5/igt@kms_content_protection@type1.html
>      - shard-rkl:          NOTRUN -> [SKIP][186] ([i915#7118] / [i915#9424])
>     [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-1/igt@kms_content_protection@type1.html
>      - shard-dg1:          NOTRUN -> [SKIP][187] ([i915#7116] / [i915#9424]) +1 other test skip
>     [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@kms_content_protection@type1.html
>      - shard-tglu:         NOTRUN -> [SKIP][188] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
>     [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-3/igt@kms_content_protection@type1.html
>      - shard-mtlp:         NOTRUN -> [SKIP][189] ([i915#3555] / [i915#6944] / [i915#9424])
>     [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-6/igt@kms_content_protection@type1.html
> 
>    * igt@kms_cursor_crc@cursor-offscreen-128x42:
>      - shard-mtlp:         NOTRUN -> [SKIP][190] ([i915#8814]) +2 other tests skip
>     [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html
> 
>    * igt@kms_cursor_crc@cursor-random-512x170:
>      - shard-dg2:          NOTRUN -> [SKIP][191] ([i915#13049])
>     [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
>      - shard-rkl:          NOTRUN -> [SKIP][192] ([i915#13049])
>     [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html
>      - shard-dg1:          NOTRUN -> [SKIP][193] ([i915#13049]) +1 other test skip
>     [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html
>      - shard-tglu:         NOTRUN -> [SKIP][194] ([i915#13049])
>     [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x170.html
>      - shard-mtlp:         NOTRUN -> [SKIP][195] ([i915#13049])
>     [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-512x170.html
> 
>    * igt@kms_cursor_crc@cursor-sliding-32x32:
>      - shard-tglu:         NOTRUN -> [SKIP][196] ([i915#3555]) +2 other tests skip
>     [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x32.html
>      - shard-mtlp:         NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8814])
>     [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
> 
>    * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
>      - shard-rkl:          NOTRUN -> [SKIP][198] +10 other tests skip
>     [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
> 
>    * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>      - shard-rkl:          NOTRUN -> [SKIP][199] ([i915#4103])
>     [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
> 
>    * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>      - shard-rkl:          NOTRUN -> [SKIP][200] ([i915#9723])
>     [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
>      - shard-dg1:          NOTRUN -> [SKIP][201] ([i915#9723])
>     [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
>      - shard-dg2:          NOTRUN -> [SKIP][202] ([i915#9833])
>     [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
> 
>    * igt@kms_display_modes@extended-mode-basic:
>      - shard-rkl:          NOTRUN -> [SKIP][203] ([i915#3555]) +2 other tests skip
>     [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html
>      - shard-dg1:          NOTRUN -> [SKIP][204] ([i915#3555]) +1 other test skip
>     [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@kms_display_modes@extended-mode-basic.html
>      - shard-mtlp:         NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8827])
>     [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html
> 
>    * igt@kms_fbcon_fbt@psr:
>      - shard-rkl:          NOTRUN -> [SKIP][206] ([i915#3955])
>     [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
>      - shard-tglu:         NOTRUN -> [SKIP][207] ([i915#3469])
>     [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_fbcon_fbt@psr.html
> 
>    * igt@kms_feature_discovery@display-3x:
>      - shard-dg2:          NOTRUN -> [SKIP][208] ([i915#1839])
>     [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@kms_feature_discovery@display-3x.html
>      - shard-rkl:          NOTRUN -> [SKIP][209] ([i915#1839])
>     [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
>      - shard-tglu:         NOTRUN -> [SKIP][210] ([i915#1839])
>     [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_feature_discovery@display-3x.html
>      - shard-mtlp:         NOTRUN -> [SKIP][211] ([i915#1839])
>     [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_feature_discovery@display-3x.html
> 
>    * igt@kms_flip@2x-blocking-absolute-wf_vblank:
>      - shard-tglu:         NOTRUN -> [SKIP][212] ([i915#3637]) +3 other tests skip
>     [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
> 
>    * igt@kms_flip@2x-flip-vs-dpms:
>      - shard-rkl:          NOTRUN -> [SKIP][213] ([i915#9934]) +4 other tests skip
>     [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html
>      - shard-dg1:          NOTRUN -> [SKIP][214] ([i915#9934]) +3 other tests skip
>     [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms.html
> 
>    * igt@kms_flip@2x-flip-vs-expired-vblank:
>      - shard-mtlp:         NOTRUN -> [SKIP][215] ([i915#3637]) +1 other test skip
>     [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
> 
>    * igt@kms_flip@2x-flip-vs-fences:
>      - shard-mtlp:         NOTRUN -> [SKIP][216] ([i915#8381])
>     [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_flip@2x-flip-vs-fences.html
>      - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#8381])
>     [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences.html
> 
>    * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
>      - shard-dg2:          NOTRUN -> [SKIP][218] ([i915#9934]) +2 other tests skip
>     [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
> 
>    * igt@kms_flip@flip-vs-suspend:
>      - shard-glk:          NOTRUN -> [INCOMPLETE][219] ([i915#4839])
>     [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk8/igt@kms_flip@flip-vs-suspend.html
> 
>    * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
>      - shard-glk:          NOTRUN -> [INCOMPLETE][220] ([i915#12745])
>     [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
> 
>    * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
>      - shard-mtlp:         NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip
>     [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
>      - shard-dg2:          NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555]) +1 other test skip
>     [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
> 
>    * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
>      - shard-dg2:          NOTRUN -> [SKIP][223] ([i915#2672]) +1 other test skip
>     [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
> 
>    * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
>      - shard-tglu:         NOTRUN -> [SKIP][224] ([i915#2587] / [i915#2672] / [i915#3555])
>     [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
> 
>    * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
>      - shard-mtlp:         NOTRUN -> [SKIP][225] ([i915#2672] / [i915#8813]) +2 other tests skip
>     [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
> 
>    * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
>      - shard-dg1:          NOTRUN -> [SKIP][226] ([i915#2672] / [i915#3555]) +2 other tests skip
>     [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
> 
>    * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
>      - shard-dg1:          NOTRUN -> [SKIP][227] ([i915#2587] / [i915#2672]) +2 other tests skip
>     [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
>      - shard-tglu:         NOTRUN -> [SKIP][228] ([i915#2587] / [i915#2672]) +3 other tests skip
>     [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
> 
>    * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
>      - shard-mtlp:         NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8813])
>     [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
> 
>    * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
>      - shard-mtlp:         NOTRUN -> [SKIP][230] ([i915#8810])
>     [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
> 
>    * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
>      - shard-mtlp:         NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8810] / [i915#8813])
>     [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-6/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-mtlp:         NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8810])
>     [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
> 
>    * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
>      - shard-rkl:          NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +3 other tests skip
>     [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
>      - shard-tglu:         NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +2 other tests skip
>     [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
> 
>    * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
>      - shard-rkl:          NOTRUN -> [SKIP][235] ([i915#2672]) +3 other tests skip
>     [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
> 
>    * igt@kms_force_connector_basic@prune-stale-modes:
>      - shard-dg2:          NOTRUN -> [SKIP][236] ([i915#5274])
>     [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_force_connector_basic@prune-stale-modes.html
> 
>    * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
>      - shard-dg2:          NOTRUN -> [SKIP][237] ([i915#8708]) +9 other tests skip
>     [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
>      - shard-rkl:          NOTRUN -> [SKIP][238] ([i915#1825]) +25 other tests skip
>     [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
> 
>    * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
>      - shard-mtlp:         NOTRUN -> [SKIP][239] ([i915#1825]) +19 other tests skip
>     [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
> 
>    * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
>      - shard-tglu:         NOTRUN -> [SKIP][240] +40 other tests skip
>     [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
> 
>    * igt@kms_frontbuffer_tracking@fbc-suspend:
>      - shard-rkl:          NOTRUN -> [DMESG-FAIL][241] ([i915#12964])
>     [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
>      - shard-tglu:         NOTRUN -> [ABORT][242] ([i915#10159] / [i915#13218])
>     [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
>      - shard-glk:          NOTRUN -> [INCOMPLETE][243] ([i915#10056])
>     [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
>      - shard-mtlp:         NOTRUN -> [ABORT][244] ([i915#10159] / [i915#13218])
>     [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
> 
>    * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
>      - shard-dg1:          NOTRUN -> [SKIP][245] ([i915#8708]) +8 other tests skip
>     [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
> 
>    * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
>      - shard-dg1:          NOTRUN -> [SKIP][246] +19 other tests skip
>     [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
> 
>    * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
>      - shard-rkl:          NOTRUN -> [SKIP][247] ([i915#9766])
>     [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
>      - shard-dg1:          NOTRUN -> [SKIP][248] ([i915#9766])
>     [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
>      - shard-dg2:          NOTRUN -> [SKIP][249] ([i915#9766])
>     [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
> 
>    * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
>      - shard-rkl:          NOTRUN -> [SKIP][250] ([i915#3023]) +16 other tests skip
>     [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
> 
>    * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
>      - shard-dg2:          NOTRUN -> [SKIP][251] ([i915#3458]) +11 other tests skip
>     [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
> 
>    * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
>      - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#5354]) +24 other tests skip
>     [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
> 
>    * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
>      - shard-mtlp:         NOTRUN -> [SKIP][253] ([i915#8708]) +3 other tests skip
>     [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
> 
>    * igt@kms_frontbuffer_tracking@psr-suspend:
>      - shard-dg1:          NOTRUN -> [SKIP][254] ([i915#3458]) +11 other tests skip
>     [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-suspend.html
> 
>    * igt@kms_hdr@bpc-switch-suspend:
>      - shard-tglu:         NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228])
>     [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_hdr@bpc-switch-suspend.html
>      - shard-rkl:          NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228])
>     [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_hdr@bpc-switch-suspend.html
> 
>    * igt@kms_hdr@static-toggle-dpms:
>      - shard-mtlp:         NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228])
>     [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_hdr@static-toggle-dpms.html
>      - shard-dg2:          NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228])
>     [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_hdr@static-toggle-dpms.html
>      - shard-dg1:          NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228])
>     [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_hdr@static-toggle-dpms.html
> 
>    * igt@kms_joiner@basic-ultra-joiner:
>      - shard-rkl:          NOTRUN -> [SKIP][260] ([i915#12339])
>     [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_joiner@basic-ultra-joiner.html
>      - shard-dg1:          NOTRUN -> [SKIP][261] ([i915#12339])
>     [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@kms_joiner@basic-ultra-joiner.html
>      - shard-tglu:         NOTRUN -> [SKIP][262] ([i915#12339])
>     [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-9/igt@kms_joiner@basic-ultra-joiner.html
>      - shard-mtlp:         NOTRUN -> [SKIP][263] ([i915#12339])
>     [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_joiner@basic-ultra-joiner.html
>      - shard-dg2:          NOTRUN -> [SKIP][264] ([i915#12339])
>     [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@kms_joiner@basic-ultra-joiner.html
> 
>    * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>      - shard-mtlp:         NOTRUN -> [SKIP][265] ([i915#4816])
>     [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>      - shard-dg2:          NOTRUN -> [SKIP][266] ([i915#4816])
>     [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>      - shard-rkl:          NOTRUN -> [SKIP][267] ([i915#4816])
>     [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>      - shard-tglu-1:       NOTRUN -> [SKIP][268] ([i915#1839])
>     [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>      - shard-dg1:          NOTRUN -> [SKIP][269] ([i915#1839]) +1 other test skip
>     [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> 
>    * igt@kms_plane_alpha_blend@alpha-basic:
>      - shard-glk:          NOTRUN -> [FAIL][270] ([i915#12178])
>     [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html
> 
>    * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
>      - shard-glk:          NOTRUN -> [FAIL][271] ([i915#7862]) +1 other test fail
>     [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
> 
>    * igt@kms_plane_alpha_blend@alpha-opaque-fb:
>      - shard-glk:          NOTRUN -> [FAIL][272] ([i915#12169])
>     [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk4/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
> 
>    * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
>      - shard-glk:          NOTRUN -> [FAIL][273] ([i915#10647]) +1 other test fail
>     [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
> 
>    * igt@kms_plane_scaling@2x-scaler-multi-pipe:
>      - shard-mtlp:         NOTRUN -> [SKIP][274] ([i915#9809]) +3 other tests skip
>     [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
>      - shard-dg2:          NOTRUN -> [SKIP][275] ([i915#5354] / [i915#9423])
>     [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
> 
>    * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
>      - shard-tglu:         NOTRUN -> [SKIP][276] ([i915#12247]) +4 other tests skip
>     [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
> 
>    * igt@kms_pm_backlight@basic-brightness:
>      - shard-rkl:          NOTRUN -> [SKIP][277] ([i915#5354])
>     [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html
>      - shard-dg1:          NOTRUN -> [SKIP][278] ([i915#5354])
>     [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@kms_pm_backlight@basic-brightness.html
>      - shard-tglu:         NOTRUN -> [SKIP][279] ([i915#9812])
>     [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/igt@kms_pm_backlight@basic-brightness.html
> 
>    * igt@kms_pm_backlight@brightness-with-dpms:
>      - shard-rkl:          NOTRUN -> [SKIP][280] ([i915#12343])
>     [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
>      - shard-dg1:          NOTRUN -> [SKIP][281] ([i915#12343])
>     [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-12/igt@kms_pm_backlight@brightness-with-dpms.html
>      - shard-dg2:          NOTRUN -> [SKIP][282] ([i915#12343])
>     [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-7/igt@kms_pm_backlight@brightness-with-dpms.html
> 
>    * igt@kms_pm_dc@dc6-psr:
>      - shard-mtlp:         NOTRUN -> [FAIL][283] ([i915#12912])
>     [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_pm_dc@dc6-psr.html
>      - shard-dg1:          NOTRUN -> [SKIP][284] ([i915#9685])
>     [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_pm_dc@dc6-psr.html
> 
>    * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
>      - shard-dg2:          [PASS][285] -> [SKIP][286] ([i915#9519])
>     [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
>     [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
>      - shard-tglu:         NOTRUN -> [SKIP][287] ([i915#9519])
>     [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
>      - shard-mtlp:         NOTRUN -> [SKIP][288] ([i915#9519])
>     [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
> 
>    * igt@kms_pm_rpm@dpms-non-lpsp:
>      - shard-rkl:          [PASS][289] -> [SKIP][290] ([i915#9519])
>     [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
>     [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html
> 
>    * igt@kms_prime@d3hot:
>      - shard-rkl:          NOTRUN -> [SKIP][291] ([i915#6524])
>     [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-5/igt@kms_prime@d3hot.html
>      - shard-dg1:          NOTRUN -> [SKIP][292] ([i915#6524])
>     [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_prime@d3hot.html
>      - shard-tglu:         NOTRUN -> [SKIP][293] ([i915#6524])
>     [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/igt@kms_prime@d3hot.html
>      - shard-mtlp:         NOTRUN -> [SKIP][294] ([i915#6524])
>     [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_prime@d3hot.html
>      - shard-dg2:          NOTRUN -> [SKIP][295] ([i915#6524] / [i915#6805])
>     [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_prime@d3hot.html
> 
>    * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
>      - shard-dg2:          NOTRUN -> [SKIP][296] ([i915#11520]) +4 other tests skip
>     [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
>      - shard-rkl:          NOTRUN -> [SKIP][297] ([i915#11520]) +2 other tests skip
>     [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
> 
>    * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
>      - shard-mtlp:         NOTRUN -> [SKIP][298] ([i915#9808]) +1 other test skip
>     [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
> 
>    * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
>      - shard-glk:          NOTRUN -> [SKIP][299] ([i915#11520]) +2 other tests skip
>     [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
> 
>    * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
>      - shard-mtlp:         NOTRUN -> [SKIP][300] ([i915#12316]) +3 other tests skip
>     [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
> 
>    * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
>      - shard-dg1:          NOTRUN -> [SKIP][301] ([i915#11520]) +2 other tests skip
>     [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
>      - shard-tglu:         NOTRUN -> [SKIP][302] ([i915#11520]) +2 other tests skip
>     [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/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-snb:          NOTRUN -> [SKIP][303] ([i915#11520]) +10 other tests skip
>     [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
> 
>    * igt@kms_psr@fbc-pr-cursor-render:
>      - shard-mtlp:         NOTRUN -> [SKIP][304] ([i915#9688]) +17 other tests skip
>     [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_psr@fbc-pr-cursor-render.html
> 
>    * igt@kms_psr@fbc-psr-sprite-plane-move:
>      - shard-tglu:         NOTRUN -> [SKIP][305] ([i915#9732]) +9 other tests skip
>     [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-10/igt@kms_psr@fbc-psr-sprite-plane-move.html
> 
>    * igt@kms_psr@fbc-psr-suspend:
>      - shard-dg2:          NOTRUN -> [SKIP][306] ([i915#1072] / [i915#9732]) +13 other tests skip
>     [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@kms_psr@fbc-psr-suspend.html
> 
>    * igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
>      - shard-dg1:          NOTRUN -> [SKIP][307] ([i915#1072] / [i915#9732]) +11 other tests skip
>     [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
> 
>    * igt@kms_psr@pr-basic:
>      - shard-tglu-1:       NOTRUN -> [SKIP][308] ([i915#9732])
>     [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@kms_psr@pr-basic.html
> 
>    * igt@kms_psr@psr-sprite-plane-onoff:
>      - shard-rkl:          NOTRUN -> [SKIP][309] ([i915#1072] / [i915#9732]) +10 other tests skip
>     [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_psr@psr-sprite-plane-onoff.html
> 
>    * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
>      - shard-rkl:          NOTRUN -> [SKIP][310] ([i915#5289])
>     [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
>      - shard-tglu:         NOTRUN -> [SKIP][311] ([i915#5289])
>     [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
> 
>    * igt@kms_vrr@seamless-rr-switch-vrr:
>      - shard-dg2:          NOTRUN -> [SKIP][312] ([i915#9906])
>     [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-vrr.html
>      - shard-rkl:          NOTRUN -> [SKIP][313] ([i915#9906])
>     [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html
>      - shard-tglu:         NOTRUN -> [SKIP][314] ([i915#9906])
>     [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-vrr.html
>      - shard-mtlp:         NOTRUN -> [SKIP][315] ([i915#8808] / [i915#9906])
>     [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-vrr.html
> 
>    * igt@perf_pmu@busy-idle-no-semaphores@rcs0:
>      - shard-glk:          NOTRUN -> [ABORT][316] ([i915#13218]) +21 other tests abort
>     [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-glk2/igt@perf_pmu@busy-idle-no-semaphores@rcs0.html
> 
>    * igt@perf_pmu@cpu-hotplug:
>      - shard-mtlp:         NOTRUN -> [SKIP][317] ([i915#8850])
>     [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html
> 
>    * igt@perf_pmu@idle:
>      - shard-rkl:          NOTRUN -> [ABORT][318] ([i915#13218]) +27 other tests abort
>     [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-4/igt@perf_pmu@idle.html
> 
>    * igt@perf_pmu@idle@rcs0:
>      - shard-tglu-1:       NOTRUN -> [ABORT][319] ([i915#13218]) +4 other tests abort
>     [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-1/igt@perf_pmu@idle@rcs0.html
>      - shard-dg1:          NOTRUN -> [ABORT][320] ([i915#13218]) +27 other tests abort
>     [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-13/igt@perf_pmu@idle@rcs0.html
> 
>    * igt@prime_vgem@basic-fence-mmap:
>      - shard-mtlp:         NOTRUN -> [SKIP][321] ([i915#3708] / [i915#4077])
>     [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
>      - shard-dg2:          NOTRUN -> [SKIP][322] ([i915#3708] / [i915#4077])
>     [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html
> 
>    * igt@prime_vgem@basic-fence-read:
>      - shard-dg2:          NOTRUN -> [SKIP][323] ([i915#3291] / [i915#3708])
>     [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-3/igt@prime_vgem@basic-fence-read.html
>      - shard-mtlp:         NOTRUN -> [SKIP][324] ([i915#3708])
>     [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@prime_vgem@basic-fence-read.html
> 
>    * igt@prime_vgem@basic-write:
>      - shard-rkl:          NOTRUN -> [SKIP][325] ([i915#3291] / [i915#3708]) +1 other test skip
>     [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-5/igt@prime_vgem@basic-write.html
>      - shard-dg1:          NOTRUN -> [SKIP][326] ([i915#3708]) +1 other test skip
>     [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@prime_vgem@basic-write.html
>      - shard-mtlp:         NOTRUN -> [SKIP][327] ([i915#10216] / [i915#3708])
>     [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@prime_vgem@basic-write.html
> 
>    * igt@sriov_basic@enable-vfs-autoprobe-on:
>      - shard-rkl:          NOTRUN -> [SKIP][328] ([i915#9917])
>     [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
>      - shard-dg1:          NOTRUN -> [SKIP][329] ([i915#9917])
>     [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-on.html
> 
>    * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
>      - shard-tglu:         NOTRUN -> [FAIL][330] ([i915#12910]) +9 other tests fail
>     [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> 
>    * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2:
>      - shard-mtlp:         NOTRUN -> [FAIL][331] ([i915#12910]) +9 other tests fail
>     [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-mtlp-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2.html
> 
>    
> #### Possible fixes ####
> 
>    * igt@kms_pm_rpm@dpms-non-lpsp:
>      - shard-dg2:          [SKIP][332] ([i915#9519]) -> [PASS][333]
>     [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
>     [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@kms_pm_rpm@dpms-non-lpsp.html
> 
>    
> #### Warnings ####
> 
>    * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
>      - shard-dg2:          [SKIP][334] ([i915#10433] / [i915#3458]) -> [SKIP][335] ([i915#3458]) +1 other test skip
>     [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15803/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
>     [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
> 
>    
>    {name}: This element is suppressed. This means it is ignored when computing
>            the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>    [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
>    [i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
>    [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
>    [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
>    [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
>    [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
>    [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
>    [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
>    [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
>    [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
>    [i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
>    [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
>    [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
>    [i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238
>    [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
>    [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
>    [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
>    [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
>    [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
>    [i915#12580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12580
>    [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
>    [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
>    [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
>    [i915#12912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12912
>    [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
>    [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
>    [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
>    [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
>    [i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218
>    [i915#13242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13242
>    [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
>    [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
>    [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
>    [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
>    [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
>    [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
>    [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
>    [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
>    [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
>    [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
>    [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
>    [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
>    [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
>    [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
>    [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
>    [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
>    [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
>    [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
>    [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
>    [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
>    [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
>    [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
>    [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
>    [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
>    [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
>    [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
>    [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
>    [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
>    [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
>    [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
>    [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
>    [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
>    [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
>    [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
>    [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
>    [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
>    [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
>    [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
>    [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
>    [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
>    [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
>    [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
>    [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
>    [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
>    [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
>    [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
>    [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
>    [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
>    [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
>    [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
>    [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
>    [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
>    [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
>    [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
>    [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
>    [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
>    [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
>    [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
>    [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
>    [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
>    [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
>    [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
>    [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
>    [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
>    [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
>    [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
>    [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
>    [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
>    [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
>    [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
>    [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
>    [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
>    [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
>    [i915#8827]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8827
>    [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
>    [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
>    [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
>    [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
>    [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
>    [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
>    [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
>    [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
>    [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
>    [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
>    [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
>    [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
>    [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
>    [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
>    [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
>    [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
>    [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
> 
> 
> Build changes
> -------------
> 
>    * CI: CI-20190529 -> None
>    * IGT: IGT_8141 -> IGTPW_12271
>    * Piglit: piglit_4509 -> None
> 
>    CI-20190529: 20190529
>    CI_DRM_15803: 261a0301bda5af29477bd710465a8886e8609a4d @ git://anongit.freedesktop.org/gfx-ci/linux
>    IGTPW_12271: cedc5aa23c601995e871c7fc19f77c987bf3638b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>    IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>    piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12271/index.html


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

* Re: ✗ Xe.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
  2024-12-06 21:49 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-12-06 22:21   ` Dong, Zhanjun
  0 siblings, 0 replies; 7+ messages in thread
From: Dong, Zhanjun @ 2024-12-06 22:21 UTC (permalink / raw)
  To: igt-dev



On 2024-12-06 4:49 p.m., Patchwork wrote:
> *Patch Details*
> *Series:*	tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7)
> *URL:*	https://patchwork.freedesktop.org/series/140007/ <https:// 
> patchwork.freedesktop.org/series/140007/>
> *State:*	failure
> *Details:*	https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/ 
> index.html <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/ 
> index.html>
> 
> 
>   CI Bug Log - changes from XEIGT_8141_full -> XEIGTPW_12271_full
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with XEIGTPW_12271_full absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12271_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_12271_full:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   *
> 
>     igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-3:
> 
>       o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_async_flips@crc-
>         atomic@pipe-a-hdmi-a-3.html>
>   *
> 
>     igt@kms_lease@lease-revoke@pipe-c-dp-2:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-2/igt@kms_lease@lease-revoke@pipe-c-
>         dp-2.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_lease@lease-
>         revoke@pipe-c-dp-2.html> +3 other tests dmesg-warn
>   *
> 
>     igt@kms_pm_rpm@universal-planes-dpms@plane-41:
> 
>       o shard-lnl: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_pm_rpm@universal-
>         planes-dpms@plane-41.html>
>   *
> 
>     igt@kms_psr@fbc-psr2-sprite-plane-move:
> 
>       o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-
>         move.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGTPW_12271/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-plane-
>         move.html> +1 other test fail
>   *
> 
>     igt@kms_vblank@ts-continuation-dpms-suspend:
> 
>       o shard-lnl: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_vblank@ts-continuation-
>         dpms-suspend.html> +2 other tests abort
>   *
> 
>     igt@xe_oa@buffer-fill:
> 
>       o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_oa@buffer-
>         fill.html> +3 other tests dmesg-warn
> 
> 
>         Warnings
> 
>   * igt@xe_wedged@wedged-at-any-timeout:
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html>
>         (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1130>) -> ABORT <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-8/igt@xe_wedged@wedged-at-any-timeout.html>
> 
This patch add xe_exec_capture and not make changes on above igt test 
and igt lib code, all failures above are not related to this patch.

Regards,
Zhanjun Dong
> 
>     New tests
> 
> New tests have been introduced between XEIGT_8141_full and 
> XEIGTPW_12271_full:
> 
> 
>       New IGT tests (1)
> 
>   * igt@xe_exec_capture@reset:
>       o Statuses : 2 pass(s)
>       o Exec time: [39.87, 50.11] s
> 
> 
>     Known issues
> 
> Here are the changes found in XEIGTPW_12271_full that come from known 
> issues:
> 
> 
>       IGT changes
> 
> 
>         Issues hit
> 
>   *
> 
>     igt@intel_hwmon@hwmon-write:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/igt@intel_hwmon@hwmon-
>         write.html> (Intel XE#1125 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/1125>)
>   *
> 
>     igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-
>         tiled-small-legacy.html> (Intel XE#1466 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1466>)
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_addfb_basic@addfb25-y-
>         tiled-small-legacy.html> (Intel XE#2233 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2233>)
>   *
> 
>     igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
> 
>       o shard-lnl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_async_flips@async-flip-
>         with-page-flip-events-atomic.html> (Intel XE#3719 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3719>) +3 other
>         tests fail
>   *
> 
>     igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-
>     linear:
> 
>       o shard-lnl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_async_flips@async-flip-
>         with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3
>         other tests fail
>   *
> 
>     igt@kms_async_flips@crc-atomic@pipe-c-dp-2:
> 
>       o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_async_flips@crc-
>         atomic@pipe-c-dp-2.html> (Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +38 other
>         tests dmesg-warn
>   *
> 
>     igt@kms_async_flips@test-cursor:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_async_flips@test-
>         cursor.html> (Intel XE#664 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/664>)
>   *
> 
>     igt@kms_big_fb@4-tiled-32bpp-rotate-90:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-
>         rotate-90.html> (Intel XE#2327 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2327>) +7 other tests skip
>   *
> 
>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-
>         stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#3658
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>)
>   *
> 
>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-
>         stride-64bpp-rotate-180-hflip.html> (Intel XE#1407 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +6 other
>         tests skip
>   *
> 
>     igt@kms_big_fb@linear-64bpp-rotate-0:
> 
>       o shard-lnl: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-lnl-8/
>         igt@kms_big_fb@linear-64bpp-rotate-0.html> (Intel XE#1725
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725>)
>   *
> 
>     igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-
>         size-offset-overflow.html> (Intel XE#1477 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1477>)
>   *
> 
>     igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-
>         stride-64bpp-rotate-0-hflip.html> (Intel XE#1124 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +13 other
>         tests skip
>   *
> 
>     igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-
>         stride-64bpp-rotate-180-hflip.html> (Intel XE#1124 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +13 other
>         tests skip
>   *
> 
>     igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-
>         displays-2160x1440p.html> -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_bw@connected-
>         linear-tiling-2-displays-2160x1440p.html> (Intel XE#2314
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> /
>         Intel XE#2894 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2894>)
>   *
> 
>     igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_bw@connected-linear-
>         tiling-3-displays-3840x2160p.html> (Intel XE#2191 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
>   *
> 
>     igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_bw@connected-linear-
>         tiling-4-displays-2560x1440p.html> (Intel XE#1512 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) +1 other test
>         skip
>   *
> 
>     igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_bw@connected-linear-
>         tiling-4-displays-3840x2160p.html> (Intel XE#2314 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel
>         XE#2894 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>)
>   *
> 
>     igt@kms_bw@linear-tiling-3-displays-2160x1440p:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_bw@linear-tiling-3-
>         displays-2160x1440p.html> (Intel XE#367 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
>   *
> 
>     igt@kms_bw@linear-tiling-4-displays-2160x1440p:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_bw@linear-tiling-4-
>         displays-2160x1440p.html> (Intel XE#367 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests
>         skip
>   *
> 
>     igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_ccs@crc-primary-
>         rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html> (Intel XE#2669
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +3
>         other tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_ccs@crc-primary-
>         suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#3433
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433>) +3
>         other tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_ccs@crc-primary-
>         suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html> (Intel XE#2652
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> /
>         Intel XE#787 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/787>) +30 other tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_ccs@crc-primary-
>         suspend-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#3432 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3432>)
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_ccs@crc-primary-
>         suspend-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#3432 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +1 other test
>         skip
>   *
> 
>     igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-
>         basic-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#2887 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +22 other
>         tests skip
>   *
> 
>     igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-
>         tiled-dg2-rc-ccs.html> (Intel XE#2887 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +22 other
>         tests skip
>   *
> 
>     igt@kms_cdclk@mode-transition-all-outputs:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_cdclk@mode-transition-
>         all-outputs.html> (Intel XE#2724 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2724>)
>   *
> 
>     igt@kms_cdclk@mode-transition@pipe-b-edp-1:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_cdclk@mode-
>         transition@pipe-b-edp-1.html> (Intel XE#314 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/314>) +3 other tests
>         skip
>   *
> 
>     igt@kms_chamelium_color@degamma:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/
>         igt@kms_chamelium_color@degamma.html> (Intel XE#306 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +2 other tests
>         skip
>   *
> 
>     igt@kms_chamelium_color@gamma:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/
>         igt@kms_chamelium_color@gamma.html> (Intel XE#2325 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2325>)
>   *
> 
>     igt@kms_chamelium_frames@hdmi-aspect-ratio:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_chamelium_frames@hdmi-
>         aspect-ratio.html> (Intel XE#2252 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +14 other
>         tests skip
>   *
> 
>     igt@kms_chamelium_hpd@dp-hpd:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_chamelium_hpd@dp-
>         hpd.html> (Intel XE#373 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/373>) +16 other tests skip
>   *
> 
>     igt@kms_content_protection@dp-mst-type-1:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_content_protection@dp-
>         mst-type-1.html> (Intel XE#307 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/307>) +1 other test skip
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_content_protection@dp-
>         mst-type-1.html> (Intel XE#2390 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2390>) +1 other test skip
>   *
> 
>     igt@kms_content_protection@legacy:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/
>         igt@kms_content_protection@legacy.html> (Intel XE#2341 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) +1 other test
>         skip
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/
>         igt@kms_content_protection@legacy.html> (Intel XE#3278 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3278>)
>   *
> 
>     igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
> 
>       o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_content_protection@lic-
>         type-0@pipe-a-dp-2.html> (Intel XE#1178 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +1 other test
>         fail
>   *
> 
>     igt@kms_cursor_crc@cursor-offscreen-32x10:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_cursor_crc@cursor-
>         offscreen-32x10.html> (Intel XE#2320 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +4 other
>         tests skip
>   *
> 
>     igt@kms_cursor_crc@cursor-onscreen-512x512:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_cursor_crc@cursor-
>         onscreen-512x512.html> (Intel XE#2321 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2321>)
>   *
> 
>     igt@kms_cursor_crc@cursor-random-512x512:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_cursor_crc@cursor-
>         random-512x512.html> (Intel XE#2321 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2321>)
>   *
> 
>     igt@kms_cursor_crc@cursor-rapid-movement-max-size:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@kms_cursor_crc@cursor-
>         rapid-movement-max-size.html> (Intel XE#1424 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +6 other
>         tests skip
>   *
> 
>     igt@kms_cursor_crc@cursor-suspend:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html> ->
>         INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGTPW_12271/shard-bmg-8/igt@kms_cursor_crc@cursor-suspend.html>
>         (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1727> / Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>) +3 other tests incomplete
>   *
> 
>     igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_cursor_legacy@2x-flip-
>         vs-cursor-atomic.html> (Intel XE#309 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +7 other tests
>         skip
>   *
> 
>     igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-2/igt@kms_cursor_legacy@2x-long-nonblocking-
>         modeset-vs-cursor-atomic.html> -> SKIP <https://intel-gfx-
>         ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/
>         igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-
>         atomic.html> (Intel XE#2291 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2291>) +1 other test skip
>   *
> 
>     igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_cursor_legacy@basic-
>         busy-flip-before-cursor-legacy.html> (Intel XE#2286 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2286>) +1 other test
>         skip
>   *
> 
>     igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_cursor_legacy@cursora-
>         vs-flipb-toggle.html> (Intel XE#2291 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +1 other test
>         skip
>   *
> 
>     igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_cursor_legacy@short-
>         busy-flip-before-cursor-toggle.html> (Intel XE#323 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/323>)
>   *
> 
>     igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2:
> 
>       o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-
>         ioctl@a-dp-2.html> (Intel XE#2141 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2141>)
>   *
> 
>     igt@kms_dirtyfb@psr-dirtyfb-ioctl:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_dirtyfb@psr-dirtyfb-
>         ioctl.html> (Intel XE#1508 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/1508>)
>   *
> 
>     igt@kms_display_modes@mst-extended-mode-negative:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_display_modes@mst-
>         extended-mode-negative.html> (Intel XE#2323 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2323>)
>   *
> 
>     igt@kms_dp_linktrain_fallback@dp-fallback:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-
>         fallback.html> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-
>         fallback.html> (Intel XE#3070 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3070>)
>   *
> 
>     igt@kms_dsc@dsc-with-output-formats-with-bpc:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_dsc@dsc-with-output-
>         formats-with-bpc.html> (Intel XE#2244 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test
>         skip
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_dsc@dsc-with-output-
>         formats-with-bpc.html> (Intel XE#2244 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test
>         skip
>   *
> 
>     igt@kms_fbcon_fbt@fbc:
> 
>       o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html>
>         (Intel XE#1695 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1695>)
>   *
> 
>     igt@kms_feature_discovery@chamelium:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-3/
>         igt@kms_feature_discovery@chamelium.html> (Intel XE#2372
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372>)
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/
>         igt@kms_feature_discovery@chamelium.html> (Intel XE#701
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/701>)
>   *
> 
>     igt@kms_feature_discovery@display-2x:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-7/igt@kms_feature_discovery@display-2x.html>
>         -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/
>         shard-bmg-4/igt@kms_feature_discovery@display-2x.html> (Intel
>         XE#2373 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
>   *
> 
>     igt@kms_feature_discovery@display-3x:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-1/
>         igt@kms_feature_discovery@display-3x.html> (Intel XE#2373
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
>   *
> 
>     igt@kms_feature_discovery@psr1:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/
>         igt@kms_feature_discovery@psr1.html> (Intel XE#2374 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2374>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_flip@2x-flip-vs-
>         blocking-wf-vblank.html> (Intel XE#2316 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
> 
>       o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_flip@2x-flip-vs-
>         expired-vblank-interruptible@bd-dp2-hdmi-a3.html> (Intel XE#3321
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +2
>         other tests fail
>   *
> 
>     igt@kms_flip@2x-flip-vs-rmfb-interruptible:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_flip@2x-flip-vs-rmfb-
>         interruptible.html> (Intel XE#1421 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +6 other
>         tests skip
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-2/igt@kms_flip@2x-flip-vs-rmfb-
>         interruptible.html> -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_flip@2x-flip-vs-rmfb-
>         interruptible.html> (Intel XE#2316 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +2 other
>         tests skip
>   *
> 
>     igt@kms_flip@blocking-wf_vblank@a-dp2:
> 
>       o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_flip@blocking-
>         wf_vblank@a-dp2.html> (Intel XE#2882 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
>   *
> 
>     igt@kms_flip@bo-too-big-interruptible:
> 
>       o shard-lnl: NOTRUN -> TIMEOUT <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_flip@bo-too-big-
>         interruptible.html> (Intel XE#1504 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1504>) +1 other test
>         timeout
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank-interruptible:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-
>         interruptible.html> -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_flip@flip-vs-expired-
>         vblank-interruptible.html> (Intel XE#2882 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +1 other test
>         fail
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-
>         interruptible@b-dp2.html> -> FAIL <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_flip@flip-vs-
>         expired-vblank-interruptible@b-dp2.html> (Intel XE#3321
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)
>   *
> 
>     igt@kms_flip@flip-vs-suspend:
> 
>       o shard-lnl: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_flip@flip-vs-
>         suspend.html> (Intel XE#3673 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3673>) +5 other tests abort
>   *
> 
>     igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-1/igt@kms_flip@plain-flip-ts-check-
>         interruptible@d-hdmi-a3.html> -> DMESG-WARN <https://intel-gfx-
>         ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/
>         igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html>
>         (Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468>) +64 other tests dmesg-warn
>   *
> 
>     igt@kms_flip@plain-flip-ts-check@a-edp1:
> 
>       o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-
>         edp1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGTPW_12271/shard-lnl-3/igt@kms_flip@plain-flip-ts-check@a-
>         edp1.html> (Intel XE#886 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/886>) +1 other test fail
>   *
> 
>     igt@kms_flip@wf_vblank-ts-check:
> 
>       o shard-bmg: NOTRUN -> DMESG-FAIL <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_flip@wf_vblank-ts-
>         check.html> (Intel XE#2705 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2705> / Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/
>         igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-
>         downscaling.html> (Intel XE#1397 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel
>         XE#1745 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1745>) +1 other test skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-
>     downscaling@pipe-a-default-mode:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/
>         igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-
>         downscaling@pipe-a-default-mode.html> (Intel XE#1397 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1397>) +1 other test
>         skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-
>     downscaling@pipe-a-valid-mode:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/
>         igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-
>         downscaling@pipe-a-valid-mode.html> (Intel XE#2293 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +6 other
>         tests skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-
>     downscaling@pipe-a-valid-mode:
> 
>       o shard-bmg: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-4/
>         igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-
>         downscaling@pipe-a-valid-mode.html> (Intel XE#1727 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468>) +1 other test incomplete
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-
>     downscaling:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-3/
>         igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-
>         downscaling.html> (Intel XE#2380 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test
>         skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-
>     downscaling@pipe-a-default-mode:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-7/
>         igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-
>         downscaling@pipe-a-default-mode.html> (Intel XE#1401 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +8 other
>         tests skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/
>         igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-
>         downscaling.html> (Intel XE#2293 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel
>         XE#2380 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2380>) +6 other tests skip
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/
>         igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-
>         upscaling.html> (Intel XE#1401 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/1401> / Intel XE#1745 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +8 other
>         tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/
>         igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-
>         blt.html> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/2312>) +19 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
> 
>       o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-8/
>         igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-
>         mmap-wc.html> (Intel XE#2333 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2333>) +12 other tests fail
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/
>         igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-
>         blt.html> (Intel XE#651 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/651>) +20 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/
>         igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-
>         render.html> (Intel XE#2311 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2311>) +34 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/
>         igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> (Intel
>         XE#1469 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>)
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/
>         igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> (Intel
>         XE#2352 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352>)
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-suspend:
> 
>       o shard-lnl: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-lnl-3/
>         igt@kms_frontbuffer_tracking@fbcpsr-suspend.html> (Intel XE#2050
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050>)
>   *
> 
>     igt@kms_frontbuffer_tracking@plane-fbc-rte:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/
>         igt@kms_frontbuffer_tracking@plane-fbc-rte.html> (Intel XE#2350
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350>)
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-1/
>         igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-
>         blt.html> (Intel XE#2313 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/2313>) +27 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/
>         igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-
>         render.html> (Intel XE#656 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/656>) +55 other tests skip
>   *
> 
>     igt@kms_hdr@static-swap:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_hdr@static-swap.html>
>         (Intel XE#1503 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1503>)
>   *
> 
>     igt@kms_hdr@static-toggle:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_hdr@static-toggle.html>
>         (Intel XE#1503 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1503>) +1 other test skip
>   *
> 
>     igt@kms_joiner@invalid-modeset-force-ultra-joiner:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_joiner@invalid-modeset-
>         force-ultra-joiner.html> (Intel XE#2934 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
>   *
> 
>     igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/
>         igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel
>         XE#356 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/356>)
>   *
> 
>     igt@kms_plane@pixel-format-source-clamping:
> 
>       o shard-bmg: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_plane@pixel-
>         format-source-clamping.html> (Intel XE#1035 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel
>         XE#2566 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2566> / Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@kms_plane_lowres@tiling-none:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-8/igt@kms_plane_lowres@tiling-none.html> ->
>         DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGTPW_12271/shard-bmg-4/igt@kms_plane_lowres@tiling-none.html>
>         (Intel XE#2705 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2705> / Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@kms_plane_lowres@tiling-y:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_plane_lowres@tiling-
>         y.html> (Intel XE#599 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/599>)
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_plane_lowres@tiling-
>         y.html> (Intel XE#2393 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/2393>)
>   *
> 
>     igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_plane_scaling@planes-
>         downscale-factor-0-25-unity-scaling@pipe-c.html> (Intel XE#2763
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +15
>         other tests skip
>   *
> 
>     igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_plane_scaling@planes-
>         upscale-20x20-downscale-factor-0-5@pipe-b.html> (Intel XE#2763
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +14
>         other tests skip
>   *
> 
>     igt@kms_pm_backlight@basic-brightness:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_pm_backlight@basic-
>         brightness.html> (Intel XE#870 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/870>)
>   *
> 
>     igt@kms_pm_dc@dc3co-vpb-simulation:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-
>         simulation.html> (Intel XE#736 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/736>)
>   *
> 
>     igt@kms_pm_rpm@drm-resources-equal:
> 
>       o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_pm_rpm@drm-
>         resources-equal.html> (Intel XE#1727 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@kms_pm_rpm@legacy-planes-dpms:
> 
>       o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-lnl-4/igt@kms_pm_rpm@legacy-planes-dpms.html> ->
>         DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGTPW_12271/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms.html>
>         (Intel XE#3184 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3184>) +1 other test dmesg-warn
>   *
> 
>     igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-
>         stress-no-wait.html> (Intel XE#1439 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel
>         XE#3141 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3141> / Intel XE#836 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/836>)
>   *
> 
>     igt@kms_pm_rpm@modeset-non-lpsp-stress:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_pm_rpm@modeset-non-
>         lpsp-stress.html> (Intel XE#1439 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel
>         XE#3141 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>)
>   *
> 
>     igt@kms_pm_rpm@modeset-stress-extra-wait:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-1/igt@kms_pm_rpm@modeset-stress-extra-
>         wait.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-
>         extra-wait.html> (Intel XE#1727 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/1727> / Intel XE#2864 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2864> / Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@kms_pm_rpm@universal-planes-dpms:
> 
>       o shard-lnl: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_pm_rpm@universal-
>         planes-dpms.html> (Intel XE#2042 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2042>)
>   *
> 
>     igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-
>         plane-update-sf-dmg-area.html> (Intel XE#2893 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +6 other
>         tests skip
>   *
> 
>     igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_psr2_sf@psr2-plane-
>         move-sf-dmg-area.html> (Intel XE#1489 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +12 other
>         tests skip
>   *
> 
>     igt@kms_psr2_su@frontbuffer-xrgb8888:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/igt@kms_psr2_su@frontbuffer-
>         xrgb8888.html> (Intel XE#1128 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/1128>) +2 other tests skip
>   *
> 
>     igt@kms_psr2_su@page_flip-p010:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_psr2_su@page_flip-
>         p010.html> (Intel XE#2387 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2387>)
>   *
> 
>     igt@kms_psr@pr-cursor-plane-onoff:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_psr@pr-cursor-plane-
>         onoff.html> (Intel XE#1406 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/1406>) +4 other tests skip
>   *
> 
>     igt@kms_psr@psr2-primary-page-flip:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_psr@psr2-primary-page-
>         flip.html> (Intel XE#2234 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2234> / Intel XE#2850 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +21 other
>         tests skip
>   *
> 
>     igt@kms_psr@psr2-primary-render:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_psr@psr2-primary-
>         render.html> (Intel XE#2234 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2234>)
>   *
> 
>     igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_rotation_crc@primary-y-
>         tiled-reflect-x-180.html> (Intel XE#2330 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2330>)
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_rotation_crc@primary-y-
>         tiled-reflect-x-180.html> (Intel XE#1127 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
>   *
> 
>     igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@kms_rotation_crc@primary-y-
>         tiled-reflect-x-90.html> (Intel XE#3414 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +4 other
>         tests skip
>   *
> 
>     igt@kms_rotation_crc@sprite-rotation-90:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_rotation_crc@sprite-
>         rotation-90.html> (Intel XE#3414 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +2 other
>         tests skip
>   *
> 
>     igt@kms_scaling_modes@scaling-mode-full-aspect:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_scaling_modes@scaling-
>         mode-full-aspect.html> (Intel XE#2413 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2413>) +1 other test
>         skip
>   *
> 
>     igt@kms_setmode@basic-clone-single-crtc:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_setmode@basic-clone-
>         single-crtc.html> (Intel XE#1435 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_setmode@basic-clone-
>         single-crtc.html> (Intel XE#1435 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
>   *
> 
>     igt@kms_tv_load_detect@load-detect:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_tv_load_detect@load-
>         detect.html> (Intel XE#330 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/330>)
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_tv_load_detect@load-
>         detect.html> (Intel XE#2450 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2450>)
>   *
> 
>     igt@kms_vblank@ts-continuation-dpms-rpm:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-7/igt@kms_vblank@ts-continuation-dpms-
>         rpm.html> -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-
>         rpm.html> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/1727> / Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@kms_vblank@wait-busy-hang:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-5/igt@kms_vblank@wait-busy-hang.html> ->
>         DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGTPW_12271/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html>
>         (Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468>) +18 other tests dmesg-fail
>   *
> 
>     igt@kms_vblank@wait-idle-hang@pipe-a-dp-2:
> 
>       o shard-bmg: NOTRUN -> DMESG-FAIL <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-3/igt@kms_vblank@wait-idle-
>         hang@pipe-a-dp-2.html> (Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +11 other
>         tests dmesg-fail
>   *
> 
>     igt@kms_vrr@lobf:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-8/igt@kms_vrr@lobf.html> (Intel
>         XE#2168 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>)
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_vrr@lobf.html> (Intel
>         XE#1499 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
>   *
> 
>     igt@kms_vrr@negative-basic:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-8/igt@kms_vrr@negative-basic.html> -> SKIP
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-5/igt@kms_vrr@negative-basic.html> (Intel XE#1499 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
>   *
> 
>     igt@kms_vrr@seamless-rr-switch-virtual:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-
>         virtual.html> (Intel XE#1499 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/1499>) +2 other tests skip
>   *
> 
>     igt@kms_writeback@writeback-check-output-xrgb2101010:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@kms_writeback@writeback-
>         check-output-xrgb2101010.html> (Intel XE#756 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +1 other test skip
>   *
> 
>     igt@kms_writeback@writeback-pixel-formats:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@kms_writeback@writeback-
>         pixel-formats.html> (Intel XE#756 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
>   *
> 
>     igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/igt@sriov_basic@enable-vfs-
>         bind-unbind-each-numvfs-all.html> (Intel XE#1091 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel
>         XE#2849 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
>   *
> 
>     igt@xe_eudebug@basic-connect:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-7/igt@xe_eudebug@basic-
>         connect.html> (Intel XE#2905 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2905>) +12 other tests skip
>   *
> 
>     igt@xe_eudebug@discovery-empty:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-1/igt@xe_eudebug@discovery-
>         empty.html> (Intel XE#2905 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2905>) +11 other tests skip
>   *
> 
>     igt@xe_evict@evict-beng-cm-threads-small:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@xe_evict@evict-beng-cm-
>         threads-small.html> (Intel XE#688 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +15 other
>         tests skip
>   *
> 
>     igt@xe_evict@evict-beng-mixed-many-threads-small:
> 
>       o shard-bmg: NOTRUN -> TIMEOUT <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-8/igt@xe_evict@evict-beng-mixed-
>         many-threads-small.html> (Intel XE#1473 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
>   *
> 
>     igt@xe_evict@evict-mixed-threads-large:
> 
>       o shard-bmg: NOTRUN -> TIMEOUT <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_evict@evict-mixed-
>         threads-large.html> (Intel XE#1473 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel
>         XE#2472 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>)
>   *
> 
>     igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@xe_exec_basic@multigpu-no-
>         exec-bindexecqueue-rebind.html> (Intel XE#1392 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +10 other
>         tests skip
>   *
> 
>     igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-8/igt@xe_exec_basic@multigpu-no-
>         exec-bindexecqueue-userptr-invalidate.html> (Intel XE#2322
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +8
>         other tests skip
>   *
> 
>     igt@xe_exec_threads@threads-cm-userptr:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-7/igt@xe_exec_threads@threads-cm-
>         userptr.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_exec_threads@threads-cm-
>         userptr.html> (Intel XE#2705 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2705>)
>   *
> 
>     igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-
>         function-xe_ggtt_init_early.html> -> DMESG-WARN <https://intel-
>         gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/
>         igt@xe_fault_injection@inject-fault-probe-function-
>         xe_ggtt_init_early.html> (Intel XE#3467 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) +1 other test
>         dmesg-warn
>   *
> 
>     igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
> 
>       o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-7/
>         igt@xe_fault_injection@inject-fault-probe-function-
>         xe_sriov_init.html> (Intel XE#3467 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
> 
>       o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-3/
>         igt@xe_fault_injection@inject-fault-probe-function-
>         xe_uc_fw_init.html> (Intel XE#3343 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3343>)
>   *
> 
>     igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
> 
>       o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@xe_fault_injection@vm-
>         create-fail-xe_exec_queue_create_bind.html> (Intel XE#3467
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
>   *
> 
>     igt@xe_media_fill@media-fill:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@xe_media_fill@media-
>         fill.html> (Intel XE#560 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/560>)
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-1/igt@xe_media_fill@media-
>         fill.html> (Intel XE#2459 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2459> / Intel XE#2596 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2596>)
>   *
> 
>     igt@xe_mmap@small-bar:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@xe_mmap@small-bar.html>
>         (Intel XE#512 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/512>)
>   *
> 
>     igt@xe_oa@oa-tlb-invalidate:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_oa@oa-tlb-
>         invalidate.html> (Intel XE#2248 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2248>)
>   *
> 
>     igt@xe_pat@pat-index-xehpc:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@xe_pat@pat-index-
>         xehpc.html> (Intel XE#1420 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/1420> / Intel XE#2838 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2838>)
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-3/igt@xe_pat@pat-index-
>         xehpc.html> (Intel XE#1420 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/1420>)
>   *
> 
>     igt@xe_pm@d3hot-mmap-system:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-5/igt@xe_pm@d3hot-mmap-system.html> -> DMESG-
>         WARN <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/
>         shard-bmg-3/igt@xe_pm@d3hot-mmap-system.html> (Intel XE#1727
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> /
>         Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468>) +4 other tests dmesg-warn
>   *
> 
>     igt@xe_pm@d3hot-mmap-vram:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-3/igt@xe_pm@d3hot-mmap-vram.html>
>         (Intel XE#1948 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1948>)
>   *
> 
>     igt@xe_pm@s2idle-basic:
> 
>       o shard-lnl: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-8/igt@xe_pm@s2idle-basic.html>
>         (Intel XE#1358 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1358> / Intel XE#3673 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3673>)
>   *
> 
>     igt@xe_pm@s2idle-d3cold-basic-exec:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_pm@s2idle-d3cold-basic-
>         exec.html> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2284>) +2 other tests skip
>   *
> 
>     igt@xe_pm@s2idle-d3hot-basic-exec:
> 
>       o shard-lnl: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-4/igt@xe_pm@s2idle-d3hot-basic-
>         exec.html> (Intel XE#1358 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/1358> / Intel XE#1616 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1616>)
>   *
> 
>     igt@xe_pm@s3-basic:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-5/igt@xe_pm@s3-basic.html> -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-5/igt@xe_pm@s3-basic.html> (Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
>   *
> 
>     igt@xe_pm@s3-basic-exec:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-5/igt@xe_pm@s3-basic-exec.html> -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-1/igt@xe_pm@s3-basic-exec.html> (Intel XE#1727 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468> / Intel XE#569 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/569>)
>   *
> 
>     igt@xe_pm@s3-vm-bind-prefetch:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-5/igt@xe_pm@s3-vm-bind-
>         prefetch.html> (Intel XE#584 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/584>)
>   *
> 
>     igt@xe_pm@s4-d3cold-basic-exec:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-7/igt@xe_pm@s4-d3cold-basic-
>         exec.html> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2284> / Intel XE#366 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +1 other test skip
>   *
> 
>     igt@xe_query@multigpu-query-invalid-size:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-lnl-7/igt@xe_query@multigpu-query-
>         invalid-size.html> (Intel XE#944 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +6 other tests
>         skip
>   *
> 
>     igt@xe_query@multigpu-query-mem-usage:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-8/igt@xe_query@multigpu-query-
>         mem-usage.html> (Intel XE#944 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/944>) +6 other tests skip
> 
> 
>         Possible fixes
> 
>   *
> 
>     igt@core_getclient:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-4/igt@core_getclient.html> -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-3/igt@core_getclient.html> +46 other tests pass
>   *
> 
>     igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0:
> 
>       o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-
>         stride-32bpp-rotate-0.html> (Intel XE#1727 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html>
>   *
> 
>     igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-
>         displays-1920x1080p.html> (Intel XE#2314 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel
>         XE#2894 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2894>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-
>         displays-1920x1080p.html>
>   *
> 
>     igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-
>         atomic-transitions.html> (Intel XE#2291 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-
>         transitions.html> +4 other tests pass
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
> 
>       o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-
>         varying-size.html> (Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html>
>         +11 other tests pass
>   *
> 
>     igt@kms_flip@2x-flip-vs-wf_vblank:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html>
>         (Intel XE#2316 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2316>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-1/igt@kms_flip@2x-flip-vs-
>         wf_vblank.html> +3 other tests pass
>   *
> 
>     igt@kms_flip@flip-vs-absolute-wf_vblank:
> 
>       o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-lnl-3/igt@kms_flip@flip-vs-absolute-
>         wf_vblank.html> (Intel XE#886 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/886>) -> PASS <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-lnl-7/igt@kms_flip@flip-vs-
>         absolute-wf_vblank.html> +1 other test pass
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank:
> 
>       o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html>
>         (Intel XE#2882 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2882>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank.html>
>   *
> 
>     igt@kms_flip@flip-vs-suspend-interruptible:
> 
>       o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-4/igt@kms_flip@flip-vs-suspend-
>         interruptible.html> (Intel XE#1727 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-5/igt@kms_flip@flip-vs-suspend-
>         interruptible.html> +2 other tests pass
>   *
> 
>     igt@kms_lease@lease-unleased-connector@pipe-c-dp-2:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-4/igt@kms_lease@lease-unleased-
>         connector@pipe-c-dp-2.html> (Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-4/igt@kms_lease@lease-unleased-connector@pipe-c-dp-2.html>
>         +84 other tests pass
>   *
> 
>     igt@kms_plane_lowres@tiling-x:
> 
>       o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-7/igt@kms_plane_lowres@tiling-x.html>
>         (Intel XE#2705 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2705> / Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-5/
>         igt@kms_plane_lowres@tiling-x.html>
>   *
> 
>     igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-
>         unity-scaling-with-pixel-format.html> (Intel XE#2566 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-7/igt@kms_plane_scaling@plane-scaler-
>         unity-scaling-with-pixel-format.html>
>   *
> 
>     igt@kms_pm_dc@dc5-psr:
> 
>       o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html> (Intel XE#718
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) ->
>         PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/
>         shard-lnl-7/igt@kms_pm_dc@dc5-psr.html>
>   *
> 
>     igt@kms_pm_rpm@cursor:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-7/igt@kms_pm_rpm@cursor.html> (Intel
>         XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1727> / Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/
>         igt@kms_pm_rpm@cursor.html>
>   *
> 
>     igt@kms_setmode@invalid-clone-single-crtc:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-5/igt@kms_setmode@invalid-clone-single-
>         crtc.html> (Intel XE#1435 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/1435>) -> PASS <https://intel-gfx-ci.01.org/
>         tree/intel-xe/IGTPW_12271/shard-bmg-1/igt@kms_setmode@invalid-
>         clone-single-crtc.html>
>   *
> 
>     igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
> 
>       o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-lnl-7/igt@kms_universal_plane@cursor-fb-
>         leak@pipe-a-edp-1.html> (Intel XE#899 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/899>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html>
>   *
> 
>     igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-4/igt@xe_exec_balancer@twice-cm-virtual-
>         userptr-invalidate-race.html> (Intel XE#2705 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-1/igt@xe_exec_balancer@twice-cm-
>         virtual-userptr-invalidate-race.html>
>   *
> 
>     igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-8/igt@xe_fault_injection@inject-fault-
>         probe-function-xe_tile_init_early.html> (Intel XE#3467 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-8/igt@xe_fault_injection@inject-fault-
>         probe-function-xe_tile_init_early.html>
>   *
> 
>     igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-
>         xe_pt_update_ops_prepare.html> (Intel XE#3467 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-5/igt@xe_fault_injection@vm-bind-fail-
>         xe_pt_update_ops_prepare.html> +1 other test pass
>   *
> 
>     igt@xe_pm@s3-vm-bind-unbind-all:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-7/igt@xe_pm@s3-vm-bind-unbind-all.html>
>         (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1727> / Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468> / Intel XE#569 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-5/igt@xe_pm@s3-vm-bind-unbind-all.html>
>   *
> 
>     igt@xe_pm@s4-vm-bind-unbind-all:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-5/igt@xe_pm@s4-vm-bind-unbind-all.html>
>         (Intel XE#2280 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2280> / Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-7/igt@xe_pm@s4-vm-
>         bind-unbind-all.html>
>   *
> 
>     igt@xe_prime_self_import@reimport-vs-gem_close-race:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-7/igt@xe_prime_self_import@reimport-vs-
>         gem_close-race.html> (Intel XE#1727 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-1/igt@xe_prime_self_import@reimport-vs-gem_close-race.html>
>         +2 other tests pass
> 
> 
>         Warnings
> 
>   *
> 
>     igt@kms_big_fb@linear-8bpp-rotate-180:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-7/igt@kms_big_fb@linear-8bpp-
>         rotate-180.html> (Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>) -> DMESG-FAIL <https://intel-gfx-
>         ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/
>         igt@kms_big_fb@linear-8bpp-rotate-180.html> (Intel XE#3468
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-4/igt@kms_cursor_legacy@2x-long-cursor-vs-
>         flip-atomic.html> (Intel XE#2291 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html>
>         (Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468>)
>   *
> 
>     igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
> 
>       o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-
>         hdmi-a-3.html> (Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>) -> FAIL <https://intel-gfx-
>         ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-3/
>         igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html> (Intel
>         XE#2141 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2141>) +1 other test fail
>   *
> 
>     igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-
>         interruptible.html> (Intel XE#2316 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-
>         interruptible.html> (Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-
>         interruptible.html> (Intel XE#2316 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> FAIL
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html>
>         (Intel XE#2882 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2882>)
>   *
> 
>     igt@kms_flip@2x-plain-flip-fb-recreate:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-
>         recreate.html> (Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-4/igt@kms_flip@2x-
>         plain-flip-fb-recreate.html> (Intel XE#2316 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
>   *
> 
>     igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-
>         primscrn-cur-indfb-move.html> (Intel XE#2311 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-
>         move.html> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2312>) +8 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
> 
>       o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-
>         primscrn-cur-indfb-draw-blt.html> (Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-
>         draw-blt.html> (Intel XE#2333 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2333>) +8 other tests fail
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
> 
>       o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-
>         primscrn-spr-indfb-draw-blt.html> (Intel XE#2333 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-
>         draw-blt.html> (Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>) +3 other tests dmesg-fail
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-
>         primscrn-spr-indfb-fullscreen.html> (Intel XE#2312 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-
>         fullscreen.html> (Intel XE#2333 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2333>) +4 other tests fail
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
> 
>       o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-
>         scndscrn-shrfb-pgflip-blt.html> (Intel XE#2333 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-
>         blt.html> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/2312>) +3 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-
>         scndscrn-spr-indfb-draw-render.html> (Intel XE#2312 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> DMESG-FAIL
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-
>         draw-render.html> (Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test
>         dmesg-fail
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-
>         primscrn-shrfb-plflip-blt.html> (Intel XE#2312 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-
>         plflip-blt.html> (Intel XE#2311 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2311>) +11 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-
>         scndscrn-cur-indfb-draw-blt.html> (Intel XE#2312 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-
>         draw-blt.html> (Intel XE#2313 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2313>) +12 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-
>         scndscrn-shrfb-pgflip-blt.html> (Intel XE#2313 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-
>         blt.html> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/2312>) +10 other tests skip
>   *
> 
>     igt@xe_evict@evict-beng-threads-large:
> 
>       o shard-bmg: TIMEOUT <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-1/igt@xe_evict@evict-beng-threads-large.html>
>         (Intel XE#1473 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1473>) -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-4/igt@xe_evict@evict-beng-
>         threads-large.html> (Intel XE#1473 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@xe_evict@evict-threads-large:
> 
>       o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-5/igt@xe_evict@evict-threads-large.html>
>         (Intel XE#1000 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1000>) -> TIMEOUT <https://intel-gfx-ci.01.org/tree/
>         intel-xe/IGTPW_12271/shard-bmg-5/igt@xe_evict@evict-threads-
>         large.html> (Intel XE#1473 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/1473> / Intel XE#2472 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2472>)
>   *
> 
>     igt@xe_exec_threads@threads-hang-fd-userptr-invalidate:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-4/igt@xe_exec_threads@threads-hang-fd-
>         userptr-invalidate.html> -> DMESG-WARN <https://intel-gfx-
>         ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-1/
>         igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html>
>         (Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468>) +1 other test dmesg-warn
>   *
> 
>     igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-
>         vm_bind_ioctl_ops_create.html> (Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-4/igt@xe_fault_injection@vm-bind-fail-
>         vm_bind_ioctl_ops_create.html> (Intel XE#3467 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
>   *
> 
>     igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
> 
>       o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGT_8141/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-
>         xe_vma_ops_alloc.html> (Intel XE#3467 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/shard-
>         bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html>
>         (Intel XE#3467 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3467> / Intel XE#3468 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3468>)
>   *
> 
>     igt@xe_pm@s2idle-exec-after:
> 
>       o shard-bmg: ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-7/igt@xe_pm@s2idle-exec-after.html> (Intel
>         XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3468> / Intel XE#3673 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/3673>) -> ABORT <https://intel-gfx-
>         ci.01.org/tree/intel-xe/IGTPW_12271/shard-bmg-8/
>         igt@xe_pm@s2idle-exec-after.html> (Intel XE#3673 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test
>         abort
>   *
> 
>     igt@xe_pm@s2idle-mocs:
> 
>       o shard-bmg: ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-3/igt@xe_pm@s2idle-mocs.html> (Intel XE#3673
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) ->
>         ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12271/
>         shard-bmg-7/igt@xe_pm@s2idle-mocs.html> (Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel
>         XE#3673 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>)
>   *
> 
>     igt@xe_pm@s2idle-vm-bind-unbind-all:
> 
>       o shard-bmg: ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/
>         IGT_8141/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html>
>         (Intel XE#1616 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/1616>) -> ABORT <https://intel-gfx-ci.01.org/tree/intel-
>         xe/IGTPW_12271/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-unbind-
>         all.html> (Intel XE#1616 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/1616> / Intel XE#3468 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> 
> 
>     Build changes
> 
>   * IGT: IGT_8141 -> IGTPW_12271
>   * Linux: xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422 ->
>     xe-2335-261a0301bda5af29477bd710465a8886e8609a4d
> 
> IGTPW_12271: cedc5aa23c601995e871c7fc19f77c987bf3638b @ https:// 
> gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https:// 
> gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: 
> e57b4b7cd137e0ae00d2601b4b55ab7f504da422
> xe-2335-261a0301bda5af29477bd710465a8886e8609a4d: 
> 261a0301bda5af29477bd710465a8886e8609a4d
> 


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

end of thread, other threads:[~2024-12-06 22:22 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-06 17:53 [PATCH v8] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
2024-12-06 18:42 ` ✓ i915.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev7) Patchwork
2024-12-06 18:47 ` ✓ Xe.CI.BAT: " Patchwork
2024-12-06 20:28 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-06 22:20   ` Dong, Zhanjun
2024-12-06 21:49 ` ✗ Xe.CI.Full: " Patchwork
2024-12-06 22:21   ` Dong, Zhanjun

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