* [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test
@ 2024-12-05 21:57 Zhanjun Dong
2024-12-06 4:55 ` ✗ i915.CI.BAT: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev5) Patchwork
` (8 more replies)
0 siblings, 9 replies; 11+ messages in thread
From: Zhanjun Dong @ 2024-12-05 21:57 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:
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(®ex, 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(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL,
+ INDEX_ENGINE_INSTANCE, temp, false);
+ check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL,
+ INDEX_ENGINE_NAME, xe_engine_class_name(hwe->engine_class), true);
+
+ check_item_str(®ex, lines, "Capture_source:", INDEX_KEY, INDEX_VALUE,
+ "GuC", false);
+ check_item_u64(®ex, lines, "ACTHD:", addr,
+ addr + BATCH_DW_COUNT * sizeof(u32));
+ check_item_u64(®ex, 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(®ex);
+}
+
+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] 11+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev5)
2024-12-05 21:57 [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
@ 2024-12-06 4:55 ` Patchwork
2024-12-06 4:57 ` ✗ Xe.CI.BAT: " Patchwork
` (7 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06 4:55 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev5)
URL : https://patchwork.freedesktop.org/series/140007/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8139 -> IGTPW_12261
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12261 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12261, 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_12261/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12261:
### IGT changes ###
#### Possible regressions ####
* igt@dmabuf@all-tests@dma_fence_chain:
- bat-jsl-3: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-jsl-3/igt@dmabuf@all-tests@dma_fence_chain.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12261/bat-jsl-3/igt@dmabuf@all-tests@dma_fence_chain.html
Known issues
------------
Here are the changes found in IGTPW_12261 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-adls-6: [PASS][3] -> [FAIL][4] ([i915#12903])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-adls-6/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12261/bat-adls-6/igt@i915_pm_rpm@module-reload.html
- bat-dg1-7: [PASS][5] -> [FAIL][6] ([i915#12903])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12261/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8139 -> IGTPW_12261
* Linux: CI_DRM_15796 -> CI_DRM_15799
CI-20190529: 20190529
CI_DRM_15796: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15799: e57b4b7cd137e0ae00d2601b4b55ab7f504da422 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12261: eba40584ea93f752dfc8491a10478a6e0e2b807a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12261/index.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.BAT: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev5)
2024-12-05 21:57 [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
2024-12-06 4:55 ` ✗ i915.CI.BAT: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev5) Patchwork
@ 2024-12-06 4:57 ` Patchwork
2024-12-06 9:30 ` ✗ Xe.CI.Full: " Patchwork
` (6 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06 4:57 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2655 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev5)
URL : https://patchwork.freedesktop.org/series/140007/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8139_BAT -> XEIGTPW_12261_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12261_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12261_BAT, 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 (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12261_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
- bat-lnl-1: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
Known issues
------------
Here are the changes found in XEIGTPW_12261_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-3:
- bat-bmg-1: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#877]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-bmg-1/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-3.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/bat-bmg-1/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-3.html
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
Build changes
-------------
* IGT: IGT_8139 -> IGTPW_12261
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422
IGTPW_12261: eba40584ea93f752dfc8491a10478a6e0e2b807a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/index.html
[-- Attachment #2: Type: text/html, Size: 3273 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev5)
2024-12-05 21:57 [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
2024-12-06 4:55 ` ✗ i915.CI.BAT: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev5) Patchwork
2024-12-06 4:57 ` ✗ Xe.CI.BAT: " Patchwork
@ 2024-12-06 9:30 ` Patchwork
2024-12-06 16:52 ` ✗ GitLab.Pipeline: warning for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6) Patchwork
` (5 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06 9:30 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 90903 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev5)
URL : https://patchwork.freedesktop.org/series/140007/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12261_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12261_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12261_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_12261_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_big_fb@x-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [DMESG-WARN][2] +1 other test dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_big_fb@x-tiled-addfb-size-overflow.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [DMESG-FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_psr@fbc-psr-suspend@edp-1:
- shard-lnl: NOTRUN -> [ABORT][4] +5 other tests abort
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@kms_psr@fbc-psr-suspend@edp-1.html
* igt@kms_psr@psr2-cursor-render@edp-1:
- shard-lnl: NOTRUN -> [FAIL][5] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_psr@psr2-cursor-render@edp-1.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-bmg: NOTRUN -> [FAIL][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_vm@bind-execqueues-conflict:
- shard-bmg: [PASS][7] -> [DMESG-WARN][8] +6 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_vm@bind-execqueues-conflict.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@xe_vm@bind-execqueues-conflict.html
#### Warnings ####
* igt@xe_module_load@load:
- shard-dg2-set2: ([FAIL][9], [FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13], [FAIL][14], [FAIL][15], [FAIL][16], [FAIL][17], [FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [FAIL][24], [FAIL][25], [FAIL][26], [FAIL][27], [FAIL][28], [FAIL][29], [FAIL][30], [FAIL][31], [FAIL][32], [FAIL][33]) ([Intel XE#3715]) -> ([FAIL][34], [FAIL][35], [FAIL][36], [FAIL][37], [FAIL][38], [FAIL][39], [FAIL][40], [FAIL][41], [FAIL][42], [FAIL][43], [FAIL][44], [FAIL][45], [FAIL][46], [FAIL][47], [FAIL][48], [FAIL][49], [FAIL][50], [FAIL][51], [FAIL][52], [FAIL][53], [FAIL][54], [FAIL][55], [FAIL][56], [FAIL][57], [FAIL][58])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-466/igt@xe_module_load@load.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-466/igt@xe_module_load@load.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-466/igt@xe_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-466/igt@xe_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-466/igt@xe_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-466/igt@xe_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-466/igt@xe_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-435/igt@xe_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-435/igt@xe_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-435/igt@xe_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-435/igt@xe_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-435/igt@xe_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-435/igt@xe_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-434/igt@xe_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-434/igt@xe_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-434/igt@xe_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-434/igt@xe_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-434/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-434/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-436/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-436/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-436/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-436/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-436/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-dg2-436/igt@xe_module_load@load.html
New tests
---------
New tests have been introduced between XEIGT_8139_full and XEIGTPW_12261_full:
### New IGT tests (1) ###
* igt@xe_exec_capture@reset:
- Statuses : 1 pass(s)
- Exec time: [50.09] s
Known issues
------------
Here are the changes found in XEIGTPW_12261_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1125])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3157])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#827]) +1 other test fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: NOTRUN -> [FAIL][62] ([Intel XE#911]) +3 other tests fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@invalid-async-flip:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#873])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_async_flips@invalid-async-flip.html
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#873])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#3279]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2370])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1407]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#3658])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2327]) +7 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: NOTRUN -> [DMESG-WARN][70] ([Intel XE#2705] / [Intel XE#3468])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1124]) +20 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1124]) +22 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#610])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2314] / [Intel XE#2894])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#367]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#367]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2652] / [Intel XE#787]) +16 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2669]) +11 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: NOTRUN -> [INCOMPLETE][79] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests incomplete
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#3433]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#3432]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#3432]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#2887]) +23 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-a-dp-2:
- shard-bmg: [PASS][84] -> [DMESG-WARN][85] ([Intel XE#3468] / [Intel XE#877]) +1 other test dmesg-warn
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-a-dp-2.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-a-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2887]) +27 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1152]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_cdclk@plane-scaling.html
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2724])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#306]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2325]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#373]) +19 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2252]) +14 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#307]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1.html
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2390]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#3278])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@kms_content_protection@lic-type-1.html
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2341])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2320]) +7 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2321])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1424]) +10 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2321])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#309]) +7 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][102] -> [SKIP][103] ([Intel XE#2291]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2291]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#323])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2286])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-bmg: NOTRUN -> [FAIL][107] ([Intel XE#2141])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][108] -> [SKIP][109] ([Intel XE#3070])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled:
- shard-bmg: NOTRUN -> [DMESG-WARN][110] ([Intel XE#2705])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2244]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#702])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#703])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2373]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2374])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1421]) +13 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2316])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][118] -> [SKIP][119] ([Intel XE#2316]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
- shard-bmg: [PASS][120] -> [DMESG-FAIL][121] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-fail
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3:
- shard-bmg: [PASS][122] -> [FAIL][123] ([Intel XE#2882]) +1 other test fail
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [PASS][124] -> [DMESG-FAIL][125] ([Intel XE#2705] / [Intel XE#3468])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1397] / [Intel XE#1745]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-bmg: [PASS][127] -> [DMESG-WARN][128] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1401] / [Intel XE#1745]) +9 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1397]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2380]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/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][132] ([Intel XE#1401]) +9 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2293]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#352]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [DMESG-FAIL][136] ([Intel XE#3468]) +20 other tests dmesg-fail
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [FAIL][137] ([Intel XE#2333]) +10 other tests fail
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2312]) +21 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2311]) +38 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#651]) +19 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1469])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2350])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2313]) +46 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/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][144] ([Intel XE#656]) +82 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#605])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@kms_getfb@getfb-reject-ccs.html
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2502])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#3374] / [Intel XE#3544])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_hdr@brightness-with-hdr.html
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#3374] / [Intel XE#3544])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: [PASS][149] -> [SKIP][150] ([Intel XE#1503])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_hdr@invalid-metadata-sizes.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1503])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#346])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#346])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#2927])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2486])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-bmg: NOTRUN -> [INCOMPLETE][156] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3663])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane@pixel-format@pipe-a-plane-0:
- shard-bmg: [PASS][157] -> [DMESG-WARN][158] ([Intel XE#1727] / [Intel XE#3468])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_plane@pixel-format@pipe-a-plane-0.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_plane@pixel-format@pipe-a-plane-0.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [PASS][159] -> [INCOMPLETE][160] ([Intel XE#1035] / [Intel XE#1727] / [Intel XE#3468]) +2 other tests incomplete
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#599]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#2493]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_plane_multiple@tiling-yf.html
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2493]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2763]) +24 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#2763]) +23 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- shard-bmg: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#2705] / [Intel XE#3468])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#870])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#1131])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2392])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: NOTRUN -> [FAIL][171] ([Intel XE#1430])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#1439] / [Intel XE#3141])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@legacy-planes@plane-50:
- shard-bmg: NOTRUN -> [DMESG-WARN][173] ([Intel XE#1727] / [Intel XE#3468]) +8 other tests dmesg-warn
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_pm_rpm@legacy-planes@plane-50.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#2893]) +8 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#1489]) +15 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#1128])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1406]) +9 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2234] / [Intel XE#2850]) +21 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2234])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@bad-tiling:
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#3414]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#2330])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#3414]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#1127]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][185] -> [SKIP][186] ([Intel XE#1435])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#1435])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
- shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#1435]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#362])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#2509])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@wait-forked@pipe-a-dp-2:
- shard-bmg: [PASS][191] -> [DMESG-FAIL][192] ([Intel XE#3468]) +22 other tests dmesg-fail
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_vblank@wait-forked@pipe-a-dp-2.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_vblank@wait-forked@pipe-a-dp-2.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][193] ([Intel XE#1499]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#1499])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][195] -> [SKIP][196] ([Intel XE#1499])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_vrr@negative-basic.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#756]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#756]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#1091] / [Intel XE#2849])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#1062])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@xe_create@create-big-vram.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#2504])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_dma_buf_sync@export-dma-buf-once-read-sync:
- shard-bmg: NOTRUN -> [DMESG-WARN][202] ([Intel XE#3468]) +65 other tests dmesg-warn
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@xe_dma_buf_sync@export-dma-buf-once-read-sync.html
* igt@xe_drm_fdinfo@utilization-single-full-load-isolation:
- shard-bmg: [PASS][203] -> [DMESG-WARN][204] ([Intel XE#3468]) +84 other tests dmesg-warn
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
* igt@xe_eudebug@attach-debug-metadata:
- shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#2905]) +18 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@xe_eudebug@attach-debug-metadata.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#2905]) +15 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][207] ([Intel XE#1473])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][208] ([Intel XE#688]) +20 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_basic@many-execqueues-many-vm-null-defer-bind:
- shard-bmg: [PASS][209] -> [DMESG-WARN][210] ([Intel XE#1727]) +2 other tests dmesg-warn
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_exec_basic@many-execqueues-many-vm-null-defer-bind.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@xe_exec_basic@many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][211] ([Intel XE#2322]) +15 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#1392]) +20 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_threads@threads-bal-mixed-basic:
- shard-bmg: NOTRUN -> [DMESG-WARN][213] ([Intel XE#1727])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@xe_exec_threads@threads-bal-mixed-basic.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
- shard-bmg: [PASS][214] -> [DMESG-WARN][215] ([Intel XE#3467])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][216] ([Intel XE#3343] / [Intel XE#3468])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][217] ([Intel XE#3343])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [PASS][218] -> [DMESG-WARN][219] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-bmg: NOTRUN -> [DMESG-WARN][220] ([Intel XE#3467] / [Intel XE#3468])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-lnl: NOTRUN -> [SKIP][221] ([Intel XE#2229]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][222] ([Intel XE#2229])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [PASS][223] -> [SKIP][224] ([Intel XE#1192])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#512])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@xe_mmap@small-bar.html
- shard-bmg: NOTRUN -> [SKIP][226] ([Intel XE#586])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@xe_mmap@small-bar.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251]) -> ([PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [SKIP][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277]) ([Intel XE#378])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-7/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@xe_module_load@load.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-lnl: NOTRUN -> [SKIP][278] ([Intel XE#2248]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@xe_oa@unprivileged-single-ctx-counters.html
- shard-bmg: NOTRUN -> [SKIP][279] ([Intel XE#2248])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][280] ([Intel XE#2245])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][281] ([Intel XE#2284] / [Intel XE#366])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s3-basic:
- shard-bmg: [PASS][282] -> [DMESG-WARN][283] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_pm@s3-basic.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][284] ([Intel XE#584]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][285] ([Intel XE#579])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-bmg: NOTRUN -> [ABORT][286] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3673])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-lnl: NOTRUN -> [ABORT][287] ([Intel XE#3673]) +4 other tests abort
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@xe_pm_residency@gt-c6-freeze@gt0.html
- shard-bmg: NOTRUN -> [ABORT][288] ([Intel XE#3468] / [Intel XE#3673])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_pm_residency@gt-c6-freeze@gt1:
- shard-bmg: NOTRUN -> [DMESG-FAIL][289] ([Intel XE#1727] / [Intel XE#3468])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][290] ([Intel XE#944]) +5 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][291] ([Intel XE#944]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][292] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][293] +1 other test pass
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][294] ([Intel XE#2291]) -> [PASS][295] +3 other tests pass
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [DMESG-FAIL][296] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [SKIP][298] ([Intel XE#2316]) -> [PASS][299] +8 other tests pass
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [FAIL][300] ([Intel XE#2882]) -> [PASS][301] +3 other tests pass
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
- shard-bmg: [FAIL][302] ([Intel XE#3674]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-lnl: [FAIL][304] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@c-edp1:
- shard-lnl: [FAIL][306] ([Intel XE#886]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@c-edp1.html
* igt@kms_hdr@static-swap:
- shard-bmg: [SKIP][308] ([Intel XE#1503]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_hdr@static-swap.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_hdr@static-swap.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][310] ([Intel XE#718]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][312] ([Intel XE#2029]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][314] ([Intel XE#2883]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][316] ([Intel XE#2883]) -> [PASS][317] +2 other tests pass
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@wait-busy-hang:
- shard-bmg: [DMESG-FAIL][318] ([Intel XE#3468]) -> [PASS][319] +7 other tests pass
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@kms_vblank@wait-busy-hang.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-bmg: [FAIL][320] ([Intel XE#3721]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
- shard-bmg: [DMESG-WARN][322] -> [PASS][323] +1 other test pass
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
* igt@xe_exec_threads@threads-bal-shared-vm-userptr:
- shard-bmg: [DMESG-WARN][324] ([Intel XE#2705]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_threads@threads-bal-shared-vm-userptr.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@xe_exec_threads@threads-bal-shared-vm-userptr.html
* igt@xe_exec_threads@threads-cm-userptr-invalidate-race:
- shard-bmg: [DMESG-WARN][326] ([Intel XE#1727]) -> [PASS][327] +4 other tests pass
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-hang-basic:
- shard-bmg: [FAIL][328] ([Intel XE#3720]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_exec_threads@threads-hang-basic.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@xe_exec_threads@threads-hang-basic.html
* igt@xe_exec_threads@threads-hang-userptr-rebind:
- shard-bmg: [DMESG-WARN][330] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_exec_threads@threads-hang-userptr-rebind.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@xe_exec_threads@threads-hang-userptr-rebind.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [DMESG-WARN][332] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][333] +1 other test pass
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [DMESG-WARN][334] ([Intel XE#3467]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_pm@d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][336] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][337] +3 other tests pass
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-basic-exec.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@xe_pm@d3hot-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [DMESG-WARN][338] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-exec-after.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [DMESG-FAIL][340] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s3-mocs.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@xe_pm@s3-mocs.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-lnl: [FAIL][342] ([Intel XE#2564]) -> [PASS][343] +1 other test pass
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-5/igt@xe_pm_residency@idle-residency-on-exec.html
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
- shard-bmg: [DMESG-WARN][344] ([Intel XE#3468]) -> [PASS][345] +18 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
#### Warnings ####
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-bmg: [DMESG-FAIL][346] ([Intel XE#3468]) -> [DMESG-WARN][347] ([Intel XE#3468])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_big_fb@linear-64bpp-rotate-180.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][348] ([Intel XE#1178]) -> [INCOMPLETE][349] ([Intel XE#2715] / [Intel XE#3468]) +3 other tests incomplete
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_content_protection@legacy.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][350] ([Intel XE#1188]) -> [DMESG-FAIL][351] ([Intel XE#3468]) +1 other test dmesg-fail
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_content_protection@uevent.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@kms_content_protection@uevent.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [ABORT][352] ([Intel XE#3468]) -> [SKIP][353] ([Intel XE#2316])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][354] ([Intel XE#2311]) -> [SKIP][355] ([Intel XE#2312]) +11 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [FAIL][356] ([Intel XE#2333]) -> [DMESG-FAIL][357] ([Intel XE#3468]) +5 other tests dmesg-fail
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-bmg: [DMESG-FAIL][358] ([Intel XE#3468]) -> [FAIL][359] ([Intel XE#2333]) +2 other tests fail
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][360] ([Intel XE#2312]) -> [DMESG-FAIL][361] ([Intel XE#3468])
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][362] ([Intel XE#2312]) -> [FAIL][363] ([Intel XE#2333]) +10 other tests fail
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][364] ([Intel XE#2333]) -> [SKIP][365] ([Intel XE#2312]) +2 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][366] ([Intel XE#2312]) -> [SKIP][367] ([Intel XE#2311]) +13 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][368] ([Intel XE#2312]) -> [SKIP][369] ([Intel XE#2313]) +14 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][370] ([Intel XE#2313]) -> [SKIP][371] ([Intel XE#2312]) +10 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][372] ([Intel XE#3012]) -> [DMESG-WARN][373] ([Intel XE#2705] / [Intel XE#3468])
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: [TIMEOUT][374] ([Intel XE#1473]) -> [FAIL][375] ([Intel XE#1000])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_evict@evict-beng-mixed-threads-large.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [TIMEOUT][376] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][377] ([Intel XE#1473] / [Intel XE#3468])
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_evict@evict-threads-large.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@xe_evict@evict-threads-large.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [DMESG-WARN][378] ([Intel XE#3343]) -> [DMESG-WARN][379] ([Intel XE#3343] / [Intel XE#3468])
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-bmg: [DMESG-WARN][380] ([Intel XE#3467]) -> [DMESG-WARN][381] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: [SKIP][382] ([Intel XE#2833]) -> [SKIP][383] ([Intel XE#1192] / [Intel XE#3026])
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_live_ktest@xe_eudebug.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-lnl-4/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_module_load@many-reload:
- shard-bmg: [FAIL][384] ([Intel XE#3625]) -> [DMESG-WARN][385] ([Intel XE#3467] / [Intel XE#3468])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-5/igt@xe_module_load@many-reload.html
* igt@xe_pm@s2idle-basic:
- shard-bmg: [ABORT][386] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][387] ([Intel XE#3673])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_pm@s2idle-basic.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [ABORT][388] ([Intel XE#1616] / [Intel XE#3468]) -> [DMESG-FAIL][389] ([Intel XE#1727] / [Intel XE#3468])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: [ABORT][390] ([Intel XE#1616] / [Intel XE#3468]) -> [ABORT][391] ([Intel XE#1616])
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-userptr.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-userptr.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#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[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#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[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#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[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#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564
[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#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026
[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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[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#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625
[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#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663
[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#3674]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3674
[Intel XE#3715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3715
[Intel XE#3720]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3720
[Intel XE#3721]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3721
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#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_8139 -> IGTPW_12261
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422
IGTPW_12261: eba40584ea93f752dfc8491a10478a6e0e2b807a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12261/index.html
[-- Attachment #2: Type: text/html, Size: 107250 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ GitLab.Pipeline: warning for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6)
2024-12-05 21:57 [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
` (2 preceding siblings ...)
2024-12-06 9:30 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-12-06 16:52 ` Patchwork
2024-12-06 16:59 ` [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Kamil Konieczny
` (4 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06 16:52 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6)
URL : https://patchwork.freedesktop.org/series/140007/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1324974 for the overview.
test:list-undocumented-tests has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/67853533):
Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
Checking out d3f1851d as detached HEAD (ref is intel/IGTPW_12269)...
Removing build/
Removing scripts/__pycache__/
Skipping Git submodules setup
section_end:1733503710:get_sources
section_start:1733503710:download_artifacts
Downloading artifacts
Downloading artifacts for build:tests-fedora (67853520)...
Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=67853520 responseStatus=200 OK token=glcbt-64
section_end:1733503729:download_artifacts
section_start:1733503729:step_script
Executing "step_script" stage of the job script
Using docker image sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-d3f1851d2c6faf46bb999d887d46143459e205f5 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora@sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ...
section_end:1733503733:step_script
section_start:1733503733:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1733503734:cleanup_file_variables
ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f: image not known (docker.go:650:0s)
test:verify-blacklists has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/67853534):
Removing build/
Removing lib/i915/perf-configs/__pycache__/
Removing lib/xe/oa-configs/__pycache__/
Removing scripts/__pycache__/
Skipping Git submodules setup
section_end:1733503713:get_sources
section_start:1733503713:download_artifacts
Downloading artifacts
Downloading artifacts for build:tests-fedora (67853520)...
Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=67853520 responseStatus=200 OK token=glcbt-64
section_end:1733503729:download_artifacts
section_start:1733503729:step_script
Executing "step_script" stage of the job script
Using docker image sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-d3f1851d2c6faf46bb999d887d46143459e205f5 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora@sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ...
section_end:1733503733:step_script
section_start:1733503733:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1733503735:cleanup_file_variables
ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f: image not known (docker.go:650:0s)
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1324974
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test
2024-12-05 21:57 [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
` (3 preceding siblings ...)
2024-12-06 16:52 ` ✗ GitLab.Pipeline: warning for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6) Patchwork
@ 2024-12-06 16:59 ` Kamil Konieczny
2024-12-06 17:46 ` Dong, Zhanjun
2024-12-06 17:12 ` ✓ i915.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6) Patchwork
` (3 subsequent siblings)
8 siblings, 1 reply; 11+ messages in thread
From: Kamil Konieczny @ 2024-12-06 16:59 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev, Alan Previn
Hi Zhanjun,
On 2024-12-05 at 13:57:35 -0800, Zhanjun Dong wrote:
> 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:
Please write changes after '---' so it will not enter git log.
Btw why testing takes so much time? 50s for one run?
Maybe you should split it into 'reset-%s' where param
is engine name? You could use igt_subtest_f() for that.
One more nit 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(®ex, 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(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL,
> + INDEX_ENGINE_INSTANCE, temp, false);
> + check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL,
> + INDEX_ENGINE_NAME, xe_engine_class_name(hwe->engine_class), true);
> +
> + check_item_str(®ex, lines, "Capture_source:", INDEX_KEY, INDEX_VALUE,
> + "GuC", false);
> + check_item_u64(®ex, lines, "ACTHD:", addr,
> + addr + BATCH_DW_COUNT * sizeof(u32));
> + check_item_u64(®ex, 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(®ex);
> +}
> +
> +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) {
Print here with igt_info() that you will test many GPUs.
> + 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 {
Print here with igt_info() that you will test one GPU.
Regards,
Kamil
> + 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 [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6)
2024-12-05 21:57 [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
` (4 preceding siblings ...)
2024-12-06 16:59 ` [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Kamil Konieczny
@ 2024-12-06 17:12 ` Patchwork
2024-12-06 17:18 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06 17:12 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6)
URL : https://patchwork.freedesktop.org/series/140007/
State : success
== Summary ==
CI Bug Log - changes from IGT_8141 -> IGTPW_12269
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/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_12269 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][1] -> [ABORT][2] ([i915#12061]) +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [FAIL][3] ([i915#12903]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-twl-1: [ABORT][5] ([i915#12435] / [i915#12919]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-twl-1/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_pm:
- bat-twl-2: [ABORT][7] ([i915#12919]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-twl-2/igt@i915_selftest@live@gt_pm.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/bat-twl-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@requests:
- bat-twl-1: [ABORT][9] ([i915#12919]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-twl-1/igt@i915_selftest@live@requests.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/bat-twl-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [ABORT][11] ([i915#12061]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-arls-5/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/bat-arls-5/igt@i915_selftest@live@workarounds.html
- {bat-mtlp-9}: [ABORT][13] ([i915#12061]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [SKIP][15] ([i915#9197]) -> [PASS][16] +2 other tests pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.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_12269
* Linux: CI_DRM_15799 -> CI_DRM_15802
CI-20190529: 20190529
CI_DRM_15799: e57b4b7cd137e0ae00d2601b4b55ab7f504da422 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15802: 295d653482f489249b5f827e9c9f530dcb4a1a28 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12269: d3f1851d2c6faf46bb999d887d46143459e205f5 @ 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_12269/index.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6)
2024-12-05 21:57 [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
` (5 preceding siblings ...)
2024-12-06 17:12 ` ✓ i915.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6) Patchwork
@ 2024-12-06 17:18 ` Patchwork
2024-12-06 18:59 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-06 19:38 ` ✗ Xe.CI.Full: " Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06 17:18 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1718 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6)
URL : https://patchwork.freedesktop.org/series/140007/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8141_BAT -> XEIGTPW_12269_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12269_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-lnl-1: [PASS][1] -> [FAIL][2] ([Intel XE#886]) +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
Build changes
-------------
* IGT: IGT_8141 -> IGTPW_12269
* Linux: xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422 -> xe-2334-295d653482f489249b5f827e9c9f530dcb4a1a28
IGTPW_12269: d3f1851d2c6faf46bb999d887d46143459e205f5 @ 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-2334-295d653482f489249b5f827e9c9f530dcb4a1a28: 295d653482f489249b5f827e9c9f530dcb4a1a28
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/index.html
[-- Attachment #2: Type: text/html, Size: 2295 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test
2024-12-06 16:59 ` [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Kamil Konieczny
@ 2024-12-06 17:46 ` Dong, Zhanjun
0 siblings, 0 replies; 11+ messages in thread
From: Dong, Zhanjun @ 2024-12-06 17:46 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Alan Previn
On 2024-12-06 11:59 a.m., Kamil Konieczny wrote:
> Hi Zhanjun,
> On 2024-12-05 at 13:57:35 -0800, Zhanjun Dong wrote:
>> 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:
>
> Please write changes after '---' so it will not enter git log.
Thanks for advise, will post another rev.
>
> Btw why testing takes so much time? 50s for one run?
> Maybe you should split it into 'reset-%s' where param
> is engine name? You could use igt_subtest_f() for that.
The test will run reset engine test on each engine, for one engine, it
takes about 7 seconds. For example, when it runs on ADLP, it take about
35 seconds. It might be more if DUT has more engines.
The test need to test over all engines, make sure no devcoredump capture
mixed with other engines, like run test on engine A but got capture for
engine B, so run on single engine will not able to do this important
condition check and is not recommended.
For multi-GPU case, as the test will fork a thread for each card, so no
need to warry about take too long time on multi-GPU case.
>
> One more nit 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(®ex, 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(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL,
>> + INDEX_ENGINE_INSTANCE, temp, false);
>> + check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL,
>> + INDEX_ENGINE_NAME, xe_engine_class_name(hwe->engine_class), true);
>> +
>> + check_item_str(®ex, lines, "Capture_source:", INDEX_KEY, INDEX_VALUE,
>> + "GuC", false);
>> + check_item_u64(®ex, lines, "ACTHD:", addr,
>> + addr + BATCH_DW_COUNT * sizeof(u32));
>> + check_item_u64(®ex, 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(®ex);
>> +}
>> +
>> +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) {
>
> Print here with igt_info() that you will test many GPUs.
The current output is:
Opened device: /dev/dri/card1
(xe_exec_capture:4171) igt_device_scan-DEBUG: Found 2 GPUs for vendor: intel
and:
(xe_exec_capture:4172) <g:0> drmtest-DEBUG: Opened GPU0 card: /dev/dri/card1
(xe_exec_capture:5118) <g:0> DEBUG: Running on engine class: 0 instance: 0
(xe_exec_capture:5121) <g:1> drmtest-DEBUG: Opened GPU1 card: /dev/dri/card2
(xe_exec_capture:5121) <g:1> DEBUG: Running on engine class: 0 instance: 0
The <g:x> indicate running on different thread
>
>> + 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 {
>
> Print here with igt_info() that you will test one GPU.
The current output for one GPU is:
Opened device: /dev/dri/card0
(xe_exec_capture:11810) igt_device_scan-DEBUG: Found 1 GPUs for vendor:
intel
(xe_exec_capture:11810) DEBUG: Running on engine class: 0 instance: 0
How do you think about the above information at debug level?
I can add igt_info output in the future. For now, I would like to merge
the test, then if any coding changes broke the capture functionality, we
can get noticed ASAP.
Regards,
Zhanjun Dong
>
> Regards,
> Kamil
>
>> + 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 [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6)
2024-12-05 21:57 [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
` (6 preceding siblings ...)
2024-12-06 17:18 ` ✓ Xe.CI.BAT: " Patchwork
@ 2024-12-06 18:59 ` Patchwork
2024-12-06 19:38 ` ✗ Xe.CI.Full: " Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06 18:59 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6)
URL : https://patchwork.freedesktop.org/series/140007/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15802_full -> IGTPW_12269_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12269_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12269_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_12269/index.html
Participating hosts (9 -> 10)
------------------------------
Additional (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12269_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_suspend@debugfs-reader:
- shard-snb: NOTRUN -> [ABORT][1] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-snb1/igt@i915_suspend@debugfs-reader.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip-atomic.html
- shard-dg2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
New tests
---------
New tests have been introduced between CI_DRM_15802_full and IGTPW_12269_full:
### New IGT tests (10) ###
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.23] 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_async_flips@invalid-async-flip-atomic@pipe-a-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.17, 0.33] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.39] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.10, 0.32] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.10] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.10] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12269_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@most-busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) +6 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@drm_fdinfo@most-busy-check-all.html
* igt@drm_fdinfo@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +7 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@drm_fdinfo@most-busy-check-all@vcs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#3936])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-1/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#3936])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#3936])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@gem_busy@semaphore.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#4873])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@gem_caching@writes.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-9/igt@gem_ccs@block-copy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@busy-create:
- shard-rkl: [PASS][21] -> [DMESG-WARN][22] ([i915#12964]) +1 other test dmesg-warn
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-rkl-5/igt@gem_create@busy-create.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@gem_create@busy-create.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#6335])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#6335])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#6335])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) +9 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-snb2/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][27] ([i915#8898])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-snb5/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [ABORT][28] ([i915#13218]) +27 other tests abort
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-tglu-1: NOTRUN -> [ABORT][29] ([i915#13218]) +4 other tests abort
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel:
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#4525])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#4812]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@gem_exec_fence@submit.html
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@gem_exec_fence@submit.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@gem_exec_reloc@basic-scanout.html
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: NOTRUN -> [ABORT][45] ([i915#7975] / [i915#8213]) +1 other test abort
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices.html
- shard-rkl: NOTRUN -> [ABORT][46] ([i915#7975] / [i915#8213]) +1 other test abort
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#12193])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-glk5/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4565])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#284])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@gem_media_vme.html
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#284])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-6/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#284])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@gem_media_vme.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#284])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@gem_media_vme.html
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#284])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@gem_media_vme.html
* igt@gem_mmap@bad-offset:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@gem_mmap@bad-offset.html
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4083]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-3/igt@gem_mmap@bad-offset.html
* igt@gem_mmap_gtt@basic-write:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-8/igt@gem_mmap_gtt@basic-write.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +7 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-snb: NOTRUN -> [WARN][68] ([i915#2658])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-snb1/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][69] ([i915#12964])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@gem_pxp@create-protected-buffer.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-context-2:
- shard-rkl: NOTRUN -> [TIMEOUT][71] ([i915#12917] / [i915#12964])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-1/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#8411])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@gem_set_tiling_vs_gtt.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3282]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4885])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4885])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4077]) +8 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@gem_userptr_blits@access-control.html
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-8/igt@gem_userptr_blits@access-control.html
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen3_render_linear_blits:
- shard-mtlp: NOTRUN -> [SKIP][90] +19 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@gen9_exec_parse@bb-start-out.html
- shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@gen9_exec_parse@unaligned-jump.html
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@gen9_exec_parse@unaligned-jump.html
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-6/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@load:
- shard-dg2: ([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], [FAIL][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141]) ([i915#13138])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-5/igt@i915_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-7/igt@i915_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-1/igt@i915_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-6/igt@i915_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-4/igt@i915_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-1/igt@i915_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-8/igt@i915_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-3/igt@i915_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-10/igt@i915_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-11/igt@i915_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-3/igt@i915_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-11/igt@i915_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-7/igt@i915_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-7/igt@i915_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-8/igt@i915_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-6/igt@i915_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-8/igt@i915_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-3/igt@i915_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-2/igt@i915_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-5/igt@i915_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-1/igt@i915_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-4/igt@i915_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-10/igt@i915_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-8/igt@i915_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-1/igt@i915_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-11/igt@i915_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-1/igt@i915_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-11/igt@i915_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-11/igt@i915_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-8/igt@i915_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-10/igt@i915_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-1/igt@i915_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-10/igt@i915_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-8/igt@i915_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@i915_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-2/igt@i915_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-10/igt@i915_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-3/igt@i915_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-3/igt@i915_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-6/igt@i915_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@i915_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-5/igt@i915_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-6/igt@i915_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-5/igt@i915_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-6/igt@i915_module_load@load.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#8399])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#8399])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-6/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#4387])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#4387])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#4387])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-6/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#8437])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-4/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][148] ([i915#4817])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-glk8/igt@i915_suspend@debugfs-reader.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#4212]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#4212]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#4212]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3555])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#9531])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#9531])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#9531])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#9531])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-10/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#5286])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#5286]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#4538] / [i915#5286])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#5286]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][161] +7 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#3638]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#3638]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#4538] / [i915#5190]) +8 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#4538]) +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][166] +49 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#6095]) +49 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#6095]) +49 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#10307] / [i915#6095]) +28 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#6095]) +33 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#12313]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#12313]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#6095]) +39 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][174] ([i915#12796])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#6095]) +9 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#12313]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#6095]) +9 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#12313]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#12313]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#7213] / [i915#9010]) +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_cdclk@mode-transition.html
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#11616] / [i915#7213])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-2/igt@kms_cdclk@mode-transition.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3742])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-4/igt@kms_cdclk@mode-transition.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3742])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#3742])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#7213]) +3 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#7828]) +6 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#7828]) +7 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#7828]) +6 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-3/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#7828]) +7 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#7828]) +7 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#3555]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555]) +3 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8814])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#8814]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#13049])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#13049]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#13049]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#13049])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#13049])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-snb: NOTRUN -> [ABORT][200] ([i915#13242]) +12 other tests abort
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-snb2/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][201] +21 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#9809]) +4 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-tglu-1: NOTRUN -> [SKIP][203] +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#5354]) +19 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [DMESG-WARN][205] ([i915#12964]) +6 other tests dmesg-warn
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-snb: NOTRUN -> [FAIL][206] ([i915#2346])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#4103])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#4213])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-flip-after-cursor-toggle:
- shard-glk: NOTRUN -> [FAIL][209] ([i915#2346]) +1 other test fail
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-glk8/igt@kms_cursor_legacy@short-flip-after-cursor-toggle.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3840]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840] / [i915#9159])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-4/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3840])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#1839])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#1839])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#1839])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][219] -> [FAIL][220] ([i915#11989]) +1 other test fail
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9934]) +6 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#3637])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#9934]) +6 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#9934]) +7 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-13/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#3637]) +6 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3637]) +8 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-tglu: NOTRUN -> [FAIL][227] ([i915#11989]) +1 other test fail
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#2672]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#8813]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#2587] / [i915#2672]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-5/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][235] ([i915#2587] / [i915#2672]) +4 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555] / [i915#8813]) +7 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][241] +27 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#3023]) +18 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#10433] / [i915#3458])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#1825]) +20 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#8708]) +10 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#1825]) +28 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#8708]) +4 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#3458]) +12 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#8708]) +12 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#3458]) +9 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#12713])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#12394])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#4816])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#4816])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#4816])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#1839]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#1839]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#6301])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@kms_panel_fitting@legacy.html
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#6301])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-2/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#6301])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-4/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#6301])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#11614] / [i915#3582]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#12247]) +23 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#12247]) +13 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#12247] / [i915#6953] / [i915#9423])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#12247] / [i915#6953])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#12247] / [i915#6953])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#12247] / [i915#6953])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#12247] / [i915#6953])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#12247]) +3 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#12247]) +16 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#12247]) +23 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#6953])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#12247] / [i915#3555] / [i915#6953])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#12343])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-4/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#12343])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#12343])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#12343])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#9685])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#9292])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [FAIL][282] ([i915#12913])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#5978])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-1/igt@kms_pm_dc@dc6-dpms.html
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#3361])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#3361])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#9519])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#9519])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#9519])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-2/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-rkl: [PASS][289] -> [SKIP][290] ([i915#9519])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#9519])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#11520]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-glk: NOTRUN -> [SKIP][293] ([i915#11520]) +4 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#12316]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#11520]) +6 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#11520]) +5 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#11520]) +3 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-8/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
- shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#11520])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][299] ([i915#11520]) +10 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-snb2/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#9732]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#1072] / [i915#9732]) +21 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#9688]) +20 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +13 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@kms_psr@psr-primary-mmap-cpu.html
* igt@kms_psr@psr-primary-render:
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#9732]) +18 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-6/igt@kms_psr@psr-primary-render.html
* igt@kms_psr@psr-sprite-blt:
- shard-snb: NOTRUN -> [SKIP][305] +536 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-snb2/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#1072] / [i915#9732]) +22 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][307] +236 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#9685]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#9685]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#9685])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#12755]) +2 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-6/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#12755]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#5289])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#3555]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8809]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc.html
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#3555]) +2 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][317] ([IGT#160])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@kms_sysfs_edid_timing.html
- shard-dg1: NOTRUN -> [FAIL][318] ([IGT#160] / [i915#6493])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_sysfs_edid_timing.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#9906])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-4/igt@kms_vrr@flip-basic-fastset.html
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#8808] / [i915#9906]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8808])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#9906]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#9906]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#9906]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@create-destroy-userspace-config:
- shard-dg2: NOTRUN -> [ABORT][325] ([i915#13218]) +18 other tests abort
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@perf@create-destroy-userspace-config.html
* igt@perf@gen12-mi-rpc:
- shard-tglu: NOTRUN -> [ABORT][326] ([i915#13218]) +25 other tests abort
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-10/igt@perf@gen12-mi-rpc.html
* igt@perf@gen12-mi-rpc@rcs0:
- shard-rkl: NOTRUN -> [ABORT][327] ([i915#13218]) +25 other tests abort
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@perf@gen12-mi-rpc@rcs0.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-glk: NOTRUN -> [ABORT][328] ([i915#13218]) +21 other tests abort
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-glk2/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-mtlp: NOTRUN -> [ABORT][329] ([i915#13218]) +25 other tests abort
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-snb: NOTRUN -> [ABORT][330] ([i915#13218]) +10 other tests abort
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-snb7/igt@perf_pmu@busy-double-start@rcs0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#3708] / [i915#4077])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#3291] / [i915#3708]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-8/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#3291] / [i915#3708]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#3708]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-14/igt@prime_vgem@fence-flip-hang.html
- shard-mtlp: NOTRUN -> [SKIP][335] ([i915#3708]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-2/igt@prime_vgem@fence-flip-hang.html
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#3708])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-7/igt@prime_vgem@fence-flip-hang.html
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#3708])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#9917])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg1-18/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- shard-tglu: NOTRUN -> [FAIL][339] ([i915#12910]) +9 other tests fail
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-tglu-5/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2:
- shard-mtlp: NOTRUN -> [FAIL][340] ([i915#12910]) +9 other tests fail
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-mtlp-8/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2.html
#### Possible fixes ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][341] ([i915#9820]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][343] ([i915#3458]) -> [SKIP][344] ([i915#10433] / [i915#3458])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][345] ([i915#1187] / [i915#12713]) -> [SKIP][346] ([i915#12713])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][347] ([i915#4281]) -> [SKIP][348] ([i915#3361])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15802/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12269/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[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#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[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#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12913
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13138
[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#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#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#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#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#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#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[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#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9010
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[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_12269
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15802: 295d653482f489249b5f827e9c9f530dcb4a1a28 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12269: d3f1851d2c6faf46bb999d887d46143459e205f5 @ 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_12269/index.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6)
2024-12-05 21:57 [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
` (7 preceding siblings ...)
2024-12-06 18:59 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-12-06 19:38 ` Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06 19:38 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 87148 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6)
URL : https://patchwork.freedesktop.org/series/140007/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8141_full -> XEIGTPW_12269_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12269_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12269_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_12269_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
- shard-lnl: NOTRUN -> [ABORT][1] +2 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-lnl: [PASS][2] -> [FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_oa@blocking@rcs-0:
- shard-bmg: NOTRUN -> [DMESG-WARN][4] +1 other test dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_oa@blocking@rcs-0.html
* igt@xe_query@query-oa-units:
- shard-bmg: [PASS][5] -> [DMESG-WARN][6] +1 other test dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-3/igt@xe_query@query-oa-units.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_query@query-oa-units.html
New tests
---------
New tests have been introduced between XEIGT_8141_full and XEIGTPW_12269_full:
### New IGT tests (1) ###
* igt@xe_exec_capture@reset:
- Statuses : 1 pass(s)
- Exec time: [54.05] s
Known issues
------------
Here are the changes found in XEIGTPW_12269_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1125])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2233])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][9] -> [FAIL][10] ([Intel XE#3701] / [Intel XE#3718])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2:
- shard-bmg: [PASS][11] -> [FAIL][12] ([Intel XE#3718])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-lnl: NOTRUN -> [FAIL][13] ([Intel XE#3719]) +3 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/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][14] ([Intel XE#911]) +3 other tests fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
- shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#1701]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3279])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2370])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) +10 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3658])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.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_12269/shard-lnl-3/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1407]) +9 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +19 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1477])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#607])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +13 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1512]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#367]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#367]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +23 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.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_12269/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-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2652] / [Intel XE#787]) +26 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#3432]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.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_12269/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2887]) +22 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2724]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#314]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1152]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#306]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_chamelium_color@ctm-negative.html
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2325]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +13 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +13 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3278])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1178]) +2 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#307]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1.html
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2390]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2341])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2321])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2321]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2320]) +7 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +10 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-bmg: [PASS][53] -> [DMESG-FAIL][54] ([Intel XE#3468]) +2 other tests dmesg-fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_cursor_edge_walk@128x128-right-edge.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +6 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291])
[56]: 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
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/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][58] ([Intel XE#2286]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#323]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2323])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2244])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2244])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#1695])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2372])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#701])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1138])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_feature_discovery@display-4x.html
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1138])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2374])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#3321]) +3 other tests fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2316])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_flip@2x-flip-vs-modeset.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-bmg: [PASS][72] -> [DMESG-WARN][73] ([Intel XE#2955] / [Intel XE#3468])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1421]) +6 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@kms_flip@2x-plain-flip.html
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2316]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: NOTRUN -> [DMESG-WARN][76] ([Intel XE#3468]) +20 other tests dmesg-warn
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@bo-too-big-interruptible:
- shard-lnl: NOTRUN -> [TIMEOUT][77] ([Intel XE#1504]) +1 other test timeout
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@kms_flip@bo-too-big-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-FAIL][78] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2293]) +8 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/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-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1397]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2380]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401]) +8 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [INCOMPLETE][84] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests incomplete
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-bmg: [PASS][85] -> [INCOMPLETE][86] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2293] / [Intel XE#2380]) +8 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1401] / [Intel XE#1745]) +8 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#651]) +20 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#656]) +66 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [FAIL][91] ([Intel XE#2333]) +14 other tests fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2311]) +32 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2352]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2350])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2312]) +23 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2313]) +26 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#3374] / [Intel XE#3544])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#3012])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2934])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2501])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2486])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format:
- shard-bmg: [PASS][102] -> [INCOMPLETE][103] ([Intel XE#1035] / [Intel XE#3468])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-3/igt@kms_plane@pixel-format.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_plane@pixel-format.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#599])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_plane_lowres@tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2393])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#3307])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +23 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-bmg: [PASS][108] -> [DMESG-WARN][109] ([Intel XE#2566])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2763]) +14 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#870])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#736])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][113] -> [FAIL][114] ([Intel XE#718])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][115] ([Intel XE#1430])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][116] ([Intel XE#2029])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1439] / [Intel XE#836])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@legacy-planes:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#3289])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@kms_pm_rpm@legacy-planes.html
* igt@kms_pm_rpm@legacy-planes@plane-50:
- shard-bmg: NOTRUN -> [DMESG-WARN][119] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests dmesg-warn
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_pm_rpm@legacy-planes@plane-50.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1439] / [Intel XE#3141])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-bmg: NOTRUN -> [INCOMPLETE][122] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2893]) +4 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#1489]) +10 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1128]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2387])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1406]) +7 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@kms_psr@psr-cursor-blt.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2234])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr@psr2-suspend:
- shard-lnl: NOTRUN -> [ABORT][130] ([Intel XE#3673]) +10 other tests abort
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2414])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2330])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1127])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#3414])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#3414]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2413]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][137] -> [SKIP][138] ([Intel XE#1435])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2450])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@query-forked-busy@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][140] ([Intel XE#3468]) +5 other tests dmesg-fail
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_vblank@query-forked-busy@pipe-a-dp-2.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2168])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_vrr@cmrr.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][142] ([Intel XE#2159]) +1 other test fail
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1499]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1499])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#756])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1091] / [Intel XE#2849])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2905]) +17 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2905]) +13 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [TIMEOUT][149] ([Intel XE#1473])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#688]) +19 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@xe_evict@evict-beng-threads-large-multi-vm.html
* igt@xe_evict@evict-large-external-cm:
- shard-bmg: [PASS][151] -> [DMESG-WARN][152] ([Intel XE#3468]) +17 other tests dmesg-warn
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_evict@evict-large-external-cm.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_evict@evict-large-external-cm.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: NOTRUN -> [FAIL][153] ([Intel XE#2364])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][154] ([Intel XE#1473] / [Intel XE#2472])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2322]) +6 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1392]) +8 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [PASS][157] -> [DMESG-WARN][158] ([Intel XE#3343] / [Intel XE#3468])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-lnl: [PASS][159] -> [DMESG-WARN][160] ([Intel XE#3467])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [PASS][161] -> [DMESG-WARN][162] ([Intel XE#3467]) +1 other test dmesg-warn
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-bmg: NOTRUN -> [DMESG-WARN][163] ([Intel XE#3467] / [Intel XE#3468])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2459] / [Intel XE#2596])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#1416])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1420] / [Intel XE#2838])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@xe_pat@pat-index-xehpc.html
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#1420])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2236])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#979])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@s2idle-basic:
- shard-lnl: NOTRUN -> [ABORT][170] ([Intel XE#1358] / [Intel XE#3673])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2284]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][172] ([Intel XE#1358] / [Intel XE#1616])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#584]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_pm@s3-vm-bind-prefetch.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [PASS][176] -> [DMESG-WARN][177] ([Intel XE#3468] / [Intel XE#569])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_pm@s3-vm-bind-userptr.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#944]) +4 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#944]) +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@xe_query@multigpu-query-mem-usage.html
#### Possible fixes ####
* igt@core_hotunplug@hotunbind-rebind:
- shard-bmg: [DMESG-WARN][181] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][182] +1 other test pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@core_hotunplug@hotunbind-rebind.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@core_hotunplug@hotunbind-rebind.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [INCOMPLETE][183] ([Intel XE#1727]) -> [PASS][184] +2 other tests pass
[183]: 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
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/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][185] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][186] +1 other test pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-bmg: [SKIP][187] ([Intel XE#2291]) -> [PASS][188] +4 other tests pass
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][189] ([Intel XE#877]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-bmg: [DMESG-FAIL][191] ([Intel XE#3468]) -> [PASS][192] +10 other tests pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [SKIP][193] ([Intel XE#2316]) -> [PASS][194] +7 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [FAIL][195] ([Intel XE#2882]) -> [PASS][196] +1 other test pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp2:
- shard-bmg: [FAIL][197] ([Intel XE#3321]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode:
- shard-bmg: [INCOMPLETE][199] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][200] +1 other test pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: [DMESG-FAIL][201] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_plane_lowres@tiling-x.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [DMESG-WARN][203] ([Intel XE#2566] / [Intel XE#3468]) -> [PASS][204]
[203]: 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
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][205] ([Intel XE#718]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-lnl: [DMESG-WARN][207] ([Intel XE#3184]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@kms_pm_rpm@cursor-dpms.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [FAIL][209] ([Intel XE#899]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [FAIL][211] ([Intel XE#1000]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_evict@evict-threads-large.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
- shard-bmg: [DMESG-WARN][213] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][214]
[213]: 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
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-shared-vm-userptr-invalidate-race:
- shard-bmg: [DMESG-WARN][215] ([Intel XE#1727]) -> [PASS][216] +2 other tests pass
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_exec_threads@threads-shared-vm-userptr-invalidate-race.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_exec_threads@threads-shared-vm-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [DMESG-WARN][217] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_module_load@load:
- shard-lnl: ([SKIP][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244]) ([Intel XE#378]) -> ([PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-4/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-7/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-3/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-8/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@xe_module_load@load.html
- shard-bmg: ([PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [SKIP][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294]) ([Intel XE#2457]) -> ([PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-3/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-1/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-3/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-1/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@xe_module_load@load.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [DMESG-WARN][320] ([Intel XE#3467]) -> [PASS][321] +3 other tests pass
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_module_load@reload-no-display.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@d3hot-mocs:
- shard-bmg: [DMESG-WARN][322] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][323] +1 other test pass
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_pm@d3hot-mocs.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: [DMESG-WARN][324] ([Intel XE#2280] / [Intel XE#3468]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_pm@s4-vm-bind-unbind-all.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][326] ([Intel XE#958]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_spin_batch@spin-all:
- shard-bmg: [DMESG-WARN][328] ([Intel XE#3468]) -> [PASS][329] +90 other tests pass
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_spin_batch@spin-all.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@xe_spin_batch@spin-all.html
* igt@xe_vm@munmap-style-unbind-many-either-side-full:
- shard-bmg: [DMESG-WARN][330] -> [PASS][331] +47 other tests pass
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_vm@munmap-style-unbind-many-either-side-full.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@xe_vm@munmap-style-unbind-many-either-side-full.html
#### Warnings ####
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][332] ([Intel XE#2341]) -> [FAIL][333] ([Intel XE#1178])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_content_protection@atomic.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][334] ([Intel XE#1188]) -> [DMESG-FAIL][335] ([Intel XE#3468]) +1 other test dmesg-fail
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_content_protection@uevent.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][336] ([Intel XE#877]) -> [SKIP][337] ([Intel XE#2291])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-bmg: [DMESG-FAIL][338] ([Intel XE#3468]) -> [FAIL][339] ([Intel XE#2141]) +1 other test fail
[338]: 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
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [SKIP][340] ([Intel XE#2316]) -> [DMESG-WARN][341] ([Intel XE#3468])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][342] ([Intel XE#2316]) -> [FAIL][343] ([Intel XE#2882])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [DMESG-WARN][344] ([Intel XE#3468]) -> [SKIP][345] ([Intel XE#2316]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][346] ([Intel XE#2311]) -> [SKIP][347] ([Intel XE#2312]) +6 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [DMESG-FAIL][348] ([Intel XE#3468]) -> [FAIL][349] ([Intel XE#2333]) +5 other tests fail
[348]: 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
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
- shard-bmg: [FAIL][350] ([Intel XE#2333]) -> [DMESG-FAIL][351] ([Intel XE#3468])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][352] ([Intel XE#2312]) -> [FAIL][353] ([Intel XE#2333]) +7 other tests fail
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [FAIL][354] ([Intel XE#2333]) -> [SKIP][355] ([Intel XE#2312]) +4 other tests skip
[354]: 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
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][356] ([Intel XE#2312]) -> [SKIP][357] ([Intel XE#2311]) +10 other tests skip
[356]: 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
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][358] ([Intel XE#2313]) -> [SKIP][359] ([Intel XE#2312]) +8 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][360] ([Intel XE#2312]) -> [SKIP][361] ([Intel XE#2313]) +15 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_vblank@query-forked-busy:
- shard-bmg: [DMESG-WARN][362] ([Intel XE#3468]) -> [DMESG-FAIL][363] ([Intel XE#3468])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_vblank@query-forked-busy.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-3/igt@kms_vblank@query-forked-busy.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: [FAIL][364] ([Intel XE#1000]) -> [TIMEOUT][365] ([Intel XE#1473])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_module_load@many-reload:
- shard-bmg: [DMESG-WARN][366] ([Intel XE#3467]) -> [DMESG-WARN][367] ([Intel XE#3467] / [Intel XE#3468])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_module_load@many-reload.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-5/igt@xe_module_load@many-reload.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [ABORT][368] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][369] ([Intel XE#3673]) +1 other test abort
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_pm@s2idle-exec-after.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-7/igt@xe_pm@s2idle-exec-after.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [SKIP][370] ([Intel XE#1130]) -> [ABORT][371] ([Intel XE#3421])
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[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#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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[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#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[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#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[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#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#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#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3289]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3289
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[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#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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[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
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8141 -> IGTPW_12269
* Linux: xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422 -> xe-2334-295d653482f489249b5f827e9c9f530dcb4a1a28
IGTPW_12269: d3f1851d2c6faf46bb999d887d46143459e205f5 @ 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-2334-295d653482f489249b5f827e9c9f530dcb4a1a28: 295d653482f489249b5f827e9c9f530dcb4a1a28
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12269/index.html
[-- Attachment #2: Type: text/html, Size: 100979 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-12-06 19:38 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-05 21:57 [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
2024-12-06 4:55 ` ✗ i915.CI.BAT: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev5) Patchwork
2024-12-06 4:57 ` ✗ Xe.CI.BAT: " Patchwork
2024-12-06 9:30 ` ✗ Xe.CI.Full: " Patchwork
2024-12-06 16:52 ` ✗ GitLab.Pipeline: warning for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6) Patchwork
2024-12-06 16:59 ` [PATCH v7] tests/intel/xe_exec_capture: Add xe_exec_capture test Kamil Konieczny
2024-12-06 17:46 ` Dong, Zhanjun
2024-12-06 17:12 ` ✓ i915.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev6) Patchwork
2024-12-06 17:18 ` ✓ Xe.CI.BAT: " Patchwork
2024-12-06 18:59 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-06 19:38 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox