* [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test
@ 2024-11-20 23:32 Zhanjun Dong
2024-11-21 1:21 ` ✓ Fi.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Zhanjun Dong @ 2024-11-20 23:32 UTC (permalink / raw)
To: igt-dev; +Cc: Zhanjun Dong, Alan Previn, Peter Senna Tschudin, Kamil Konieczny
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>
Cc: Alan Previn <alan.previn.teres.alexis@intel.com>
Cc: Peter Senna Tschudin <peter.senna@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Changes from prior revs:
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 | 462 ++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 463 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..33b92bb71
--- /dev/null
+++ b/tests/intel/xe_exec_capture.c
@@ -0,0 +1,462 @@
+// 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 <time.h>
+
+#include "igt.h"
+#include "igt_device.h"
+#include "lib/igt_syncobj.h"
+#include "lib/intel_reg.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 MAX_INSTANCE 9
+#define GT_RESET (0x1 << 0)
+#define CLOSE_FD (0x1 << 1)
+#define CLOSE_EXEC_QUEUES (0x1 << 2)
+#define VIRTUAL (0x1 << 3)
+#define PARALLEL (0x1 << 4)
+#define CAT_ERROR (0x1 << 5)
+
+#define BASE_ADDRESS 0x1a0000
+#define ADDRESS_SHIFT 39
+/* 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 ****"
+
+#define REGEX_NON_SPACE_GROUPS "^[ \t]*([^ ]+)[ \t]+([^ ]+)[ \t]*([^ ]+)*[ \t]*([^ ]+)*[ \t]*([^ ]+)*[ \t]*$"
+#define REGEX_NON_SPACE_GROUPS_COUNT 6
+
+#define INDEX_KEY 1
+#define INDEX_VLAUE 2
+#define INDEX_ENGINE_PHYSICAL 2
+#define INDEX_ENGINE_NAME 1
+#define INDEX_ENGINE_INSTANCE 4
+
+typedef u32 uint32_t;
+typedef u64 uint64_t;
+
+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(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 = -1, 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
+ */
+ fgets(buf, LINE_BUF_SIZE, fd);
+ start_line++;
+
+ if (skip) {
+ /* Skip all lines before START_TAG */
+ if (strncmp(START_TAG, buf, strlen(START_TAG))) {
+ continue;
+ } else {
+ skip = false;
+ /* start_line start from 0, adjust to start from 1 */
+ start_line++;
+ }
+ }
+
+ /* Stop on END_TAG */
+ if (!strncmp(END_TAG, buf, strlen(END_TAG)))
+ break;
+
+ /* Only save up to MAX_LINE_LEN to buffer */
+ safe_strncpy(lines[i++], buf, MAX_LINE_LEN);
+ }
+ 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_VLAUE)),
+ "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;
+ 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) {
+ int rand_cid = rand() & 0xF;
+ const u64 addr = BASE_ADDRESS | ((u64)rand_cid << 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_VLAUE,
+ "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);
+ /* Seed random number with current time */
+ srand(time(NULL));
+ }
+
+ igt_subtest("reset") {
+ int gpu_count = drm_prepare_filtered_multigpu(DRIVER_XE);
+
+ igt_require(xe > 0);
+ if (gpu_count >= 2) {
+ igt_multi_fork(child, gpu_count) {
+ int gpu_fd;
+
+ gpu_fd = drm_open_filtered_card(child);
+ igt_assert_f(gpu_fd > 0, "cannot open gpu-%d, errno=%d\n", child,
+ errno);
+ igt_assert(is_xe_device(gpu_fd));
+
+ test_card(gpu_fd);
+ drm_close_driver(gpu_fd);
+ }
+ igt_waitchildren();
+ } else {
+ test_card(xe);
+ }
+ }
+
+ igt_fixture
+ drm_close_driver(xe);
+}
diff --git a/tests/meson.build b/tests/meson.build
index 2724c7a9a..a6750d523 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -285,6 +285,7 @@ intel_xe_progs = [
'xe_exec_atomic',
'xe_exec_balancer',
'xe_exec_basic',
+ 'xe_exec_capture',
'xe_exec_compute_mode',
'xe_exec_fault_mode',
'xe_exec_mix_modes',
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* ✓ Fi.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) 2024-11-20 23:32 [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong @ 2024-11-21 1:21 ` Patchwork 2024-11-21 12:44 ` ✗ Xe.CI.Full: failure " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-11-21 1:21 UTC (permalink / raw) To: Zhanjun Dong; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6527 bytes --] == Series Details == Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) URL : https://patchwork.freedesktop.org/series/140007/ State : success == Summary == CI Bug Log - changes from IGT_8118 -> IGTPW_12154 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/index.html Participating hosts (46 -> 45) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12154 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/bat-apl-1/igt@dmabuf@all-tests.html * igt@fbdev@info: - fi-kbl-8809g: [PASS][3] -> [SKIP][4] ([i915#1849]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-kbl-8809g/igt@fbdev@info.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/fi-kbl-8809g/igt@fbdev@info.html * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][5] -> [FAIL][6] ([i915#12903]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-mtlp-6: [PASS][7] -> [ABORT][8] ([i915#12829]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-6/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/bat-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][9] -> [ABORT][10] ([i915#12915]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_flip@basic-plain-flip: - fi-kbl-8809g: [PASS][11] -> [SKIP][12] +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-kbl-8809g/igt@kms_flip@basic-plain-flip.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/fi-kbl-8809g/igt@kms_flip@basic-plain-flip.html #### Possible fixes #### * igt@i915_module_load@load: - bat-twl-2: [DMESG-WARN][13] ([i915#1982]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/bat-twl-2/igt@i915_module_load@load.html * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [FAIL][15] ([i915#12903]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@kms_addfb_basic@too-high: - fi-kbl-8809g: [FAIL][17] ([i915#12900]) -> [PASS][18] +37 other tests pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html * igt@kms_force_connector_basic@prune-stale-modes: - fi-kbl-8809g: [SKIP][19] -> [PASS][20] +4 other tests pass [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-kbl-8809g/igt@kms_force_connector_basic@prune-stale-modes.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/fi-kbl-8809g/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-apl-1: [DMESG-WARN][21] ([i915#12918]) -> [PASS][22] +2 other tests pass [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Warnings #### * igt@i915_selftest@live@workarounds: - bat-mtlp-8: [ABORT][23] ([i915#12061]) -> [ABORT][24] ([i915#12915]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/bat-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - fi-kbl-8809g: [FAIL][25] ([i915#12902]) -> [SKIP][26] +5 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-kbl-8809g/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/fi-kbl-8809g/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829 [i915#12900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12900 [i915#12902]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12902 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#12915]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12915 [i915#12918]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12918 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8118 -> IGTPW_12154 * Linux: CI_DRM_15720 -> CI_DRM_15725 CI-20190529: 20190529 CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15725: e46649e7764a9f6868ccbcba7b8b23b413303380 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12154: 512463c197faa9c5ca487f120f03db8481bdbbcd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/index.html [-- Attachment #2: Type: text/html, Size: 7612 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) 2024-11-20 23:32 [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong 2024-11-21 1:21 ` ✓ Fi.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) Patchwork @ 2024-11-21 12:44 ` Patchwork 2024-11-21 17:42 ` [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Dong, Zhanjun ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-11-21 12:44 UTC (permalink / raw) To: Zhanjun Dong; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 137223 bytes --] == Series Details == Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) URL : https://patchwork.freedesktop.org/series/140007/ State : failure == Summary == CI Bug Log - changes from XEIGT_8118_full -> XEIGTPW_12154_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12154_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12154_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_12154_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b: - shard-bmg: [PASS][2] -> [DMESG-WARN][3] +1 other test dmesg-warn [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b.html #### Warnings #### * igt@core_hotunplug@hotreplug: - shard-bmg: [DMESG-WARN][4] ([Intel XE#3521]) -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@core_hotunplug@hotreplug.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@core_hotunplug@hotreplug.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [SKIP][6] ([Intel XE#2136] / [Intel XE#2351]) -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-bmg: [SKIP][8] ([Intel XE#2763]) -> [INCOMPLETE][9] +1 other test incomplete [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-lnl: [FAIL][10] ([Intel XE#3499]) -> [FAIL][11] +4 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html - shard-bmg: [FAIL][12] ([Intel XE#3499]) -> [FAIL][13] +2 other tests fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-bmg: [DMESG-FAIL][14] ([Intel XE#3467]) -> [FAIL][15] +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html New tests --------- New tests have been introduced between XEIGT_8118_full and XEIGTPW_12154_full: ### New IGT tests (1) ### * igt@xe_exec_capture@reset: - Statuses : 3 pass(s) - Exec time: [35.74, 50.16] s Known issues ------------ Here are the changes found in XEIGTPW_12154_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getversion@basic: - shard-dg2-set2: NOTRUN -> [FAIL][16] ([Intel XE#3440]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@core_getversion@basic.html * igt@core_hotunplug@unplug-rescan: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1885]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@core_hotunplug@unplug-rescan.html * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [PASS][18] -> [FAIL][19] ([Intel XE#3249]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@core_setmaster@master-drop-set-root.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@write: - shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#2134]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@fbdev@write.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@fbdev@write.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#3279]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-transition@pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [DMESG-WARN][23] ([Intel XE#3468]) +13 other tests dmesg-warn [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_atomic_transition@plane-all-transition@pipe-b-hdmi-a-3.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1407]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2327]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +6 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2191]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2314] / [Intel XE#2894]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2191]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#787]) +83 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +8 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +11 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#3433]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#455] / [Intel XE#787]) +14 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-5/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2325]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2252]) +5 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#373]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#1178]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#307]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2341]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#1188]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#308]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2320]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#2321]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1424]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2321]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#309]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][60] -> [DMESG-WARN][61] ([Intel XE#877]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][62] ([Intel XE#877]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2291]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-bmg: [PASS][64] -> [DMESG-FAIL][65] ([Intel XE#3468]) +6 other tests dmesg-fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1508]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2425]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1340]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#3070]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#2244]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2244]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1138]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@kms_feature_discovery@display-4x.html - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#1138]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [PASS][75] -> [SKIP][76] ([Intel XE#2423] / [i915#2575]) +97 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][77] -> [FAIL][78] ([Intel XE#3321] / [Intel XE#3487]) +1 other test fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3: - shard-bmg: [PASS][79] -> [FAIL][80] ([Intel XE#2882]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1421]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-4/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][82] -> [DMESG-WARN][83] ([Intel XE#1727]) +1 other test dmesg-warn [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-hdmi-a6-dp4.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][84] ([Intel XE#3468]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][85] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests dmesg-fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2316]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_flip@2x-nonexisting-fb.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2316]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@dpms-vs-vblank-race: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2423] / [i915#2575]) +32 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_flip@dpms-vs-vblank-race.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_flip@wf_vblank-ts-check@b-edp1: - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#886]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@b-edp1.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][94] ([Intel XE#1727] / [Intel XE#3468]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1397] / [Intel XE#1745]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1397]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-4/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][97] ([Intel XE#2380]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#455]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/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: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2136]) +35 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1401]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2293]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#651]) +8 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#651]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2311]) +14 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [FAIL][108] ([Intel XE#2333]) +6 other tests fail [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][109] -> [SKIP][110] ([Intel XE#2136]) +35 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2312]) +6 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#656]) +21 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#658]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2352]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#653]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2313]) +12 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1503]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#3012]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3: - shard-bmg: [PASS][119] -> [INCOMPLETE][120] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][121] -> [SKIP][122] ([Intel XE#2571]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2763]) +8 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: - shard-dg2-set2: [PASS][124] -> [INCOMPLETE][125] ([Intel XE#1727]) +1 other test incomplete [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2763]) +11 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +9 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#718]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][131] ([Intel XE#3527]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2446]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-set2: [PASS][133] -> [SKIP][134] ([Intel XE#2446]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2-set2: [PASS][135] -> [DMESG-WARN][136] ([Intel XE#3468]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@dpms-non-lpsp.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1439] / [Intel XE#3141]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@universal-planes@plane-59: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][138] ([Intel XE#3468]) +4 other tests dmesg-warn [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_pm_rpm@universal-planes@plane-59.html * igt@kms_pm_rpm@universal-planes@plane-77: - shard-bmg: [PASS][139] -> [DMESG-WARN][140] ([Intel XE#1727] / [Intel XE#3468]) +15 other tests dmesg-warn [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_pm_rpm@universal-planes@plane-77.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_pm_rpm@universal-planes@plane-77.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][141] ([Intel XE#1727] / [Intel XE#3468]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_pm_rpm@universal-planes@plane-77.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2893]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1489]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1489]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2387]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_psr2_su@page_flip-p010.html - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1128]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1406]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-5/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#3414]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@kms_rotation_crc@bad-pixel-format.html - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#3414]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-4/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2330]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1499]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-fb-id: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#756]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-2/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#756]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html * igt@testdisplay: - shard-dg2-set2: [PASS][156] -> [SKIP][157] ([Intel XE#2423]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@testdisplay.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@testdisplay.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#1123]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0xfd.html * igt@xe_eudebug@basic-close: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#2905]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-2/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2905]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2905]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][162] ([Intel XE#1473]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][163] -> [TIMEOUT][164] ([Intel XE#1473] / [Intel XE#2472]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#688]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1130]) +74 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2322]) +6 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#1392]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-1/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#288]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html * igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate: - shard-bmg: [PASS][170] -> [DMESG-WARN][171] ([Intel XE#3468]) +33 other tests dmesg-warn [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-bmg: [PASS][172] -> [DMESG-FAIL][173] ([Intel XE#3371]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate: - shard-bmg: [PASS][174] -> [DMESG-FAIL][175] ([Intel XE#3371] / [Intel XE#3468]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-bmg: [PASS][176] -> [DMESG-WARN][177] ([Intel XE#3467] / [Intel XE#3468]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-dg2-set2: [PASS][178] -> [SKIP][179] ([Intel XE#2229]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html - shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#2229]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-8/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][181] ([Intel XE#1999]) +1 other test fail [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#2457]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@xe_module_load@force-load.html * igt@xe_module_load@many-reload: - shard-bmg: [PASS][183] -> [DMESG-FAIL][184] ([Intel XE#3467]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_module_load@many-reload.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@xe_module_load@many-reload.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [PASS][185] -> [FAIL][186] ([Intel XE#2514]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-2/igt@xe_oa@oa-regs-whitelisted.html - shard-bmg: [PASS][187] -> [FAIL][188] ([Intel XE#2514]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_oa@oa-regs-whitelisted@ccs-0: - shard-bmg: NOTRUN -> [FAIL][189] ([Intel XE#2514]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@xe_oa@oa-regs-whitelisted@ccs-0.html * igt@xe_oa@oa-regs-whitelisted@rcs-0: - shard-lnl: NOTRUN -> [FAIL][190] ([Intel XE#2514]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-2/igt@xe_oa@oa-regs-whitelisted@rcs-0.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#2248]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_oa@syncs-syncobj-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#2541]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@xe_oa@syncs-syncobj-wait-cfg.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][193] ([Intel XE#1173]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#2284] / [Intel XE#366]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-2/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mmap-vram: - shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#2284]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][196] -> [SKIP][197] ([Intel XE#1130]) +173 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_pm@s2idle-exec-after.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s3-basic: - shard-bmg: [PASS][198] -> [DMESG-WARN][199] ([Intel XE#3468] / [Intel XE#569]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_pm@s3-basic.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@xe_pm@s3-basic.html * igt@xe_pm_residency@cpg-basic: - shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#584]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-1/igt@xe_pm_residency@cpg-basic.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][201] -> [FAIL][202] ([Intel XE#958]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][203] ([Intel XE#944]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#3342]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-3/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_wedged@basic-wedged: - shard-bmg: NOTRUN -> [DMESG-WARN][205] ([Intel XE#2919]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@core_getstats: - shard-dg2-set2: [SKIP][206] ([Intel XE#2423]) -> [PASS][207] +1 other test pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_getstats.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@core_getstats.html * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: [DMESG-WARN][208] ([Intel XE#3521]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@core_hotunplug@hotunbind-rebind.html * igt@core_hotunplug@hotunplug-rescan: - shard-lnl: [ABORT][210] -> [PASS][211] +2 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@core_hotunplug@hotunplug-rescan.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-3/igt@core_hotunplug@hotunplug-rescan.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [SKIP][212] ([Intel XE#3453]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@core_setmaster@master-drop-set-shared-fd.html * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [FAIL][214] ([Intel XE#3339]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@core_setmaster@master-drop-set-user.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [SKIP][216] ([Intel XE#2423] / [i915#2575]) -> [PASS][217] +85 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: [INCOMPLETE][218] ([Intel XE#2613]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3: - shard-bmg: [INCOMPLETE][220] -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [DMESG-FAIL][222] ([Intel XE#3468]) -> [PASS][223] +26 other tests pass [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-lnl: [INCOMPLETE][224] ([Intel XE#3466]) -> [PASS][225] +1 other test pass [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-8/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][226] ([Intel XE#2705]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_dirtyfb@default-dirtyfb-ioctl: - shard-bmg: [DMESG-WARN][228] -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_dirtyfb@default-dirtyfb-ioctl.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_dirtyfb@default-dirtyfb-ioctl.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [INCOMPLETE][230] ([Intel XE#2597]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3: - shard-bmg: [DMESG-WARN][232] ([Intel XE#3468]) -> [PASS][233] +125 other tests pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-bmg: [DMESG-WARN][234] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@flip-vs-panning-interruptible.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@wf_vblank-ts-check@c-edp1: - shard-lnl: [FAIL][236] ([Intel XE#886]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-dg2-set2: [SKIP][238] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][239] +15 other tests pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2-set2: [SKIP][240] ([Intel XE#2136]) -> [PASS][241] +16 other tests pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][242] ([Intel XE#1503]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_hdr@invalid-hdr.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_hdr@invalid-hdr.html * igt@kms_plane_cursor@primary: - shard-lnl: [DMESG-WARN][244] ([Intel XE#3466]) -> [PASS][245] +44 other tests pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_plane_cursor@primary.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-2/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: [DMESG-WARN][246] ([Intel XE#2566]) -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][248] ([Intel XE#1430]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@cursor: - shard-dg2-set2: [SKIP][250] ([Intel XE#2446]) -> [PASS][251] +1 other test pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_rpm@cursor.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_pm_rpm@cursor.html * igt@kms_psr@psr2-sprite-render: - shard-lnl: [FAIL][252] ([Intel XE#3536]) -> [PASS][253] +1 other test pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_psr@psr2-sprite-render.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-6/igt@kms_psr@psr2-sprite-render.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][254] ([Intel XE#2883]) -> [PASS][255] +2 other tests pass [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [FAIL][256] ([Intel XE#899]) -> [PASS][257] +1 other test pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vblank@query-busy: - shard-bmg: [INCOMPLETE][258] ([Intel XE#1727]) -> [PASS][259] +2 other tests pass [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_vblank@query-busy.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_vblank@query-busy.html * igt@xe_exec_basic@many-null-rebind: - shard-dg2-set2: [SKIP][260] ([Intel XE#1130]) -> [PASS][261] +150 other tests pass [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [INCOMPLETE][262] ([Intel XE#1195]) -> [PASS][263] +1 other test pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_basic@twice-userptr: - shard-dg2-set2: [DMESG-WARN][264] ([Intel XE#1727]) -> [PASS][265] +2 other tests pass [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_exec_basic@twice-userptr.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@xe_exec_basic@twice-userptr.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate: - shard-lnl: [DMESG-WARN][266] ([Intel XE#3371]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-4/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [TIMEOUT][268] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][269] +1 other test pass [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_live_ktest@xe_bo.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_live_ktest@xe_bo.html - shard-lnl: [DMESG-FAIL][270] ([Intel XE#3466]) -> [PASS][271] +9 other tests pass [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_live_ktest@xe_bo.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-8/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-bmg: [INCOMPLETE][272] ([Intel XE#2998]) -> [PASS][273] +1 other test pass [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][274] ([Intel XE#1192]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@xe_live_ktest@xe_mocs.html * igt@xe_module_load@reload-no-display: - shard-bmg: [DMESG-WARN][276] ([Intel XE#3467]) -> [PASS][277] +2 other tests pass [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_module_load@reload-no-display.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@xe_module_load@reload-no-display.html - shard-dg2-set2: [FAIL][278] ([Intel XE#2136]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_module_load@reload-no-display.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_module_load@reload-no-display.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][280] ([Intel XE#569]) -> [PASS][281] +1 other test pass [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-basic-exec.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [DMESG-WARN][282] ([Intel XE#569]) -> [PASS][283] +1 other test pass [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm_residency@gt-c6-freeze@gt1: - shard-bmg: [DMESG-FAIL][284] ([Intel XE#1727]) -> [PASS][285] +1 other test pass [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@xe_pm_residency@gt-c6-freeze@gt1.html * igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer: - shard-bmg: [DMESG-WARN][286] ([Intel XE#1727]) -> [PASS][287] +9 other tests pass [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html #### Warnings #### * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [SKIP][288] ([Intel XE#1885]) -> [DMESG-WARN][289] ([Intel XE#3468]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@core_hotunplug@hotunplug-rescan.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][290] ([Intel XE#316]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][292] ([Intel XE#2136]) -> [SKIP][293] ([Intel XE#316]) +3 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][294] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][295] ([Intel XE#316]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][296] ([Intel XE#316]) -> [SKIP][297] ([Intel XE#2136]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][298] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][299] ([Intel XE#1124]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][300] ([Intel XE#1124]) -> [SKIP][301] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][302] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][303] ([Intel XE#619]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][304] ([Intel XE#2136]) -> [SKIP][305] ([Intel XE#610]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#1124]) +7 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][308] ([Intel XE#1124]) -> [SKIP][309] ([Intel XE#2136]) +11 other tests skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: [SKIP][310] ([Intel XE#2423] / [i915#2575]) -> [SKIP][311] ([Intel XE#367]) +4 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: [SKIP][312] ([Intel XE#2423] / [i915#2575]) -> [SKIP][313] ([Intel XE#2191]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][314] ([Intel XE#2191]) -> [SKIP][315] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][316] ([Intel XE#367]) -> [SKIP][317] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][318] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][319] ([Intel XE#2136]) +12 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][320] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][321] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][322] ([Intel XE#2136]) -> [SKIP][323] ([Intel XE#2907]) +2 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][324] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][326] ([Intel XE#2136]) -> [SKIP][327] ([Intel XE#3442]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][328] ([Intel XE#2136]) -> [SKIP][329] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg2-set2: [SKIP][330] ([Intel XE#306]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: [SKIP][332] ([Intel XE#2423] / [i915#2575]) -> [SKIP][333] ([Intel XE#306]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: [SKIP][334] ([Intel XE#2423] / [i915#2575]) -> [SKIP][335] ([Intel XE#373]) +9 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][336] ([Intel XE#373]) -> [SKIP][337] ([Intel XE#2423] / [i915#2575]) +16 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_color@invalid-degamma-lut-sizes: - shard-dg2-set2: [DMESG-WARN][338] ([Intel XE#1727]) -> [SKIP][339] ([Intel XE#2423] / [i915#2575]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_color@invalid-degamma-lut-sizes.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_color@invalid-degamma-lut-sizes.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][340] ([Intel XE#2423] / [i915#2575]) -> [FAIL][341] ([Intel XE#1178]) +1 other test fail [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][342] ([Intel XE#2423] / [i915#2575]) -> [SKIP][343] ([Intel XE#307]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][344] ([Intel XE#307]) -> [SKIP][345] ([Intel XE#2423] / [i915#2575]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][346] ([Intel XE#1178]) -> [INCOMPLETE][347] ([Intel XE#2715] / [Intel XE#3468]) +3 other tests incomplete [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_content_protection@legacy.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-dg2-set2: [FAIL][348] ([Intel XE#1178]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_content_protection@srm.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2-set2: [SKIP][350] ([Intel XE#2423] / [i915#2575]) -> [FAIL][351] ([Intel XE#1188]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_content_protection@uevent.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: [SKIP][352] ([Intel XE#308]) -> [SKIP][353] ([Intel XE#2423] / [i915#2575]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_edge_walk@128x128-left-edge: - shard-bmg: [DMESG-FAIL][354] ([Intel XE#3468]) -> [DMESG-WARN][355] ([Intel XE#3468]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_cursor_edge_walk@128x128-left-edge.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_cursor_edge_walk@128x128-left-edge.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][356] ([Intel XE#2423] / [i915#2575]) -> [SKIP][357] ([Intel XE#323]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2-set2: [SKIP][358] ([Intel XE#323]) -> [SKIP][359] ([Intel XE#2423] / [i915#2575]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-dg2-set2: [FAIL][360] ([Intel XE#1475]) -> [SKIP][361] ([Intel XE#2423] / [i915#2575]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2-set2: [SKIP][362] ([Intel XE#455]) -> [SKIP][363] ([Intel XE#2136] / [Intel XE#2351]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-set2: [SKIP][364] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][365] ([Intel XE#455]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_dsc@dsc-with-formats.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [DMESG-FAIL][366] ([Intel XE#3468]) -> [FAIL][367] ([Intel XE#1695]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][368] ([Intel XE#776]) -> [SKIP][369] ([Intel XE#2136]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_fbcon_fbt@psr.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][370] ([Intel XE#2423] / [i915#2575]) -> [SKIP][371] ([Intel XE#703]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_feature_discovery@display-3x.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][372] ([Intel XE#2423] / [i915#2575]) -> [SKIP][373] ([Intel XE#1135]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_feature_discovery@psr1.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][374] ([Intel XE#1135]) -> [SKIP][375] ([Intel XE#2423] / [i915#2575]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_feature_discovery@psr2.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][376] ([Intel XE#2882]) -> [SKIP][377] ([Intel XE#2316]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2-set2: [FAIL][378] ([Intel XE#301]) -> [SKIP][379] ([Intel XE#2423] / [i915#2575]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [DMESG-FAIL][380] ([Intel XE#1727]) -> [SKIP][381] ([Intel XE#2423] / [i915#2575]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@wf_vblank-ts-check: - shard-lnl: [FAIL][382] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][383] ([Intel XE#886]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [SKIP][384] ([Intel XE#2136]) -> [INCOMPLETE][385] ([Intel XE#1727] / [Intel XE#3468]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2-set2: [INCOMPLETE][386] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][387] ([Intel XE#2136]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [INCOMPLETE][388] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][389] ([Intel XE#2136] / [Intel XE#2351]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][390] ([Intel XE#455]) -> [SKIP][391] ([Intel XE#2136]) +2 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][392] ([Intel XE#2136]) -> [SKIP][393] ([Intel XE#455]) +4 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][394] ([Intel XE#2136]) -> [SKIP][395] ([Intel XE#651]) +21 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][396] ([Intel XE#651]) -> [SKIP][397] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][398] ([Intel XE#651]) -> [SKIP][399] ([Intel XE#2136]) +26 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][400] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][401] ([Intel XE#651]) +8 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-bmg: [INCOMPLETE][402] ([Intel XE#3468]) -> [FAIL][403] ([Intel XE#2333]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][404] ([Intel XE#3468]) -> [SKIP][405] ([Intel XE#2312]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [DMESG-FAIL][406] ([Intel XE#3468]) -> [FAIL][407] ([Intel XE#2333]) +10 other tests fail [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: [INCOMPLETE][408] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][409] ([Intel XE#2136]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [FAIL][410] ([Intel XE#2333]) -> [SKIP][411] ([Intel XE#2312]) +6 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [FAIL][412] ([Intel XE#2333]) -> [DMESG-FAIL][413] ([Intel XE#3468]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][414] ([Intel XE#658]) -> [SKIP][415] ([Intel XE#2136] / [Intel XE#2351]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][416] ([Intel XE#2311]) -> [SKIP][417] ([Intel XE#2312]) +21 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][418] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][419] ([Intel XE#653]) +10 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][420] ([Intel XE#2313]) -> [SKIP][421] ([Intel XE#2312]) +21 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][422] ([Intel XE#653]) -> [SKIP][423] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][424] ([Intel XE#653]) -> [SKIP][425] ([Intel XE#2136]) +27 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][426] ([Intel XE#2136]) -> [SKIP][427] ([Intel XE#653]) +19 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][428] ([Intel XE#605]) -> [SKIP][429] ([Intel XE#2423] / [i915#2575]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: [SKIP][430] ([Intel XE#3374]) -> [SKIP][431] ([Intel XE#3374] / [Intel XE#3544]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-lnl-8/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: [SKIP][432] ([Intel XE#3374]) -> [SKIP][433] ([Intel XE#3374] / [Intel XE#3544]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][434] ([Intel XE#2136]) -> [SKIP][435] ([Intel XE#2927]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][436] ([Intel XE#2136]) -> [SKIP][437] ([Intel XE#346]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][438] ([Intel XE#2925]) -> [SKIP][439] ([Intel XE#2136]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][440] ([Intel XE#2423] / [i915#2575]) -> [SKIP][441] ([Intel XE#356]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][442] ([Intel XE#616]) -> [SKIP][443] ([Intel XE#2423] / [i915#2575]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_plane_cursor@primary.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: [SKIP][444] ([Intel XE#2423] / [i915#2575]) -> [SKIP][445] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][446] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][447] ([Intel XE#2423] / [i915#2575]) +1 other test skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][448] ([Intel XE#870]) -> [SKIP][449] ([Intel XE#2136]) +2 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_pm_backlight@fade.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][450] ([Intel XE#2136]) -> [SKIP][451] ([Intel XE#870]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][452] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][453] ([Intel XE#908]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2-set2: [SKIP][454] ([Intel XE#2136]) -> [FAIL][455] ([Intel XE#3527]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_lpsp@kms-lpsp.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@basic-rte: - shard-dg2-set2: [ABORT][456] ([Intel XE#3468]) -> [SKIP][457] ([Intel XE#2446]) +2 other tests skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_pm_rpm@basic-rte.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2-set2: [SKIP][458] ([Intel XE#2446]) -> [ABORT][459] ([Intel XE#3468]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_rpm@dpms-lpsp.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [INCOMPLETE][460] ([Intel XE#2864]) -> [INCOMPLETE][461] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_pm_rpm@universal-planes: - shard-dg2-set2: [SKIP][462] ([Intel XE#2446]) -> [DMESG-WARN][463] ([Intel XE#2042] / [Intel XE#3468]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_rpm@universal-planes.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_pm_rpm@universal-planes.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][464] ([Intel XE#1489]) -> [SKIP][465] ([Intel XE#2136]) +11 other tests skip [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][466] ([Intel XE#2136]) -> [SKIP][467] ([Intel XE#1489]) +11 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][468] ([Intel XE#1122]) -> [SKIP][469] ([Intel XE#2136]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][470] ([Intel XE#2136]) -> [SKIP][471] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][472] ([Intel XE#2351]) -> [SKIP][473] ([Intel XE#2850] / [Intel XE#929]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr@psr-cursor-plane-move.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][474] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][475] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr@psr-dpms.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr-sprite-blt: - shard-dg2-set2: [SKIP][476] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][477] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@psr-sprite-blt.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_psr@psr-sprite-blt.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][478] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][479] ([Intel XE#2351]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr@psr-sprite-plane-onoff.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][480] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][481] ([Intel XE#2136]) +14 other tests skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_psr@psr2-sprite-plane-move.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_psr@psr2-sprite-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][482] ([Intel XE#2136]) -> [SKIP][483] ([Intel XE#2939]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: [SKIP][484] ([Intel XE#3414]) -> [SKIP][485] ([Intel XE#2423] / [i915#2575]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][486] ([Intel XE#1127]) -> [SKIP][487] ([Intel XE#2423] / [i915#2575]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2-set2: [SKIP][488] ([Intel XE#2423] / [i915#2575]) -> [SKIP][489] ([Intel XE#3414]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg2-set2: [SKIP][490] ([Intel XE#2423] / [i915#2575]) -> [SKIP][491] ([Intel XE#455]) +7 other tests skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-center.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][492] ([Intel XE#2426]) -> [SKIP][493] ([Intel XE#2509]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2-set2: [SKIP][494] ([Intel XE#2423] / [i915#2575]) -> [SKIP][495] ([Intel XE#1500]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][496] ([Intel XE#455]) -> [SKIP][497] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_vrr@flip-dpms.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@negative-basic: - shard-bmg: [INCOMPLETE][498] -> [SKIP][499] ([Intel XE#1499]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_vrr@negative-basic.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-6/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][500] ([Intel XE#756]) -> [SKIP][501] ([Intel XE#2423] / [i915#2575]) +1 other test skip [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][502] ([Intel XE#2423] / [i915#2575]) -> [SKIP][503] ([Intel XE#1091] / [Intel XE#2849]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][504] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][505] ([Intel XE#1130]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][506] ([Intel XE#1130]) -> [SKIP][507] ([Intel XE#1126]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][508] ([Intel XE#1126]) -> [SKIP][509] ([Intel XE#1130]) +1 other test skip [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][510] ([Intel XE#1130]) -> [SKIP][511] ([Intel XE#2905]) +10 other tests skip [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_eudebug@basic-close.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: [SKIP][512] ([Intel XE#2905]) -> [SKIP][513] ([Intel XE#1130]) +13 other tests skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_eudebug@basic-vm-access-parameters.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [SKIP][514] ([Intel XE#1130]) -> [FAIL][515] ([Intel XE#1600]) [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][516] ([Intel XE#1473]) -> [SKIP][517] ([Intel XE#1130]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_balancer@many-execqueues-virtual-rebind: - shard-dg2-set2: [DMESG-WARN][518] ([Intel XE#1727]) -> [SKIP][519] ([Intel XE#1130]) +2 other tests skip [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: [SKIP][520] ([Intel XE#288]) -> [SKIP][521] ([Intel XE#1130]) +36 other tests skip [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_fault_mode@once-rebind-imm: - shard-dg2-set2: [SKIP][522] ([Intel XE#1130]) -> [SKIP][523] ([Intel XE#288]) +27 other tests skip [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_exec_fault_mode@once-rebind-imm.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-imm.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#2360]) +1 other test skip [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-dg2-set2: [DMESG-WARN][526] ([Intel XE#3343]) -> [SKIP][527] ([Intel XE#1130]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-bmg: [DMESG-WARN][528] ([Intel XE#3343]) -> [DMESG-WARN][529] ([Intel XE#3343] / [Intel XE#3468]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-dg2-set2: [DMESG-WARN][530] ([Intel XE#3467]) -> [SKIP][531] ([Intel XE#1130]) +2 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [SKIP][532] ([Intel XE#1130]) -> [DMESG-WARN][533] ([Intel XE#3467]) +2 other tests dmesg-warn [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html - shard-bmg: [DMESG-WARN][534] ([Intel XE#3467]) -> [DMESG-WARN][535] ([Intel XE#3467] / [Intel XE#3468]) [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [SKIP][536] ([Intel XE#1192]) -> [FAIL][537] ([Intel XE#1999]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_live_ktest@xe_mocs.html * igt@xe_mmap@small-bar: - shard-dg2-set2: [SKIP][538] ([Intel XE#1130]) -> [SKIP][539] ([Intel XE#512]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_mmap@small-bar.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-433/igt@xe_mmap@small-bar.html * igt@xe_module_load@many-reload: - shard-dg2-set2: [FAIL][540] ([Intel XE#2136]) -> [FAIL][541] ([Intel XE#3546]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_module_load@many-reload.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@xe_module_load@many-reload.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][542] ([Intel XE#2136]) -> [DMESG-WARN][543] ([Intel XE#3467]) [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_module_load@reload.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-436/igt@xe_module_load@reload.html * igt@xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: [SKIP][544] ([Intel XE#2541]) -> [SKIP][545] ([Intel XE#1130]) +8 other tests skip [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_oa@non-privileged-map-oa-buffer.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_oa@non-privileged-map-oa-buffer.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: [SKIP][546] ([Intel XE#1130]) -> [SKIP][547] ([Intel XE#2541]) +8 other tests skip [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_oa@polling-small-buf.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_oa@polling-small-buf.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][548] ([Intel XE#1337]) -> [SKIP][549] ([Intel XE#1130]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xelp: - shard-bmg: [SKIP][550] ([Intel XE#2237] / [Intel XE#2245]) -> [SKIP][551] ([Intel XE#2245]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pat@pat-index-xelp.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-bmg-8/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@read: - shard-dg2-set2: [SKIP][552] ([Intel XE#1061]) -> [FAIL][553] ([Intel XE#1173]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_peer2peer@read.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_peer2peer@read.html * igt@xe_peer2peer@write: - shard-dg2-set2: [FAIL][554] ([Intel XE#1173]) -> [SKIP][555] ([Intel XE#1061]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_peer2peer@write.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][556] ([Intel XE#1130]) -> [SKIP][557] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][558] ([Intel XE#2284]) -> [SKIP][559] ([Intel XE#1130]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_pm@d3cold-mocs.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][560] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][561] ([Intel XE#1130]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-mocs: - shard-dg2-set2: [SKIP][562] ([Intel XE#1130]) -> [DMESG-WARN][563] ([Intel XE#1727] / [Intel XE#3468]) [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pm@s3-mocs.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_pm@s3-mocs.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][564] ([Intel XE#579]) -> [SKIP][565] ([Intel XE#1130]) [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][566] ([Intel XE#944]) -> [SKIP][567] ([Intel XE#1130]) +3 other tests skip [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_query@multigpu-query-oa-units.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-dg2-set2: [SKIP][568] ([Intel XE#1130]) -> [SKIP][569] ([Intel XE#944]) +2 other tests skip [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-huc.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][570] ([Intel XE#3342]) -> [SKIP][571] ([Intel XE#1130]) [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_sriov_flr@flr-vf1-clear.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: [SKIP][572] ([Intel XE#1130]) -> [FAIL][573] ([Intel XE#2922]) [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_tlb@basic-tlb.html [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-435/igt@xe_tlb@basic-tlb.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][574] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][575] ([Intel XE#1130]) [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [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#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237 [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#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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 [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#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [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#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 [Intel XE#3527]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527 [Intel XE#3536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3536 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [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#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [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#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8118 -> IGTPW_12154 * Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 IGTPW_12154: 512463c197faa9c5ca487f120f03db8481bdbbcd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12154/index.html [-- Attachment #2: Type: text/html, Size: 174403 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test 2024-11-20 23:32 [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong 2024-11-21 1:21 ` ✓ Fi.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) Patchwork 2024-11-21 12:44 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-11-21 17:42 ` Dong, Zhanjun 2024-11-24 9:10 ` ✗ i915.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) Patchwork 2024-12-04 2:19 ` [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Teres Alexis, Alan Previn 4 siblings, 0 replies; 7+ messages in thread From: Dong, Zhanjun @ 2024-11-21 17:42 UTC (permalink / raw) To: igt-dev On 2024-11-20 6:32 p.m., 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> > Cc: Alan Previn <alan.previn.teres.alexis@intel.com> > Cc: Peter Senna Tschudin <peter.senna@intel.com> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Changes from prior revs: > 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 | 462 ++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 463 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..33b92bb71 ... > + > +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(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); > +} Alan raised concerns about this function: 1. Put it into igt lib as this function appears in xe_exec_reset and xe_exec_thread. 2. This test runs with fixed value for parameter: n_exec_queues, n_execs and flags, may be the code could be optimized. For #1, the function body in other 2 files is different, for this test, I also add addr as parameter, which is another different as well, so further review might be needed in the future when put into igt lib. That could be the next step. For #2, if it is possible to move to igt lib, is it worth to do the optimization? Shall we get the test landing 1st? As 2 concerns not addressed and looks not so clear, I will leave it as is for now. Regards, Zhanjun Dong ... ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) 2024-11-20 23:32 [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong ` (2 preceding siblings ...) 2024-11-21 17:42 ` [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Dong, Zhanjun @ 2024-11-24 9:10 ` Patchwork 2024-12-04 2:19 ` [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Teres Alexis, Alan Previn 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-11-24 9:10 UTC (permalink / raw) To: Dong, Zhanjun; +Cc: igt-dev == Series Details == Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) URL : https://patchwork.freedesktop.org/series/140007/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15725_full -> IGTPW_12154_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12154_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12154_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_12154/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12154_full: ### IGT changes ### #### Possible regressions #### * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2: [PASS][1] -> [SKIP][2] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-4/igt@core_setmaster@master-drop-set-shared-fd.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@core_setmaster@master-drop-set-shared-fd.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-snb7/igt@gem_tiled_swapping@non-threaded.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb1/igt@gem_tiled_swapping@non-threaded.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@gem_workarounds@suspend-resume-context.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-tglu: NOTRUN -> [ABORT][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-7/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [INCOMPLETE][8] +2 other tests incomplete [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-dg1: NOTRUN -> [INCOMPLETE][9] +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [PASS][10] -> [DMESG-WARN][11] +49 other tests dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][12] +8 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_vblank@query-forked@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][13] +7 other tests dmesg-warn [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@kms_vblank@query-forked@pipe-a-hdmi-a-2.html #### Warnings #### * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: [SKIP][14] ([i915#4270]) -> [TIMEOUT][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: [DMESG-FAIL][16] ([i915#12964]) -> [FAIL][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-3/igt@gem_tiled_swapping@non-threaded.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-2/igt@gem_tiled_swapping@non-threaded.html * igt@i915_module_load@reload-no-display: - shard-tglu: [ABORT][18] -> [DMESG-WARN][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-tglu-2/igt@i915_module_load@reload-no-display.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-4/igt@i915_module_load@reload-no-display.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2: [SKIP][20] -> [INCOMPLETE][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: [SKIP][22] ([i915#2575]) -> [SKIP][23] +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: [SKIP][24] ([i915#6524]) -> [ABORT][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-tglu-8/igt@kms_prime@basic-crc-hybrid.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-3/igt@kms_prime@basic-crc-hybrid.html * igt@perf_pmu@busy-double-start: - shard-dg2: [FAIL][26] ([i915#4349]) -> [SKIP][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-1/igt@perf_pmu@busy-double-start.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@perf_pmu@busy-double-start.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - {shard-dg2-9}: NOTRUN -> [SKIP][28] +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-9/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html New tests --------- New tests have been introduced between CI_DRM_15725_full and IGTPW_12154_full: ### New IGT tests (1) ### * igt@kms_dirtyfb@default-dirtyfb-ioctl@a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [1.46] s Known issues ------------ Here are the changes found in IGTPW_12154_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#8411]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][30] ([i915#8411]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#6230]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#6230]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#11078]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-3/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#8414]) +21 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@drm_fdinfo@isolation@vecs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#8414]) +8 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@fbdev@unaligned-read: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#2582]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@fbdev@unaligned-read.html * igt@fbdev@unaligned-write: - shard-dg2: [PASS][37] -> [SKIP][38] ([i915#2582]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-6/igt@fbdev@unaligned-write.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@fbdev@unaligned-write.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3936]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3555] / [i915#9323]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#9323]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#9323]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][43] ([i915#9323]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#7697]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-7/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#6335]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#8562]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-2/igt@gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][47] ([i915#8562]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-dg2: [PASS][48] -> [SKIP][49] ([i915#2575]) +107 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-8/igt@gem_ctx_exec@basic-nohangcheck.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-snb: [PASS][50] -> [DMESG-WARN][51] ([i915#12901]) +1 other test dmesg-warn [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-snb2/igt@gem_ctx_isolation@preservation-s3@rcs0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb1/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@engines-mixed: - shard-snb: NOTRUN -> [SKIP][52] ([i915#1099]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb1/igt@gem_ctx_persistence@engines-mixed.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#8555]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@hostile: - shard-dg1: NOTRUN -> [FAIL][54] ([i915#11980] / [i915#12580]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#280]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#280]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-10/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#280]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-8/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][58] ([i915#10030] / [i915#7975] / [i915#8213]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-10/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4771]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4812]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4036]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-2/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3539] / [i915#4852]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3539]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3539] / [i915#4852]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-cpu-wc: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3281]) +14 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@gem_exec_reloc@basic-cpu-wc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3281]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3281]) +6 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4537] / [i915#4812]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-10/igt@gem_exec_schedule@preempt-queue.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4860]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4860]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][71] ([i915#4613]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-dg2: [PASS][72] -> [SKIP][73] ([i915#12936]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-dg2: NOTRUN -> [SKIP][75] ([i915#12936]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#4613]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][77] ([i915#5493]) +1 other test timeout [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#4613]) +5 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-5/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#12193]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4565]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#284]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@big-copy: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4077]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@gem_mmap_gtt@big-copy.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4083]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-2/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4083]) +6 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_pread@bench: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3282]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@gem_pread@bench.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3282]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][88] ([i915#2658]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@fail-invalid-protected-context: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4270]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#12975]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][91] ([i915#12917]) +1 other test timeout [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4270]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html - shard-tglu: [PASS][93] -> [SKIP][94] ([i915#4270]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-tglu-10/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-2/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#4270]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][96] +294 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html - shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190] / [i915#8428]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4885]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4885]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4077]) +16 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#3297] / [i915#3323]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4880]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3297] / [i915#4880]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#3297]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][109] +38 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#2527] / [i915#2856]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#2527]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-7/igt@gen9_exec_parse@bb-start-out.html - shard-dg1: NOTRUN -> [SKIP][112] ([i915#2527]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#2527] / [i915#2856]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-8/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4881]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@i915_fb_tiling.html * igt@i915_module_load@reload: - shard-dg2: NOTRUN -> [FAIL][115] ([i915#12870]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][116] -> [ABORT][117] ([i915#9820]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [PASS][118] -> [ABORT][119] ([i915#9820]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#8399]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][121] -> [FAIL][122] ([i915#12548] / [i915#3591]) +1 other test fail [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#11681] / [i915#6621]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#11681] / [i915#6621]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#11681]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_sseu@full-enable: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#4387]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#6188]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#5723]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-2/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#9531]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-glk: NOTRUN -> [SKIP][132] ([i915#1769]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][133] ([i915#1769] / [i915#3555]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#1769] / [i915#3555]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][135] ([i915#12964]) +1 other test dmesg-warn [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-2.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#5286]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#5286]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#5286]) +6 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html - shard-dg1: NOTRUN -> [SKIP][139] ([i915#5286]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5286]) +8 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#3638]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-dg2: [PASS][142] -> [SKIP][143] +17 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-8/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3638]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#5190]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +9 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][147] +10 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538]) +7 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#6095]) +102 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#6095]) +64 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#12313]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#6095]) +150 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#12805]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#12805]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#6095]) +9 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#12313]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#6095]) +29 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#12313]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][161] ([i915#12313]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#6095]) +76 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-7/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3742]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][164] ([i915#3742]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#7828]) +7 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#7828]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#7828]) +14 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#7828]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#7828]) +8 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#9979]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3116] / [i915#3299]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3299]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#3299]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#9424]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@kms_content_protection@lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#7118]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-5/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#7116]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#7118] / [i915#9424]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@kms_content_protection@type1.html - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#12976]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3555]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [PASS][185] -> [DMESG-WARN][186] ([i915#12917]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#2575]) +73 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#12976]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][190] ([i915#12976]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_edge_walk@128x128-top-edge: - shard-rkl: [PASS][191] -> [DMESG-WARN][192] ([i915#12964]) +1 other test dmesg-warn [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-4/igt@kms_cursor_edge_walk@128x128-top-edge.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-1/igt@kms_cursor_edge_walk@128x128-top-edge.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#4103] / [i915#4213]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#4103]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][195] ([i915#2346]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [PASS][196] -> [FAIL][197] ([i915#2346]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#9067]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#4103]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#9723]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#3840]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3840]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-10/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3840] / [i915#9053]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3469]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-4/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3469]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3469]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#1839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr1: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#658]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#658]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3637]) +6 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-panning: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#3637]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#9934]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#9934]) +13 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-snb: [PASS][218] -> [FAIL][219] ([i915#2122]) +13 other tests fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@blocking-wf_vblank: - shard-dg1: NOTRUN -> [FAIL][220] ([i915#12517] / [i915#12840] / [i915#2122]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][221] ([i915#2122]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@kms_flip@blocking-wf_vblank@b-hdmi-a4.html * igt@kms_flip@blocking-wf_vblank@c-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][222] ([i915#2122]) +2 other tests fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a4: - shard-dg1: NOTRUN -> [INCOMPLETE][223] ([i915#4839] / [i915#6113]) +1 other test incomplete [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html * igt@kms_flip@wf_vblank-ts-check: - shard-rkl: [PASS][224] -> [FAIL][225] ([i915#11989] / [i915#2122]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][226] ([i915#11989]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][227] ([i915#2122]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check@d-hdmi-a1: - shard-tglu-1: NOTRUN -> [FAIL][228] ([i915#2122]) +4 other tests fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_flip@wf_vblank-ts-check@d-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#2672]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +6 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-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]) +4 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +6 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#2672]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#5274]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: [PASS][241] -> [FAIL][242] ([i915#6880]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-snb: [PASS][243] -> [SKIP][244] +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#5354]) +26 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#1825]) +8 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][247] +67 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#8708]) +11 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#5439]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#3458]) +14 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][251] +34 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#9766]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#8708]) +26 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#3023]) +8 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][255] +101 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#3458]) +26 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-9/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) +3 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#12388]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#12394]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#12339]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#6301]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#6301]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#6301]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-10/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][266] ([i915#6301]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][267] ([i915#12178]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][268] ([i915#7862]) +1 other test fail [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][269] ([i915#12177]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][270] ([i915#10647]) +1 other test fail [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#3555]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-4/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#12247] / [i915#9423]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#12247]) +11 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#12247]) +8 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html - shard-dg1: NOTRUN -> [SKIP][275] ([i915#12247]) +18 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#12247] / [i915#6953] / [i915#9423]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][277] ([i915#12247] / [i915#6953]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][278] ([i915#12247] / [i915#6953]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#6953]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-3/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-rkl: NOTRUN -> [SKIP][280] ([i915#12247]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-2/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-d: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#12247]) +8 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [PASS][282] -> [SKIP][283] ([i915#2575] / [i915#9423]) +4 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#12247] / [i915#3555] / [i915#9423]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_pm_backlight@fade: - shard-snb: NOTRUN -> [SKIP][285] +68 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb7/igt@kms_pm_backlight@fade.html - shard-tglu: NOTRUN -> [SKIP][286] ([i915#9812]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-9/igt@kms_pm_backlight@fade.html - shard-rkl: NOTRUN -> [SKIP][287] ([i915#5354]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-2/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#5354]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#9685]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#3828]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#5978]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html - shard-tglu-1: NOTRUN -> [FAIL][292] ([i915#9295]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][293] -> [SKIP][294] ([i915#9340]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#8430]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@cursor: - shard-dg2: [PASS][296] -> [SKIP][297] ([i915#12937]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-4/igt@kms_pm_rpm@cursor.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][298] -> [SKIP][299] ([i915#9519]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#9519]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#9519]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-dg1: NOTRUN -> [SKIP][302] ([i915#9519]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#9519]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][304] ([Intel XE#3529]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][305] ([i915#11520]) +10 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#11520]) +4 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#11520]) +7 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#11520]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#11520]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html - shard-snb: NOTRUN -> [SKIP][310] ([i915#11520]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#11520]) +11 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/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][312] ([i915#9732]) +6 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#9732]) +27 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-2/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#9732]) +16 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@kms_psr@psr2-primary-mmap-gtt.html - shard-rkl: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +9 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +26 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#9685]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#5289]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#5289]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#3555]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#8623]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][322] ([i915#10959]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#9906]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@kms_vrr@max-min.html - shard-tglu: NOTRUN -> [SKIP][324] ([i915#9906]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-5/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#3555] / [i915#9906]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#9906]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#9906]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#9906]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#2437]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][330] ([i915#2437]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#2437]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#2437] / [i915#9412]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#2437]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#2436]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@oa-exponents: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#12506]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@perf@oa-exponents.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#2433]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg2: [PASS][337] -> [FAIL][338] ([i915#4349]) +5 other tests fail [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-7/igt@perf_pmu@busy-idle@vcs0.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-6/igt@perf_pmu@busy-idle@vcs0.html - shard-dg1: [PASS][339] -> [FAIL][340] ([i915#4349]) +3 other tests fail [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg1-13/igt@perf_pmu@busy-idle@vcs0.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#8850]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-14/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@interrupts: - shard-dg2: [PASS][342] -> [SKIP][343] ([i915#12506]) +3 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-7/igt@perf_pmu@interrupts.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@perf_pmu@interrupts.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#8516]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-5/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#3708]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-13/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#3291] / [i915#3708]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@prime_vgem@basic-read.html - shard-rkl: NOTRUN -> [SKIP][347] ([i915#3291] / [i915#3708]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#3708] / [i915#4077]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-8/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#3708] / [i915#4077]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#9917]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-dg1: NOTRUN -> [SKIP][351] ([i915#9917]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-12/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1: - shard-tglu: NOTRUN -> [FAIL][352] ([i915#12910]) +19 other tests fail [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#9917]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-tglu-1: NOTRUN -> [FAIL][354] ([i915#12910]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][355] ([i915#12564] / [i915#9781]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-7/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@tools_test: - shard-dg2: [PASS][356] -> [FAIL][357] ([i915#12875]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-8/igt@tools_test@tools_test.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@tools_test@tools_test.html #### Possible fixes #### * igt@core_getversion@all-cards: - shard-dg2: [FAIL][358] ([i915#12869]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@core_getversion@all-cards.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-3/igt@core_getversion@all-cards.html * igt@fbdev@eof: - shard-dg2: [SKIP][360] ([i915#2582]) -> [PASS][361] +2 other tests pass [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@fbdev@eof.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-6/igt@fbdev@eof.html * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][362] ([i915#7297]) -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-3/igt@gem_ccs@suspend-resume.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-5/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][364] ([i915#12392] / [i915#7297]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-3/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-5/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][366] ([i915#12714] / [i915#5784]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg1-13/igt@gem_eio@unwedge-stress.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fence@syncobj-repeat: - shard-rkl: [DMESG-WARN][368] -> [PASS][369] +2 other tests pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-3/igt@gem_exec_fence@syncobj-repeat.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-2/igt@gem_exec_fence@syncobj-repeat.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-dg2: [SKIP][370] ([i915#12936]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_ppgtt@shrink-vs-evict-pinned: - shard-dg2: [SKIP][372] ([i915#2575]) -> [PASS][373] +112 other tests pass [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@gem_ppgtt@shrink-vs-evict-pinned.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-2/igt@gem_ppgtt@shrink-vs-evict-pinned.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][374] -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@sysfs-read: - shard-rkl: [SKIP][376] ([i915#12964]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-7/igt@i915_pm_rpm@sysfs-read.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-3/igt@i915_pm_rpm@sysfs-read.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-dg2: [SKIP][378] -> [PASS][379] +17 other tests pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [FAIL][380] ([i915#2346]) -> [PASS][381] +1 other test pass [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-rkl: [FAIL][382] ([i915#2122]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1: - shard-glk: [FAIL][384] ([i915#2122]) -> [PASS][385] +3 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-glk5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-glk2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [FAIL][386] ([i915#2122]) -> [PASS][387] +11 other tests pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb1/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-tglu: [FAIL][388] ([i915#2122]) -> [PASS][389] +9 other tests pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-tglu-10/igt@kms_flip@plain-flip-ts-check-interruptible.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-2/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-tglu: [FAIL][390] ([i915#10826]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-tglu-8/igt@kms_flip@wf_vblank-ts-check-interruptible.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1: - shard-tglu: [FAIL][392] -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-tglu-8/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: [SKIP][394] -> [PASS][395] +7 other tests pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0: - shard-rkl: [DMESG-WARN][396] ([i915#12964]) -> [PASS][397] +55 other tests pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-dg2: [SKIP][398] ([i915#2575] / [i915#9423]) -> [PASS][399] +2 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][400] ([i915#12964] / [i915#9519]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][402] ([i915#12937]) -> [PASS][403] +1 other test pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][404] ([i915#9519]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: [SKIP][406] ([i915#9519]) -> [PASS][407] +2 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][408] ([i915#12917]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-2/igt@kms_vblank@query-forked-hang.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-1/igt@kms_vblank@query-forked-hang.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-rkl: [FAIL][410] ([i915#10538]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-2/igt@perf@gen12-group-concurrent-oa-buffer-read.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-5/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf_pmu@enable-race: - shard-dg2: [SKIP][412] ([i915#12506]) -> [PASS][413] +3 other tests pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@perf_pmu@enable-race.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@perf_pmu@enable-race.html * igt@perf_pmu@module-unload: - shard-tglu: [ABORT][414] -> [PASS][415] +2 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-tglu-4/igt@perf_pmu@module-unload.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-tglu-6/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@runtime-pm-gt0: - shard-rkl: [SKIP][416] -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-rkl-3/igt@perf_pmu@rc6@runtime-pm-gt0.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-rkl-7/igt@perf_pmu@rc6@runtime-pm-gt0.html * igt@sw_sync@timeline_closed: - shard-dg1: [INCOMPLETE][418] -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg1-17/igt@sw_sync@timeline_closed.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg1-18/igt@sw_sync@timeline_closed.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg2: [SKIP][420] -> [ABORT][421] ([i915#5507]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg2: [SKIP][422] ([i915#12506]) -> [SKIP][423] ([i915#8414]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@drm_fdinfo@virtual-busy-hang.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@drm_fdinfo@virtual-busy-hang.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-dg2: [SKIP][424] ([i915#8414]) -> [SKIP][425] ([i915#12506]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-7/igt@drm_fdinfo@virtual-busy-hang-all.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: [SKIP][426] ([i915#8555]) -> [SKIP][427] ([i915#2575]) +1 other test skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@engines: - shard-dg2: [SKIP][428] ([i915#2575]) -> [SKIP][429] ([i915#280]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@gem_ctx_sseu@engines.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-6/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: [SKIP][430] ([i915#2575]) -> [SKIP][431] ([i915#4771]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-4/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_capture@capture: - shard-dg2: [FAIL][432] ([i915#11965] / [i915#12558]) -> [SKIP][433] ([i915#2575]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-2/igt@gem_exec_capture@capture.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@gem_exec_capture@capture.html * igt@gem_exec_fence@concurrent: - shard-dg2: [SKIP][434] ([i915#2575]) -> [SKIP][435] ([i915#4812]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@gem_exec_fence@concurrent.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-1/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: [SKIP][436] ([i915#3539] / [i915#4852]) -> [SKIP][437] ([i915#2575]) +1 other test skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-3/igt@gem_exec_flush@basic-uc-rw-default.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: [SKIP][438] ([i915#2575]) -> [SKIP][439] ([i915#3539]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-2/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-ro-default: - shard-dg2: [SKIP][440] ([i915#2575]) -> [SKIP][441] ([i915#3539] / [i915#4852]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@gem_exec_flush@basic-wb-ro-default.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-default.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: [SKIP][442] ([i915#2575]) -> [SKIP][443] ([i915#3281]) +4 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: [SKIP][444] ([i915#3281]) -> [SKIP][445] ([i915#2575]) +8 other tests skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-read.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: [SKIP][446] ([i915#2575]) -> [SKIP][447] ([i915#4537] / [i915#4812]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: [SKIP][448] ([i915#4537] / [i915#4812]) -> [SKIP][449] ([i915#2575]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-8/igt@gem_exec_schedule@reorder-wide.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: [SKIP][450] ([i915#4860]) -> [SKIP][451] ([i915#2575]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15725/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html [451]: https://intel-gfx-ci.01.org/tree/d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12154/index.html ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test 2024-11-20 23:32 [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong ` (3 preceding siblings ...) 2024-11-24 9:10 ` ✗ i915.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) Patchwork @ 2024-12-04 2:19 ` Teres Alexis, Alan Previn 2024-12-04 22:28 ` Dong, Zhanjun 4 siblings, 1 reply; 7+ messages in thread From: Teres Alexis, Alan Previn @ 2024-12-04 2:19 UTC (permalink / raw) To: Dong, Zhanjun, igt-dev@lists.freedesktop.org Cc: Senna, Peter, kamil.konieczny@linux.intel.com i only have 3 minor asks left - the rest are nit's. hoping we can get this approved with another rev. thanks again for the work - also, i am glad to see we are now comparing the error-capture batch address against unique values that identify which engine and which run - so we know guc error capture did not mis-report because of some kind of internal race. ...alan On Wed, 2024-11-20 at 15:32 -0800, Dong, Zhanjun 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> > Cc: Alan Previn <alan.previn.teres.alexis@intel.com> > Cc: Peter Senna Tschudin <peter.senna@intel.com> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Changes from prior revs: > 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 | 462 ++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 463 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..33b92bb71 > --- /dev/null > +++ b/tests/intel/xe_exec_capture.c > @@ -0,0 +1,462 @@ > +// 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 <time.h> > + > +#include "igt.h" > +#include "igt_device.h" > +#include "lib/igt_syncobj.h" > +#include "lib/intel_reg.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 MAX_INSTANCE 9 > +#define GT_RESET (0x1 << 0) > +#define CLOSE_FD (0x1 << 1) > +#define CLOSE_EXEC_QUEUES (0x1 << 2) > +#define VIRTUAL (0x1 << 3) > +#define PARALLEL (0x1 << 4) > +#define CAT_ERROR (0x1 << 5) > + > +#define BASE_ADDRESS 0x1a0000 > +#define ADDRESS_SHIFT 39 > +/* 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 ****" > + > +#define REGEX_NON_SPACE_GROUPS "^[ \t]*([^ ]+)[ \t]+([^ ]+)[ \t]*([^ ]+)*[ \t]*([^ ]+)*[ \t]*([^ ]+)*[ \t]*$" alan: i think its better for future maintenence to define above as a combination of specific markers for example as per how "#define REGEXP" is defined in intel_reg_spec.c > +#define REGEX_NON_SPACE_GROUPS_COUNT 6 > + > +#define INDEX_KEY 1 > +#define INDEX_VLAUE 2 > +#define INDEX_ENGINE_PHYSICAL 2 > +#define INDEX_ENGINE_NAME 1 > +#define INDEX_ENGINE_INSTANCE 4 > + > +typedef u32 uint32_t; > +typedef u64 uint64_t; alan: nit: not sure if the tab above is standard practice. Also wondering if there is an existing header you could include that helps with this typedef - see linux_scaffold.h > + > +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) alan: nit: maybe rename from "addr" to "eng_seed_addr"? (a bit more descriptive). But then again, just a nit. > +{ > + 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(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 = -1, i = 0; alan: any reason why we cant init start_line to 0 and eliminate the start_line++ when we stop skipping below? maybe i am lacking coffee but i dont see a need to start with -1 > + 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 > + */ > + fgets(buf, LINE_BUF_SIZE, fd); alan: just occured to me that should break in the event of an error (maybe file is corrupted or io-error? - so break with an igt-warn or something? > + start_line++; > + > + if (skip) { > + /* Skip all lines before START_TAG */ > + if (strncmp(START_TAG, buf, strlen(START_TAG))) { > + continue; > + } else { > + skip = false; > + /* start_line start from 0, adjust to start from 1 */ > + start_line++; > + } > + } > alan: thanks for adding this optimizatoin to select the lines of interest, this ims good - and i guess we can rely on it (as long as we dont have undefined length lines like vm data which will happen after END_TAG, so we are goo). > + > + /* Stop on END_TAG */ > + if (!strncmp(END_TAG, buf, strlen(END_TAG))) > + break; > + > + /* Only save up to MAX_LINE_LEN to buffer */ > + safe_strncpy(lines[i++], buf, MAX_LINE_LEN); > + } > + 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_VLAUE)), > + "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; > + 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) { > + int rand_cid = rand() & 0xF; alan: rand, though guaranteed to be as random as possible, becomes much less reliable after we AND it down to 4 bits. Very high chance of overlap (1/16 chance). Also name choice could better describe the use as engine identifier: ++engine_id; (initialize to zero before the xe_for_each_engine) > + const u64 addr = BASE_ADDRESS | ((u64)rand_cid << 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_VLAUE, > + "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); > + /* Seed random number with current time */ > + srand(time(NULL)); > + } > + > + 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 [flat|nested] 7+ messages in thread
* Re: [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test 2024-12-04 2:19 ` [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Teres Alexis, Alan Previn @ 2024-12-04 22:28 ` Dong, Zhanjun 0 siblings, 0 replies; 7+ messages in thread From: Dong, Zhanjun @ 2024-12-04 22:28 UTC (permalink / raw) To: Teres Alexis, Alan Previn, igt-dev@lists.freedesktop.org Cc: Senna, Peter, kamil.konieczny@linux.intel.com On 2024-12-03 9:19 p.m., Teres Alexis, Alan Previn wrote: > i only have 3 minor asks left - the rest are nit's. > hoping we can get this approved with another rev. > > thanks again for the work - also, i am glad to see > we are now comparing the error-capture batch address > against unique values that identify which engine > and which run - so we know guc error capture > did not mis-report because of some kind of internal > race. > > ...alan > > > On Wed, 2024-11-20 at 15:32 -0800, Dong, Zhanjun 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> >> Cc: Alan Previn <alan.previn.teres.alexis@intel.com> >> Cc: Peter Senna Tschudin <peter.senna@intel.com> >> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> >> >> Changes from prior revs: >> 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 | 462 ++++++++++++++++++++++++++++++++++ >> tests/meson.build | 1 + >> 2 files changed, 463 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..33b92bb71 >> --- /dev/null >> +++ b/tests/intel/xe_exec_capture.c >> @@ -0,0 +1,462 @@ >> +// 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 <time.h> >> + >> +#include "igt.h" >> +#include "igt_device.h" >> +#include "lib/igt_syncobj.h" >> +#include "lib/intel_reg.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 MAX_INSTANCE 9 >> +#define GT_RESET (0x1 << 0) >> +#define CLOSE_FD (0x1 << 1) >> +#define CLOSE_EXEC_QUEUES (0x1 << 2) >> +#define VIRTUAL (0x1 << 3) >> +#define PARALLEL (0x1 << 4) >> +#define CAT_ERROR (0x1 << 5) >> + >> +#define BASE_ADDRESS 0x1a0000 >> +#define ADDRESS_SHIFT 39 >> +/* 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 ****" >> + >> +#define REGEX_NON_SPACE_GROUPS "^[ \t]*([^ ]+)[ \t]+([^ ]+)[ \t]*([^ ]+)*[ \t]*([^ ]+)*[ \t]*([^ ]+)*[ \t]*$" > alan: i think its better for future maintenence to define above as a combination of specific markers > for example as per how "#define REGEXP" is defined in intel_reg_spec.c Good idea, let me try this in next rev. >> +#define REGEX_NON_SPACE_GROUPS_COUNT 6 >> + >> +#define INDEX_KEY 1 >> +#define INDEX_VLAUE 2 >> +#define INDEX_ENGINE_PHYSICAL 2 >> +#define INDEX_ENGINE_NAME 1 >> +#define INDEX_ENGINE_INSTANCE 4 >> + >> +typedef u32 uint32_t; >> +typedef u64 uint64_t; > alan: nit: not sure if the tab above is standard practice. > Also wondering if there is an existing header you could > include that helps with this typedef - see linux_scaffold.h Thanks for let me know. To be updated in next rev. >> + >> +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) > alan: nit: maybe rename from "addr" to "eng_seed_addr"? (a bit more descriptive). > But then again, just a nit. Sure, np > >> +{ >> + 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(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 = -1, i = 0; > alan: any reason why we cant init start_line to 0 and eliminate the > start_line++ when we stop skipping below? maybe i am lacking coffee > but i dont see a need to start with -1 to be updated >> + 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 >> + */ >> + fgets(buf, LINE_BUF_SIZE, fd); > alan: just occured to me that should break in the event of an error > (maybe file is corrupted or io-error? - so break with an igt-warn or something? Sure, will add ferror check on fgets return null. > >> + start_line++; This is a bug, the start_line increase should be stopped once START_TAG found, to be moved into if skip body. >> + >> + if (skip) { >> + /* Skip all lines before START_TAG */ >> + if (strncmp(START_TAG, buf, strlen(START_TAG))) { >> + continue; >> + } else { >> + skip = false; >> + /* start_line start from 0, adjust to start from 1 */ >> + start_line++; >> + } >> + } >> > alan: thanks for adding this optimizatoin to select the lines of interest, > this ims good - and i guess we can rely on it (as long as we dont have undefined > length lines like vm data which will happen after END_TAG, so we are goo). > >> + >> + /* Stop on END_TAG */ >> + if (!strncmp(END_TAG, buf, strlen(END_TAG))) >> + break; >> + >> + /* Only save up to MAX_LINE_LEN to buffer */ >> + safe_strncpy(lines[i++], buf, MAX_LINE_LEN); >> + } >> + 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_VLAUE)), >> + "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; >> + 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) { >> + int rand_cid = rand() & 0xF; > alan: rand, though guaranteed to be as random as possible, becomes > much less reliable after we AND it down to 4 bits. Very high chance of > overlap (1/16 chance). Also name choice could better describe the use as > engine identifier: > ++engine_id; (initialize to zero before the xe_for_each_engine) I had this idea before, it make it different to other engines during the run, or that round. On the other hand, I want the address to be different to previous round as well, so with the random number, it will works on this situation. And the 0xF is too small range. From the BSpec, bit 64-48 is ignored, so this part will be changed to in range of 0x7F. >> + const u64 addr = BASE_ADDRESS | ((u64)rand_cid << 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_VLAUE, >> + "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); >> + /* Seed random number with current time */ >> + srand(time(NULL)); >> + } >> + >> + 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 [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-12-04 22:28 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-20 23:32 [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong 2024-11-21 1:21 ` ✓ Fi.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) Patchwork 2024-11-21 12:44 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-21 17:42 ` [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Dong, Zhanjun 2024-11-24 9:10 ` ✗ i915.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev3) Patchwork 2024-12-04 2:19 ` [PATCH v5] tests/intel/xe_exec_capture: Add xe_exec_capture test Teres Alexis, Alan Previn 2024-12-04 22:28 ` Dong, Zhanjun
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox